All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.css.checks.l10n.common.leading-zeros.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

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