no-dollar-variables

July 21, 2018 · View on GitHub

Disallow dollar variables within a stylesheet.

    $a: 1;
/** ↑
 * These dollar variables */

Options

true

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;
}