Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 373 Bytes

File metadata and controls

38 lines (28 loc) · 373 Bytes

no-dollar-variables

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