Pattern: Quoted string in quote function
Issue: -
Disallow quoted strings inside the quote function.
The following patterns are considered violations:
a {
font-family: quote("Helvetica");
}
$font: "Helvetica";
p {
font-family: quote($font);
}
The following patterns are not considered violations:
a {
color: quote(blue);
}
$font: Helvetica;
p {
font-family: quote($font);
}