#block-no-empty

Disallow empty blocks.

禁止出现空块。

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

#Options

#true

The following patterns are considered warnings:

以下模式被认为是个警告:

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

The following patterns are not considered warnings:

以下模式正常:

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