Skip to content

no-redundant-role

Detect redundant explicit ARIA roles.

Severity

warning

❌ Incorrect

html
<nav role="navigation">x</nav>

✅ Correct

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

Reference

Configuration

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

Released under the MIT License.