Skip to content

no-abstract-role

Detect abstract ARIA roles.

Severity

error

❌ Incorrect

html
<div role="widget">x</div>

✅ Correct

html
<div role="button">x</div>

Reference

Configuration

json
{
  "rules": {
    "no-abstract-role": "error"
  }
}

Released under the MIT License.