Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 450 Bytes

File metadata and controls

39 lines (27 loc) · 450 Bytes

selector-attribute-operator-blacklist

Specify a blacklist of disallowed attribute operators.

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

选项

array|string: ["array", "of", "operators"]|"operator"

给定:

[ "*=" ]

以下模式被视为违规:

[class*="test"] {}

以下模式被视为违规:

[target] {}
[target="_blank"] {}
[class|="top"] {}