stylelint
Version:
Modern CSS linter
30 lines (20 loc) • 440 B
Markdown
# custom-property-no-outside-root
Disallow custom properties outside of `:root` rules.
```css
a { --foo-bar: 1px; }
/** ↑ ↑
* These selectors and these types of custom properties */
```
## Options
### `true`
The following patterns are considered warnings:
```css
a { --foo-bar: 1px; }
```
```css
:root, a { --foo-bar: 1px; }
```
The following patterns are *not* considered warnings:
```css
:root { --foo-bar: 1px; }
```