Rule space-before-colon
will enforce whether or not a space should be included before a colon (:
).
include
:true
/false
(defaults tofalse
)
When include: false
, the following are allowed. When include: true
, the following are disallowed:
.foo {
content: 'bar';
}
When include: true
, the following are allowed. When include: false
, the following are disallowed:
.foo {
content :'bar';
}