Skip to content

aria-naming-prohibited

Detect aria-label on naming-prohibited elements.

Severity

error

❌ Incorrect

html
<span aria-label="x">text</span>

✅ Correct

html
<span role="button" aria-label="x">text</span>

Reference

Configuration

json
{
  "rules": {
    "aria-naming-prohibited": "error"
  }
}

Released under the MIT License.