1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-26 14:16:07 -04:00
notes/node_modules/stylelint/lib/rules/rule-empty-line-before
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

rule-empty-line-before

Require or disallow an empty line before rules.

a {}
      /* ← */
b {}  /* ↑ */
/**      ↑
 * This line */

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

Options

string: "always"|"never"|"always-multi-line"|"never-multi-line"

"always"

There must always be an empty line before rules.

The following patterns are considered warnings:

a {} b {}
a {}
b {}

The following patterns are not considered warnings:

a {}

b {}

"never"

There must never be an empty line before rules.

The following patterns are considered warnings:

a {}

b {}

The following patterns are not considered warnings:

a {} b {}
a {}
b {}

"always-multi-line"

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

The following patterns are considered warnings:

a {
  color: red;
}
b {
  color: blue;
}

The following patterns are not considered warnings:

a {
  color: red;
}

b {
  color: blue;
}

"never-multi-line"

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

The following patterns are considered warnings:

a {
  color: red;
}

b {
  color: blue;
}

The following patterns are not considered warnings:

a {
  color: red;
}
b {
  color: blue;
}

Optional secondary options

except: ["after-rule", "after-single-line-comment", "inside-block-and-after-rule", "first-nested"]

"after-rule"

Reverse the primary option if the rule comes after another rule.

For example, with "always":

The following patterns are considered warnings:

a {}

b {}

The following patterns are not considered warnings:

a {}
b {}

"after-single-line-comment"

Reverse the primary option if the rule comes after a single-line comment.

For example, with "always":

The following patterns are considered warnings:

/* comment */

a {}

The following patterns are not considered warnings:

/* comment */
a {}

"inside-block-and-after-rule"

Reverse the primary option if the rule is inside a block and comes after another rule.

For example, with "always":

The following patterns are considered warnings:

@media {

  a {}

  b {}
}

The following patterns are not considered warnings:

@media {
  a {}
  b {}
}

"first-nested"

Reverse the primary option if the rule is the first in a block.

For example, with "always":

The following patterns are considered warnings:

@media {

  a {}

  b {}
}

The following patterns are not considered warnings:

@media {
  a {}

  b {}
}

ignore: ["after-comment", "inside-block"]

"after-comment"

Ignore rules that come after a comment.

For example, with "always":

The following patterns are not considered warnings:

/* comment */
a {}

"inside-block"

Ignore rules that are inside a block.

For example, with "always":

The following patterns are not considered warnings:

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