Skip to content

Latest commit

 

History

History
257 lines (169 loc) · 3.09 KB

File metadata and controls

257 lines (169 loc) · 3.09 KB

at-rule-empty-line-before

Require or disallow an empty line before at-rules.

a {}
          /* ← */
@media {} /* ↑ */
/**          ↑
 *   This line */

If the at-rule is the very first node in a stylesheet then it is ignored.

Options

string: "always"|"never"

"always"

There must always be an empty line before at-rules.

The following patterns are considered warnings:

a {} @media {}
a {}
@media {}

The following patterns are not considered warnings:

a {}

@media {}

"never"

There must never be an empty line before at-rules.

The following patterns are considered warnings:

a {}

@media {}

The following patterns are not considered warnings:

a {} @media {}
a {}
@media {}

Optional options

except: ["all-nested", "blockless-group", "first-nested"]

"all-nested"

Reverse the primary option for at-rules that are nested.

For example, with "always":

The following patterns are considered warnings:

a {

  @extend foo;
  color: pink;
}

b {
  color: pink;

  @extend foo;
}

The following patterns are not considered warnings:

a {
  @extend foo;
  color: pink;
}

b {
  color: pink;
  @extend foo;
}

"blockless-group"

Reverse the primary option for at-rules within a blockless group.

For example, with "always":

The following patterns are considered warnings:

@import url(x.css);

@import url(y.css);

@media print {}

The following patterns are not considered warnings:

@import url(x.css);
@import url(y.css);

@media print {}

"first-nested"

Reverse the primary option for at-rules that are nested and the first child of their parent node.

For example, with "always":

The following patterns are considered warnings:

a {

  @extend foo;
  color: pink;
}

b {
  color: pink;
  @extend foo;
}

The following patterns are not considered warnings:

a {
  @extend foo;
  color: pink;
}

b {
  color: pink;

  @extend foo;
}

ignore: ["after-comment", "blockless-group", "all-nested"]

"after-comment"

Ignore at-rules that come after a comment.

The following patterns are not considered warnings:

/* comment */
@media {}
/* comment */

@media {}

"all-nested"

Ignore at-rules that are nested.

For example, with "always":

The following patterns are not considered warnings:

a {
  @extend foo;
  color: pink;
}

a {

  @extend foo;
  color: pink;
}

b {
  color: pink;
  @extend foo;
}

b {
  color: pink;

  @extend foo;
}

"blockless-group"

Ignore at-rules within a blockless group.

For example, with "always":

The following patterns are not considered warnings:

@import url(x.css);

@import url(y.css);

@media print {}
@import url(x.css);
@import url(y.css);

@media print {}

ignoreAtRules: ["array", "of", "at-rules"]

Ignore specified at-rules.

For example, with "always".

Given:

["import"]

The following patterns are not considered warnings:

@charset "UTF-8";
@import {}