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/media-feature-colon-space-before/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/media-feature-colon-space-before/README.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/media-feature-colon-space-before/README.md b/assets/node_modules/stylelint/lib/rules/media-feature-colon-space-before/README.md
deleted file mode 100644
index 0655652..0000000
--- a/assets/node_modules/stylelint/lib/rules/media-feature-colon-space-before/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# media-feature-colon-space-before
-
-Require a single space or disallow whitespace before the colon in media features.
-
-```css
-@media (max-width :600px) {}
-/** ↑
- * The space before this colon */
-```
-
-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 before the colon.
-
-The following patterns are considered violations:
-
-```css
-@media (max-width:600px) {}
-```
-
-```css
-@media (max-width: 600px) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@media (max-width :600px) {}
-```
-
-```css
-@media (max-width : 600px) {}
-```
-
-### `"never"`
-
-There *must never* be whitespace before the colon.
-
-The following patterns are considered violations:
-
-```css
-@media (max-width :600px) {}
-```
-
-```css
-@media (max-width : 600px) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@media (max-width:600px) {}
-```
-
-```css
-@media (max-width: 600px) {}
-```