declaration-block-single-line-max-declarations
単一行の宣言ブロック内の宣言の数を制限します。
a { color: pink; top: 0; }
/** ↑ ↑
* The number of these declarations */
message
セカンダリ オプションは、このルールの引数を受け入れることができます。
オプション
int
: 許可される宣言の最大数。
たとえば、1
の場合
次のパターンは問題と見なされます
a { color: pink; top: 3px; }
a,
b { color: pink; top: 3px; }
次のパターンは問題とは見なされません
a { color: pink; }
a,
b { color: pink; }
a {
color: pink;
top: 3px;
}