761 B
761 B
declaration-block-single-line-max-declarations
Limit the number of declarations within a single-line declaration block.
color: pink; top: 0; }
a { /** ↑ ↑
* The number of these declarations */
Options
int
: Maximum number of declarations allowed.
For example, with 1
:
The following patterns are considered violations:
color: pink; top: 3px; } a {
,
acolor: pink; top: 3px; } b {
The following patterns are not considered violations:
color: pink; } a {
,
acolor: pink; } b {
a {color: pink;
top: 3px;
}