Require or disallow an empty line before the closing brace of blocks.
a {
color: pink;
/* ← */
} /* ↑ */
/** ↑
* This line */
string
: "always-multi-line"|"never"
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; }