Pattern: Malformed whitespace before !
of declaration
Issue: -
Require a single space or disallow whitespace before the bang of declarations.
There must always be a single space before the bang.
The following patterns are considered violations:
a { color: pink!important; }
a { color: pink ! important; }
The following patterns are not considered violations:
a { color: pink !important; }
a { color:pink ! important; }
There must never be whitespace before the bang.
The following patterns are considered violations:
a { color : pink !important; }
The following patterns are not considered violations:
a { color: pink!important; }
a { color: pink! important; }