selector-attribute-operator-allowed-list
Specify a list of allowed attribute operators.
[target="_blank"] {}/** โ * This operator */
#
Optionsarray|string
: ["array", "of", "operators"]|"operator"
Given:
["=", "|="]
The following patterns are considered problems:
[class*="test"] {}
[title~="flower"] {}
[class^="top"] {}
The following patterns are not considered problems:
[target] {}
[target="_blank"] {}
[class|="top"] {}