Pattern: Malformed empty line before nested rule
Issue: -
Require or disallow an empty line before nested rules.
@media {
/* ← */
a {} /* ↑ */
} /* ↑ */
/** ↑
* This line */
string
: "always"|"never"|"always-multi-line"|"never-multi-line"
There must always be an empty line before rules.
The following patterns are considered warnings:
@media { a {} }
@media {
a {}
}
The following patterns are not considered warnings:
@media {
a {}
}
There must never be an empty line before rules.
The following patterns are considered warnings:
@media { a {} }
@media {
a {}
}
The following patterns are not considered warnings:
@media {
a {}
}
There must always be an empty line before multi-line rules.
The following patterns are considered warnings:
@media {
a {
color: pink;
top: 0;
}
}
The following patterns are not considered warnings:
@media {
a {
color: pink;
top: 0;
}
}
There must never be an empty line before multi-line rules.
The following patterns are considered warnings:
@media {
a {
color: pink;
top: 0;
}
}
The following patterns are not considered warnings:
@media {
a {
color: pink;
top: 0;
}
}
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 {}
c {}
}
The following patterns are not considered warnings:
@media {
a {}
b {}
c {}
}
Reverse the primary option if the rule comes after another rule.
For example, with "always"
:
The following patterns are considered warnings:
@media {
color: red;
a {}
b {}
c {}
}
The following patterns are not considered warnings:
@media {
color: red;
a {}
b {}
c {}
}
Ignore rules that come after a comment.
The following patterns are not considered warnings:
@media {
/* comment */
a {}
}
@media {
/* comment */
a {}
}