This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-01 22:46:04 +00:00

930 B

at-rule-semicolon-space-before

Require a single space or disallow whitespace before the semicolons of at-rules.

@import "components/buttons";
/**                         ↑
 * The space before this semicolon */

Options

string: "always"|"never"

"always"

There must always be a single space before the semicolons.

The following pattern is considered a violation:

@import "components/buttons";

The following pattern is not considered a violation:

@import "components/buttons" ;

"never"

There must never be a single space before the semicolons.

The following pattern is considered a violation:

@import "components/buttons" ;

The following pattern is not considered a violation:

@import "components/buttons";