Pattern: Malformed newline before closing brace
Issue: -
Require a newline or disallow whitespace before the closing brace of blocks.
a { color: pink;
}
/** ↑
* The newline before this brace */
There must always be a newline before the closing brace.
The following patterns are considered problems:
a { color: pink;}
The following patterns are not considered problems:
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 problems:
a {
color: pink;}
The following patterns are not considered problems:
a { color: pink; }
a { color: pink;
}
There must never be whitespace before the closing brace in multi-line blocks.
The following patterns are considered problems:
a {
color: pink; }
The following patterns are not considered problems:
a { color: pink; }
a {
color: pink;}