Pattern: Use of disallowed attribute name
Issue: -
Specify a list of disallowed attribute names.
[class~="foo"] {}
/** ↑
* This name */
The following patterns are considered violations:
[class*="foo"] {}
[id~="bar"] {}
[data-foo*="bar"] {}
The following patterns are not considered violations:
[lang~="en-us"] {}
[target="_blank"] {}
[href$=".bar"] {}