org.sonar.css.checks.l10n.less.less-deprecated-escaping-function.html Maven / Gradle / Ivy
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