.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / comment-no-empty / README.md
1 # comment-no-empty
2
3 Disallow empty comments.
4
5 ```css
6     /* */
7 /** ↑
8  * Comments like this */
9 ```
10
11 **Caveat:** Comments within *selector and value lists* are currently ignored.
12
13 ## Options
14
15 ### `true`
16
17 The following patterns are considered violations:
18
19 ```css
20 /**/
21 ```
22
23 ```css
24 /* */
25 ```
26
27 ```css
28 /*
29
30  */
31 ```
32
33 The following patterns are *not* considered violations:
34
35 ```css
36 /* comment */
37 ```
38
39 ```css
40 /*
41  * Multi-line Comment
42 **/
43 ```