declaration-block-semicolon-newline-before
警告
此规则已弃用,并将在将来删除。 参见 迁移指南。
声明块的分号之前需要换行符或不允许有空格。
a {
color: pink
; top: 0;
} ↑
/** ↑
* The newline before this semicolon */
此规则忽略前面带有 Less mixin 的分号。
选项
string
: "always"|"always-multi-line"|"never-multi-line"
"always"
分号之前必须始终有一个换行符。
以下模式被视为问题:
a { color: pink; }
a {
color: pink; top: 0;
}
以下模式不被视为问题:
a { color: pink
; }
a {
color: pink
; top: 0;
}
"always-multi-line"
在多行规则中,分号之前必须始终有一个换行符。
以下模式被视为问题:
a {
color: pink; top: 0;
}
以下模式不被视为问题:
a { color: pink; }
a { color: pink; top: 0; }
a {
color: pink
; top: 0;
}
"never-multi-line"
在多行规则中,分号之前绝对不能有空格。
以下模式被视为问题:
a {
color: pink
; top: 0;
}
以下模式不被视为问题:
a { color: pink; }
a { color: pink; top: 0; }
a {
color: pink;
top: 0;
}