Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 571 Bytes

File metadata and controls

44 lines (32 loc) · 571 Bytes

declaration-block-single-line-max-declarations

Limit the number of declarations within a single line declaration block.

a { color: pink; top: 0; }
/** ↑            ↑
 * The number of these declarations */

选项

int: Maximum number of declarations allowed.

例如,使用 1

以下模式被视为违规:

a { color: pink; top: 3px; }
a,
b { color: pink; top: 3px; }

以下模式被视为违规:

a { color: pink; }
a,
b { color: pink; }
a {
  color: pink;
  top: 3px;
}