Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions
@@ -0,0 +1,35 @@
# selector-root-no-composition
***Deprecated: See [CHANGELOG](../../../CHANGELOG.md).***
Disallow the composition of `:root` in selectors.
```css
a, :root {}
/** ↑ ↑
* This type of composite selector */
```
## Options
### `true`
The following patterns are considered warnings:
```css
a, :root {}
```
```css
:root + a {}
```
```css
html:root {}
```
The following patterns are *not* considered warnings:
```css
:root {}
```