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

org.sonar.css.checks.l10n.common.line-length.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

Having to scroll horizontally makes it harder to get a quick overview and understanding of any piece of code.

Noncompliant Code Example

With maximum length set to 50:
/* Noncompliant: split this comment into several lines blabla blabla blabla blabla blabla blabla */
.mybox {
  color: red; background-color: red; color: red; background-color: red; /* Noncompliant */
}

Compliant Solution

With maximum length set to 50:
/* blabla blabla blabla blabla blabla blabla */
/* blabla blabla blabla blabla blabla blabla */
.mybox {
  color: red;
  background-color: red;
  color: red;
  background-color: red;
}

stylelint Related Rules





© 2015 - 2024 Weber Informatics LLC | Privacy Policy