|
|
%!s(int64=2) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| README.md | %!s(int64=2) %!d(string=hai) anos | |
| index.js | %!s(int64=2) %!d(string=hai) anos | |
Disallow empty blocks.
a { }
/** ↑
* Blocks like this */
trueThe 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 */
}
}