Pattern: Malformed empty line before }
of block
Issue: -
Require or disallow an empty line before the closing brace of blocks.
The following patterns are considered violations:
a {
color: pink;
}
The following patterns are not considered violations:
a {
color: pink;
}
a { color: pink; }
The following patterns are considered violations:
a {
color: pink;
}
The following patterns are not considered violations:
a {
color: pink;
}
a { color: pink; }