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-block-trailing-semicolon/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/declaration-block-trailing-semicolon/README.md79
1 files changed, 79 insertions, 0 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/declaration-block-trailing-semicolon/README.md b/assets/node_modules/stylelint/lib/rules/declaration-block-trailing-semicolon/README.md
new file mode 100644
index 0000000..3efef0b
--- /dev/null
+++ b/assets/node_modules/stylelint/lib/rules/declaration-block-trailing-semicolon/README.md
@@ -0,0 +1,79 @@
+# declaration-block-trailing-semicolon
+
+Require or disallow a trailing semicolon within declaration blocks.
+
+```css
+a { background: orange; color: pink; }
+/** ↑
+ * This semicolon */
+```
+
+The trailing semicolon is the *last* semicolon in a declaration block and it is optional.
+
+This rule ignores:
+
+- Less mixins
+- trailing `//` comments
+- declaration blocks containing nested (at-)rules
+
+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 trailing semicolon.
+
+The following patterns are considered violations:
+
+```css
+a { color: pink }
+```
+
+```css
+a { background: orange; color: pink }
+```
+
+```css
+a { @include foo }
+```
+
+The following patterns are *not* considered violations:
+
+```css
+a { color: pink; }
+```
+
+```css
+a { background: orange; color: pink; }
+```
+
+```css
+a { @include foo; }
+```
+
+### `"never"`
+
+There *must never* be a trailing semicolon.
+
+The following patterns are considered violations:
+
+```css
+a { color: pink; }
+```
+
+```css
+a { background: orange; color: pink; }
+```
+
+The following patterns are *not* considered violations:
+
+```css
+a { color: pink }
+```
+
+```css
+a { background: orange; color: pink }
+```