.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / at-rule-semicolon-space-before / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md
new file mode 100644 (file)
index 0000000..e41bb2e
--- /dev/null
@@ -0,0 +1,47 @@
+# at-rule-semicolon-space-before
+
+Require a single space or disallow whitespace before the semicolons at-rules.
+
+```css
+@import "components/buttons";
+/**                         ↑
+ * The space before this semicolon */
+```
+
+This rule ignores `@import` in Less.
+
+## Options
+
+`string`: `"always"|"never"`
+
+### `"always"`
+
+There *must always* be a single space before the semicolons.
+
+The following patterns 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 patterns is considered a violation:
+
+```css
+@import "components/buttons" ;
+```
+
+The following pattern is *not* considered a violation:
+
+```css
+@import "components/buttons";
+```