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-name-space-after/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/at-rule-name-space-after/README.md100
1 files changed, 0 insertions, 100 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/at-rule-name-space-after/README.md b/assets/node_modules/stylelint/lib/rules/at-rule-name-space-after/README.md
deleted file mode 100644
index e4c8f0c..0000000
--- a/assets/node_modules/stylelint/lib/rules/at-rule-name-space-after/README.md
+++ /dev/null
@@ -1,100 +0,0 @@
-# at-rule-name-space-after
-
-Require a single space after at-rule names.
-
-```css
-@media (max-width: 600px) {}
-/** ↑
- * The space after at-rule names */
-```
-
-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"|"always-single-line"`
-
-### `"always"`
-
-There *must always* be a single space after at-rule names.
-
-The following patterns are considered violations:
-
-```css
-@charset"UTF-8";
-```
-
-```css
-@media(min-width: 700px) {}
-```
-
-```css
-@media (min-width: 700px) {}
-```
-
-```css
-@media
-(min-width: 700px) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@charset "UTF-8";
-```
-
-```css
-@import url("x.css");
-```
-
-```css
-@media (min-width: 700px) {}
-```
-
-### `"always-single-line"`
-
-There *must always* be a single space after at-rule names in single-line declaration blocks.
-
-The following patterns are considered violations:
-
-```css
-@charset"UTF-8";
-```
-
-```css
-@media(min-width: 700px) {}
-```
-
-```css
-@media (min-width: 700px) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@charset "UTF-8";
-```
-
-```css
-@import url("x.css");
-```
-
-```css
-@media (min-width: 700px) {}
-```
-
-```css
-@media
-(min-width: 700px) {}
-```
-
-```css
-@media(min-width: 700px) and
- (orientation: portrait) {}
-```
-
-```css
-@media
- (min-width: 700px) and
- (orientation: portrait) {}
-```