1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-26 14:26:12 -04:00
notes/node_modules/stylelint/lib/rules/selector-descendant-combinator-no-non-space
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

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 {}