For readability reasons, remove the leading zeros of declaration values.

Noncompliant Code Example

h1 {
 font-size: 0.9em;
}

Compliant Solution

h1 {
 font-size: .9em;
}

stylelint Related Rules