Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 420 Bytes

File metadata and controls

25 lines (18 loc) · 420 Bytes

custom-property-no-outside-root

Disallow custom properties outside of :root selectors.

    a { --foo-bar: 1px; }
/** ↑   ↑
 * These selectors and these types of custom properties */

The following patterns are considered warnings:

a { --foo-bar: 1px; }
:root, a { --foo-bar: 1px; }

The following patterns are not considered warnings:

:root { --foo-bar: 1px; }