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

org.sonar.css.checks.l10n.common.empty-declaration.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

Empty declarations are useless and should be removed to avoid confusing developers.

Noncompliant Code Example

.foo { ; }      /* Noncompliant */

.foo {
  ;             /* Noncompliant */
  color: green;
}

stylelint Related Rules





© 2015 - 2024 Weber Informatics LLC | Privacy Policy