.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / selector-attribute-operator-blacklist / README.md
1 # selector-attribute-operator-blacklist
2
3 Specify a blacklist of disallowed attribute operators.
4
5 ```css
6 [target="_blank"] {}
7 /**    ↑
8  * These operators */
9 ```
10
11 ## Options
12
13 `array|string`: `["array", "of", "operators"]|"operator"`
14
15 Given:
16
17 ```js
18 [ "*=" ]
19 ```
20
21 The following patterns are considered violations:
22
23 ```css
24 [class*="test"] {}
25 ```
26
27 The following patterns are *not* considered violations:
28
29 ```css
30 [target] {}
31 ```
32
33 ```css
34 [target="_blank"] {}
35 ```
36
37 ```css
38 [class|="top"] {}
39 ```