Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 912 Bytes

File metadata and controls

56 lines (40 loc) · 912 Bytes

selector-combinator-blacklist

Deprecated: Instead use the selector-combinator-disallowed-list rule.

Specify a list of disallowed combinators.

  a + b {}
/** ↑
 * This combinator */

This rule normalizes the whitespace descendant combinator to be a single space.

This rule ignores reference combinators e.g. /for/.

Options

array|string: ["array", "of", "combinators"]|"combinator"

Given:

[">", " "]

The following patterns are considered violations:

a > b {}
a b {}
a
b {}

The following patterns are not considered violations:

a + b {}
a ~ b {}