Pattern: Malformed empty line before declaration
Issue: -
Require or disallow an empty line before declarations. This rule only applies to standard property declarations.
The following patterns are considered violations:
a {
--foo: pink;
top: 5px;
}
a {
bottom: 15px;
top: 5px;
}
The following patterns are not considered violations:
a {
--foo: pink;
top: 5px;
}
a {
bottom: 15px;
top: 5px;
}
The following patterns are considered violations:
a {
--foo: pink;
bottom: 15px;
}
a {
bottom: 15px;
top: 5px;
}
The following patterns are not considered violations:
a {
--foo: pink;
bottom: 15px;
}
a {
bottom: 15px;
top: 5px;
}
Reverse the primary option for declarations that come after a comment.
Shared-line comments do not trigger this option.
For example, with "always"
:
The following patterns are considered violations:
a {
/* comment */
top: 5px;
}
a {
bottom: 5px; /* comment */
top: 5px;
}
The following patterns are not considered violations:
a {
/* comment */
top: 5px;
}
a {
bottom: 5px; /* comment */
top: 5px;
}
Reverse the primary option for declarations that come after another declaration.
Shared-line comments do not affect this option.
For example, with "always"
:
The following patterns are considered violations:
a {
bottom: 15px;
top: 5px;
}
a {
bottom: 15px; /* comment */
top: 5px;
}
The following patterns are not considered violations:
a {
bottom: 15px;
top: 5px;
}
a {
bottom: 15px; /* comment */
top: 5px;
}
Reverse the primary option for declarations that are nested and the first child of their parent node.
For example, with "always"
:
The following patterns are considered violations:
a {
bottom: 15px;
top: 5px;
}
The following patterns are not considered violations:
a {
bottom: 15px;
top: 5px;
}
Ignore declarations that are preceded by comments.
For example, with "always"
:
The following patterns are not considered violations:
a {
/* comment */
bottom: 15px;
}
Ignore declarations that are preceded by declarations, to allow for multiple declaration sets in the same block.
For example, with "always"
:
The following patterns are not considered violations:
a {
bottom: 15px;
top: 15px;
}
a {
bottom: 15px;
top: 15px;
}
a {
color: orange;
text-decoration: none;
bottom: 15px;
top: 15px;
}
Ignore declarations that are inside single-line blocks.
For example, with "always"
:
The following patterns are not considered violations:
a { bottom: 15px; top: 5px; }