#selector-attribute-quotes

Require or disallow quotes for attribute values.

要求或禁止特性值使用引号。

[target="_blank"] {}
/**     ↑      ↑
 * These quotes */

#Options

string: "always"|"never"

#"always"

Attribute values must always be quoted.

特性值必须用引号引起来。

The following patterns are considered warnings:

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

[title=flower] {}
[class^=top] {}

The following patterns are not considered warnings:

以下模式正常:

[title] {}
[target="_blank"] {}
[class|="top"] {}
[title~='text'] {}
[data-attribute='component'] {}

#"never"

Attribute values must never be quoted.

特性值禁止用引号引起来。

The following patterns are considered warnings:

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

[target="_blank"] {}
[class|="top"] {}
[title~='text'] {}
[data-attribute='component'] {}

The following patterns are not considered warnings:

以下模式正常:

[title] {}
[title=flower] {}
[class^=top] {}