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-newline-after/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/at-rule-name-newline-after/README.md94
1 files changed, 0 insertions, 94 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/at-rule-name-newline-after/README.md b/assets/node_modules/stylelint/lib/rules/at-rule-name-newline-after/README.md
deleted file mode 100644
index 077ef8b..0000000
--- a/assets/node_modules/stylelint/lib/rules/at-rule-name-newline-after/README.md
+++ /dev/null
@@ -1,94 +0,0 @@
-# at-rule-name-newline-after
-
-Require a newline after at-rule names.
-
-```css
- @media
- /*↑*/ (max-width: 600px) {}
-/** ↑
- * The newline after this at-rule name */
-```
-
-## Options
-
-`string`: `"always"|"always-multi-line"`
-
-### `"always"`
-
-There *must always* be a newline after at-rule names.
-
-The following patterns are considered violations:
-
-```css
-@charset "UTF-8";
-```
-
-```css
-@media (min-width: 700px) and
- (orientation: landscape) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@charset
- "UTF-8";
-```
-
-```css
-@import
- "x.css" screen and
- (orientation:landscape);
-```
-
-```css
-@media
- (min-width: 700px) and (orientation: landscape) {}
-```
-
-```css
-@media
- (min-width: 700px) and
- (orientation: landscape) {}
-```
-
-### `"always-multi-line"`
-
-There *must always* be a newline after at-rule names in at-rules with multi-line parameters.
-
-The following patterns are considered violations:
-
-```css
-@import "x.css" screen and
- (orientation:landscape);
-```
-
-```css
-@media (min-width: 700px) and
- (orientation: landscape) {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@charset "UTF-8";
-```
-
-```css
-@charset
- "UTF-8";
-```
-
-```css
-@import "x.css" screen and (orientation:landscape);
-```
-
-```css
-@media (min-width: 700px) and (orientation: landscape) {}
-```
-
-```css
-@media
- (min-width: 700px) and
- (orientation: landscape) {}
-```