Skip to content

Files

Latest commit

 

History

History
30 lines (19 loc) · 579 Bytes

selector-descendant-combinator-no-non-space.md

File metadata and controls

30 lines (19 loc) · 579 Bytes

Pattern: Unexpected non-space character

Issue: -

Description

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.

Examples

The following patterns are considered violations:

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

The following patterns are not considered violations:

.foo .bar {}

Further Reading