Disallow end-of-line whitespace.
禁止行尾空白。
a { color: pink; }···
/** ↑
* This whitespace */
true
The following patterns are considered warnings:
以下模式被认为是个警告:
a { color: pink; }·
a { color: pink; }····
Comment strings are also checked -- so the following is a warning:
注释字符串也会被检查,所以,以下模式是个警告:
/* something····
* something else */
The following patterns are not considered warnings:
以下模式正常:
a { color: pink; }
/* something
* something else */
ignore: ["empty-lines"]
"empty-lines"
Allow end-of-line whitespace for lines that are only whitespace, "empty" lines.
允许只有空白的行和空行的行尾空白。
The following patterns are not considered warnings:
以下模式正常:
a {
color: pink;
··
background: orange;
}
····
a { color: pink; }
····