Skip to content

Files

Latest commit

 

History

History
39 lines (26 loc) · 477 Bytes

block-no-empty.md

File metadata and controls

39 lines (26 loc) · 477 Bytes

Pattern: Empty block

Issue: -

Description

Disallow empty blocks.

Examples

The following patterns are considered violations:

 a { }
/** ↑
 * Blocks like this */
a {}
@media print { a {} }

The following patterns are not considered violations:

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

Further Reading