UNPKG

539 BMarkdownView Raw
1# no-empty-source
2
3Disallow empty sources.
4
5<!-- prettier-ignore -->
6```css
7 ···\n\t
8/** ↑
9 * This empty source */
10```
11
12A source containing only whitespace is considered empty.
13
14## Options
15
16### `true`
17
18The following patterns are considered violations:
19
20<!-- prettier-ignore -->
21```css
22
23```
24
25<!-- prettier-ignore -->
26```css
27\t\t
28```
29
30<!-- prettier-ignore -->
31```css
32\n
33```
34
35The following patterns are _not_ considered violations:
36
37<!-- prettier-ignore -->
38```css
39a {}
40```
41
42<!-- prettier-ignore -->
43```css
44/* Only comments */
45```