Skip to content

Files

Latest commit

 

History

History
61 lines (39 loc) · 909 Bytes

declaration-colon-space-before.md

File metadata and controls

61 lines (39 loc) · 909 Bytes

Pattern: Malformed whitespace before : of declaration

Issue: -

Description

Require a single space or disallow whitespace before the colon of declarations.

Examples

"always"

There must always be a single space before the colon.

The following patterns are considered violations:

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

The following patterns are not considered violations:

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

"never"

There must never be whitespace before the colon.

The following patterns are considered violations:

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

The following patterns are not considered violations:

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

Further Reading