org.sonar.css.checks.l10n.common.quoted-url.html Maven / Gradle / Ivy
All URLs should be enclosed in quotes as enforced by the most recent W3C specifications.
Noncompliant Code Example
@font-face {
src: url(myfont);
}
Compliant Solution
@font-face {
src: url('myfont');
}
See
stylelint Related Rules
© 2015 - 2024 Weber Informatics LLC | Privacy Policy