.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / selector-type-case / README.md
1 # selector-type-case
2
3 Specify lowercase or uppercase for type selectors.
4
5 ```css
6     a {}
7 /** ↑
8  * This is type selector */
9 ```
10
11 ## Options
12
13 `string`: `"lower"|"upper"`
14
15 ### `"lower"`
16
17 The following patterns are considered violations:
18
19 ```css
20 A {}
21 ```
22
23 ```css
24 LI {}
25 ```
26
27 The following patterns are *not* considered violations:
28
29 ```css
30 a {}
31 ```
32
33 ```css
34 li {}
35 ```
36
37 ### `"upper"`
38
39 The following patterns are considered violations:
40
41 ```css
42 a {}
43 ```
44
45 ```css
46 li {}
47 ```
48
49 The following patterns are *not* considered violations:
50
51 ```css
52 A {}
53 ```
54
55 ```css
56 LI {}
57 ```