Philipp Partosch 46a936d7de added all files to project | 2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
index.js | 2 years ago |
Disallow empty blocks.
a { }
/** ↑
* Blocks like this */
true
The following patterns are considered violations:
a {}
a { }
@media print {
a {}
}
The following patterns are not considered violations:
a {
/* foo */
}
@media print {
a {
color: pink;
}
}
ignore: ["comments"]
Exclude comments from being treated as content inside of a block.
The following patterns are considered violations:
a {
/* foo */
}
@media print {
a {
/* foo */
}
}