org.sonar.css.checks.l10n.common.leading-zeros.html Maven / Gradle / Ivy
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
© 2015 - 2024 Weber Informatics LLC | Privacy Policy