Skip to content

Files

Latest commit

 

History

History
59 lines (39 loc) · 761 Bytes

block-closing-brace-empty-line-before.md

File metadata and controls

59 lines (39 loc) · 761 Bytes

Pattern: Malformed empty line before } of block

Issue: -

Description

Require or disallow an empty line before the closing brace of blocks.

Examples

always-multi-line

The following patterns are considered violations:

a {
  color: pink;
}

The following patterns are not considered violations:

a {
  color: pink;

}
a { color: pink; }

never

The following patterns are considered violations:

a {
  color: pink;

}

The following patterns are not considered violations:

a {
  color: pink;
}
a { color: pink; }

Further Reading