.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / selector-descendant-combinator-no-non-space / README.md
1 # selector-descendant-combinator-no-non-space
2
3 Disallow non-space characters for descendant combinators of selectors.
4
5 ```css
6 .foo .bar .baz {}
7 /** ↑    ↑
8 * These descendant combinators */
9 ```
10
11 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.
12
13 ## Options
14
15 ### `true`
16
17 The following patterns are considered violations:
18
19 ```css
20 .foo  .bar {}
21 ```
22
23 ```css
24 .foo
25 .bar {}
26 ```
27
28 The following patterns are *not* considered violations:
29
30 ```css
31 .foo .bar {}
32 ```