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/at-rule-semicolon-space-before/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md45
1 files changed, 0 insertions, 45 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md b/assets/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md
deleted file mode 100644
index d0230ec..0000000
--- a/assets/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# at-rule-semicolon-space-before
-
-Require a single space or disallow whitespace before the semicolons of at-rules.
-
-```css
-@import "components/buttons";
-/** ↑
- * The space before this semicolon */
-```
-
-## Options
-
-`string`: `"always"|"never"`
-
-### `"always"`
-
-There *must always* be a single space before the semicolons.
-
-The following pattern is considered a violation:
-
-```css
-@import "components/buttons";
-```
-
-The following pattern is *not* considered a violation:
-
-```css
-@import "components/buttons" ;
-```
-
-### `"never"`
-
-There *must never* be a single space before the semicolons.
-
-The following pattern is considered a violation:
-
-```css
-@import "components/buttons" ;
-```
-
-The following pattern is *not* considered a violation:
-
-```css
-@import "components/buttons";
-```