mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-07 04:31:21 -06:00
554 B
554 B
selector-descendant-combinator-no-non-space
Disallow non-space characters for descendant combinators of selectors.
.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 warnings:
.foo .bar {}
.foo
.bar {}
The following patterns are not considered warnings:
.foo .bar {}