#value-list-comma-space-after

Require a single space or disallow whitespace after the commas of value lists.

在值列表的逗号之后要求有一个空格或禁止有空白。

a { background-size: 0, 0; }
/**                   ↑
 * The space after these commas */

#Options

string: "always"|"never"|"always-single-line"|"never-single-line"

#"always"

There must always be a single space after the commas.

在逗号之后必须有一个空格。

The following patterns are considered warnings:

以下模式被认为是个警告:

a { background-size: 0,0; }
a { background-size: 0
      , 0; }

The following patterns are not considered warnings:

以下模式正常:

a { background-size: 0, 0; }
a { background-size: 0
      , 0; }

#"never"

There must never be whitespace after the commas.

在逗号之后禁止有空白。

The following patterns are considered warnings:

以下模式被认为是个警告:

a { background-size: 0, 0; }
a { background-size: 0 ,
      0; }

The following patterns are not considered warnings:

以下模式正常:

a { background-size: 0,0; }
a { background-size: 0
      ,0; }

#"always-single-line"

There must always be a single space after the commas in single-line value lists.

在单行值列表的逗号之后必须有一个空格。

The following patterns are considered warnings:

以下模式被认为是个警告:

a { background-size: 0,0; }

The following patterns are not considered warnings:

以下模式正常:

a { background-size: 0, 0; }
a { background-size: 0
    , 0; }
a { background-size: 0
      ,0; }

#"never-single-line"

There must never be whitespace after the commas in single-line value lists.

在单行值列表的逗号之后禁止有空白。

The following patterns are considered warnings:

以下模式被认为是个警告:

a { background-size: 0, 0; }

The following patterns are not considered warnings:

以下模式正常:

a { background-size: 0,0; }
a { background-size: 0
      ,0; }
a { background-size: 0
      , 0; }