.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / selector-descendant-combinator-no-non-space / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/selector-descendant-combinator-no-non-space/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/selector-descendant-combinator-no-non-space/README.md
new file mode 100644 (file)
index 0000000..792e730
--- /dev/null
@@ -0,0 +1,32 @@
+# selector-descendant-combinator-no-non-space
+
+Disallow non-space characters for descendant combinators of selectors.
+
+```css
+.foo .bar .baz {}
+/** ↑    ↑
+* These descendant combinators */
+```
+
+This rule ensures that only a single space is used and ensures no tabs, newlines, nor multiple spaces are used for descendant combinators of selectors.
+
+## Options
+
+### `true`
+
+The following patterns are considered violations:
+
+```css
+.foo  .bar {}
+```
+
+```css
+.foo
+.bar {}
+```
+
+The following patterns are *not* considered violations:
+
+```css
+.foo .bar {}
+```