Skip to content

Files

Latest commit

 

History

History
45 lines (27 loc) · 804 Bytes

at-rule-semicolon-space-before.md

File metadata and controls

45 lines (27 loc) · 804 Bytes

Pattern: Malformed whitespace before ; of at-rule

Issue: -

Description

This rule ignores @import in Less.

Examples

"always"

There must always be a single space before the semicolons.

The following patterns 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 patterns is considered a violation:

@import "components/buttons" ;

The following pattern is not considered a violation:

@import "components/buttons";

Further Reading