notes/node_modules/stylelint/lib/rules/selector-attribute-operator.../README.md

483 B

selector-attribute-operator-blacklist

Specify a blacklist of disallowed attribute operators.

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

Options

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

Given:

[ "*=" ]

The following patterns are considered warnings:

[class*="test"] {}

The following patterns are not considered warnings:

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