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

org.sonar.css.checks.l10n.less.less-deprecated-escaping-function.html Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version

Escaping e function is deprecated. ~"value" should be used instead.

Noncompliant Code Example

.mybox {
  filter: e("ms:alwaysHasItsOwnSyntax.For.Stuff()");
}

Compliant Solution

.mybox {
  filter: ~"ms:alwaysHasItsOwnSyntax.For.Stuff()";
}

See





© 2015 - 2024 Weber Informatics LLC | Privacy Policy