Rule leading-zero
will enforce whether or not decimal numbers should include a leading zero.
include
:true
/false
(defaults tofalse
)
When include: false
, the following are allowed. When include: true
, the following are disallowed:
.foo {
font-size: .5em;
}
When include: true
, the following are allowed. When include: false
, the following are disallowed:
.foo {
font-size: 0.5em;
}