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

org.sonar.css.checks.l10n.common.S1135.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

TODO tags are commonly used to mark places where some more code is required, but which the developer wants to implement later. Sometimes the developer will not have the time or will simply forget to get back to that tag. This rule is meant to track those tags, and ensure that they do not go unnoticed.

Noncompliant Code Example

/* TODO: blabla */
h1 {
  color: green;
}

h1 {
  color: green; /* TODO: blabla */
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy