Skip to main content

block-no-empty

禁止空块。

¥Disallow empty blocks.

 a { }
/** ↑

* Blocks like this */

选项

¥Options

true

以下模式被视为问题:

¥The following patterns are considered problems:

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

以下模式不被视为问题:

¥The following patterns are not considered problems:

a {
/* foo */
}
@media print {
a {
color: pink;
}
}

可选的辅助选项

¥Optional secondary options

ignore: ["comments"]

排除注释被视为块内的内容。

¥Exclude comments from being treated as content inside of a block.

以下模式被视为问题:

¥The following patterns are considered problems:

a {
/* foo */
}
@media print {
a {
/* foo */
}
}