|
123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # no-empty-source
-
- Disallow empty sources.
-
- <!-- prettier-ignore -->
- ```css
- ···\n\t
- /** ↑
- * This empty source */
- ```
-
- A source containing only whitespace is considered empty.
-
- ## Options
-
- ### `true`
-
- The following patterns are considered violations:
-
- <!-- prettier-ignore -->
- ```css
-
- ```
-
- <!-- prettier-ignore -->
- ```css
- \t\t
- ```
-
- <!-- prettier-ignore -->
- ```css
- \n
- ```
-
- The following patterns are _not_ considered violations:
-
- <!-- prettier-ignore -->
- ```css
- a {}
- ```
-
- <!-- prettier-ignore -->
- ```css
- /* Only comments */
- ```
|