Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 888 Bytes

File metadata and controls

63 lines (42 loc) · 888 Bytes

declaration-colon-space-before

Require a single space or disallow whitespace before the colon of declarations.

a { color :pink }
/**       ↑
 * The space before this colon */

命令行中的 --fix 选项可以自动修复此规则报告的所有问题。

选项

string: "always"|"never"

"always"

There must always be a single space before the colon.

以下模式被视为违规:

a { color: pink }
a { color:pink }

以下模式被视为违规:

a { color : pink }
a { color :pink }

"never"

There must never be whitespace before the colon.

以下模式被视为违规:

a { color : pink }
a { color :pink }

以下模式被视为违规:

a { color: pink }
a { color:pink }