This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/stylelint/lib/rules/selector-descendant-combinator-no-non-space

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.

The fix option can automatically fix most of the problems reported by this rule.

This rule currently ignores selectors containing comments.

Options

true

The following patterns are considered violations:

.foo  .bar {}
.foo
.bar {}

The following patterns are not considered violations:

.foo .bar {}