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