Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint/lib/rules/property-no-unknown/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/property-no-unknown/README.md150
1 files changed, 0 insertions, 150 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/property-no-unknown/README.md b/assets/node_modules/stylelint/lib/rules/property-no-unknown/README.md
deleted file mode 100644
index ccd13ff..0000000
--- a/assets/node_modules/stylelint/lib/rules/property-no-unknown/README.md
+++ /dev/null
@@ -1,150 +0,0 @@
-# property-no-unknown
-
-Disallow unknown properties.
-
-```css
-a { heigth: 100%; }
-/** ↑
- * This property */
-```
-
-This rule considers properties defined in the [CSS Specifications and browser specific properties](https://github.com/betit/known-css-properties#source) to be known.
-
-This rule ignores:
-
-- variables (`$sass`, `@less`, `--custom-property`)
-- vendor-prefixed properties (e.g., `-moz-align-self`, `-webkit-align-self`)
-
-Use option `checkPrefixed` described below to turn on checking of vendor-prefixed properties.
-
-## Options
-
-### `true`
-
-The following patterns are considered violations:
-
-```css
-a {
- colr: blue;
-}
-```
-
-```css
-a {
- my-property: 1;
-}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a {
- color: green;
-}
-```
-
-```css
-a {
- fill: black;
-}
-```
-
-```css
-a {
- -moz-align-self: center;
-}
-```
-
-```css
-a {
- -webkit-align-self: center;
-}
-```
-
-```css
-a {
- align-self: center;
-}
-```
-
-## Optional secondary options
-
-### `ignoreProperties: ["/regex/", /regex/, "string"]`
-
-Given:
-
-```js
-["/^my-/", "custom"]
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a {
- my-property: 10px;
-}
-```
-
-```css
-a {
- my-other-property: 10px;
-}
-```
-
-```css
-a {
- custom: 10px;
-}
-```
-
-### `ignoreSelectors: ["/regex/", /regex/, "string"]`
-
-Skips checking properties of the given selectors against this rule.
-
-Given:
-
-```js
-[":root"]
-```
-
-The following patterns are *not* considered violations:
-
-```css
-:root {
- my-property: blue;
-}
-```
-
-### `checkPrefixed: true | false` (default: `false`)
-
-If `true`, this rule will check vendor-prefixed properties.
-
-For example with `true`:
-
-The following patterns are *not* considered violations:
-
-```css
-a {
- -webkit-overflow-scrolling: auto;
-}
-```
-
-```css
-a {
- -moz-box-flex: 0;
-}
-```
-
-The following patterns are considered violations:
-
-```css
-a {
- -moz-align-self: center;
-}
-```
-
-```css
-a {
- -moz-overflow-scrolling: center;
-}
-```