linter-bundle
Version:
Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.
41 lines (28 loc) • 846 B
Markdown
# selector-descendant-combinator-no-non-space
Disallow non-space characters for descendant combinators of selectors.
<!-- prettier-ignore -->
```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.
The [`fix` option](https://stylelint.io/user-guide/options/#fix) 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 problems:
<!-- prettier-ignore -->
```css
.foo .bar {}
```
<!-- prettier-ignore -->
```css
.foo
.bar {}
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
.foo .bar {}
```