UNPKG

622 BMarkdownView Raw
1# comment-no-empty
2
3Disallow empty comments.
4
5<!-- prettier-ignore -->
6```css
7 /* */
8/** ↑
9 * Comments like this */
10```
11
12This rule ignores SCSS-like comments.
13
14**Caveat:** Comments within _selector and value lists_ are currently ignored.
15
16## Options
17
18### `true`
19
20The following patterns are considered violations:
21
22<!-- prettier-ignore -->
23```css
24/**/
25```
26
27<!-- prettier-ignore -->
28```css
29/* */
30```
31
32<!-- prettier-ignore -->
33```css
34/*
35
36 */
37```
38
39The following patterns are _not_ considered violations:
40
41<!-- prettier-ignore -->
42```css
43/* comment */
44```
45
46<!-- prettier-ignore -->
47```css
48/*
49 * Multi-line Comment
50**/
51```