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