1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 10:17:42 -04:00
notes/node_modules/stylelint/lib/rules/selector-no-attribute/README.md

47 lines
422 B
Markdown
Raw Normal View History

2017-03-09 13:16:08 -05:00
# selector-no-attribute
Disallow attribute selectors.
```css
[rel="external"] {}
/** ↑
* This type of selector */
```
## Options
### `true`
The following patterns are considered warnings:
```css
[foo] {}
```
```css
[rel="external"] {}
```
```css
a,
[type="text"] {}
```
```css
a > [foo] {}
```
The following patterns are *not* considered warnings:
```css
a {}
```
```css
.foo {}
```
```css
#bar {}
```