Skip to content

Files

Latest commit

 

History

History
93 lines (66 loc) · 1.42 KB

at-rule-name-newline-after.md

File metadata and controls

93 lines (66 loc) · 1.42 KB

Pattern: Missing newline after at-rule name

Issue: -

Description

Require a newline after at-rule names. This rule ignores @import in Less.

Examples

"always"

There must always be a newline after at-rule names.

The following patterns are considered violations:

@charset "UTF-8";
@media (min-width: 700px) and
  (orientation: landscape) {}

The following patterns are not considered violations:

@charset
  "UTF-8";
@import
  "x.css" screen and
 (orientation:landscape);
@media
  (min-width: 700px) and (orientation: landscape) {}
@media
  (min-width: 700px) and
  (orientation: landscape) {}

"always-multi-line"

There must always be a newline after at-rule names in at-rules with multi-line parameters.

The following patterns are considered violations:

@import "x.css" screen and
 (orientation:landscape);
@media (min-width: 700px) and
 (orientation: landscape) {}

The following patterns are not considered violations:

@charset "UTF-8";
@charset
  "UTF-8";
@import "x.css" screen and (orientation:landscape);
@media (min-width: 700px) and (orientation: landscape) {}
@media
  (min-width: 700px) and
  (orientation: landscape) {}

Further Reading