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/value-no-vendor-prefix/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/value-no-vendor-prefix/README.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/value-no-vendor-prefix/README.md b/assets/node_modules/stylelint/lib/rules/value-no-vendor-prefix/README.md
deleted file mode 100644
index b66bb80..0000000
--- a/assets/node_modules/stylelint/lib/rules/value-no-vendor-prefix/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# value-no-vendor-prefix
-
-Disallow vendor prefixes for values.
-
-```css
-a { display: -webkit-flex; }
-/** ↑
- * These prefixes */
-```
-
-This rule will only complain for prefixed *standard* values, and not for prefixed *proprietary* or *unknown* ones.
-
-## Options
-
-### `true`
-
-The following patterns are considered violations:
-
-```css
-a { display: -webkit-flex; }
-```
-
-```css
-a { max-width: -moz-max-content; }
-```
-
-```css
-a { background: -webkit-linear-gradient(bottom, #000, #fff); }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { display: flex; }
-```
-
-```css
-a { max-width: max-content; }
-```
-
-```css
-a { background: linear-gradient(bottom, #000, #fff); }
-```
-
-## Optional secondary options
-
-### `ignoreValues: ["string"]`
-
-Given:
-
-```js
-["grab", "max-content"]
-```
-
-The following patterns are *not* considered violations:
-
-```css
-cursor: -webkit-grab;
-```
-
-```css
-.foo { max-width: -moz-max-content; }
-```