cmy a6e36702ec 2023-3-1 2 年之前
..
README.md a6e36702ec 2023-3-1 2 年之前
index.js a6e36702ec 2023-3-1 2 年之前

README.md

selector-attribute-operator-blacklist

Deprecated: Instead use the selector-attribute-operator-disallowed-list rule.

Specify a list of disallowed attribute operators.

[target="_blank"] {}
/**    ↑
 * This operator */

Options

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

Given:

["*="]

The following patterns are considered violations:

[class*="test"] {}

The following patterns are not considered violations:

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