Disallow dollar variables within a stylesheet.
$a: 1;
/** ↑
* These dollar variables */
The following patterns are considered violations:
$a: 1;
$a: 1;
$b: 2;
.b {
$a: 1;
}
The following patterns are not considered violations:
a {
color: blue;
}