UNPKG

stylelint

Version:

A mighty, modern CSS linter.

38 lines (26 loc) 371 B
# block-no-empty Disallow empty blocks. ```css a { } /** ↑ * Blocks like this */ ``` ## Options ### `true` The following patterns are considered violations: ```css a {} ``` ```css a { } ``` ```css @media print { a {} } ``` The following patterns are *not* considered violations: ```css a { color: pink; } ``` ```css @media print { a { color: pink; } } ```