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