|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- # block-no-empty
-
- Disallow empty blocks.
-
- <!-- prettier-ignore -->
- ```css
- a { }
- /** ↑
- * Blocks like this */
- ```
-
- ## Options
-
- ### `true`
-
- The following patterns are considered violations:
-
- <!-- prettier-ignore -->
- ```css
- a {}
- ```
-
- <!-- prettier-ignore -->
- ```css
- a { }
- ```
-
- <!-- prettier-ignore -->
- ```css
- @media print {
- a {}
- }
- ```
-
- The following patterns are _not_ considered violations:
-
- <!-- prettier-ignore -->
- ```css
- a {
- /* foo */
- }
- ```
-
- <!-- prettier-ignore -->
- ```css
- @media print {
- a {
- color: pink;
- }
- }
- ```
-
- ## Optional secondary options
-
- ### `ignore: ["comments"]`
-
- Exclude comments from being treated as content inside of a block.
-
- The following patterns are considered violations:
-
- <!-- prettier-ignore -->
- ```css
- a {
- /* foo */
- }
- ```
-
- <!-- prettier-ignore -->
- ```css
- @media print {
- a {
- /* foo */
- }
- }
- ```
|