Pattern: Malformed newline before }
of block
Issue: -
Require a newline or disallow whitespace before the closing brace of blocks.
There must always be a newline before the closing brace.
The following patterns are considered violations:
a { color: pink;}
The following patterns are not considered violations:
a { color: pink;
}
a {
color: pink;
}
There must always be a newline before the closing brace in multi-line blocks.
The following patterns are considered violations:
a {
color: pink;}
The following patterns are not considered violations:
a { color: pink; }
a { color: pink;
}
There must never be whitespace before the closing brace in multi-line blocks.
The following patterns are considered violations:
a {
color: pink; }
The following patterns are not considered violations:
a { color: pink; }
a {
color: pink;}