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

org.sonar.css.checks.l10n.less.prefer-single-line-comments.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

Prefer single-line comments (//) over multi-line (/* ... */) since they're not rendered in the final CSS.

Noncompliant Code Example

.mybox {
  /* blabla... */
  color: green;
}

Compliant Solution

.mybox {
  // blabla...
  color: green;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy