Disallow empty blocks.
a { }
/** ↑
* Blocks like this */
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; } }