notes/node_modules/stylelint/lib/rules/selector-root-no-composition/README.md

443 B

selector-root-no-composition

Deprecated: See CHANGELOG.

Disallow the composition of :root in selectors.

    a, :root {}
/** ↑  ↑
 * This type of composite selector */

Options

true

The following patterns are considered warnings:

a, :root {}
:root + a {}
html:root {}

The following patterns are not considered warnings:

:root {}