1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-07 04:00:42 +00:00
notes/node_modules/stylelint-scss/src/rules/dollar-variable-colon-space-before/README.md
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

938 B

dollar-variable-colon-space-before

Require a single space or disallow whitespace before the colon in $-variable declarations.

$variable: 10px;
/**      ↑
 * The space before this colon */

Options

string: `"always"|"never"

"always"

There must always be a single space before the colon.

The following patterns are considered warnings:

a { $var: 10px }
$var:10px;
$var  :10px;
$var
:10px;

The following patterns are not considered warnings:

a { $var : 10px }
$var :10px;

"never"

There must never be whitespace before the colon.

The following patterns are considered warnings:

$var :10px;
a { $var
:10px }

The following patterns are not considered warnings:

$var:10px;
a { $var: 10px }