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/declaration-bang-space-after/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/declaration-bang-space-after/README.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/declaration-bang-space-after/README.md b/assets/node_modules/stylelint/lib/rules/declaration-bang-space-after/README.md
deleted file mode 100644
index daca6bd..0000000
--- a/assets/node_modules/stylelint/lib/rules/declaration-bang-space-after/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# declaration-bang-space-after
-
-Require a single space or disallow whitespace after the bang of declarations.
-
-```css
-a { color: pink !important; }
-/** ↑
- * The space after this exclamation mark */
-```
-
-The `--fix` option on the [command line](../../../docs/user-guide/cli.md#autofixing-errors) can automatically fix all of the problems reported by this rule.
-
-## Options
-
-`string`: `"always"|"never"`
-
-### `"always"`
-
-There *must always* be a single space after the bang.
-
-The following patterns are considered violations:
-
-```css
-a { color: pink !important; }
-```
-
-```css
-a { color: pink !important; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color: pink ! important; }
-```
-
-```css
-a { color: pink! important; }
-```
-
-### `"never"`
-
-There *must never* be whitespace after the bang.
-
-The following patterns are considered violations:
-
-```css
-a { color: pink ! important; }
-```
-
-```css
-a { color: pink! important; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color: pink !important; }
-```
-
-```css
-a { color:pink!important; }
-```