Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 371 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 371 Bytes

block-no-empty

Disallow empty blocks.

 a { }
/** ↑
 * Blocks like this */

Options

true

The following patterns are considered violations:

a {}
a { }
@media print { a {} }

The following patterns are not considered violations:

a { color: pink; }
@media print { a { color: pink; } }