Skip to content

prefer-native-over-aria

Warn when an ARIA role is used where a native HTML element exists.

Severity

warning

❌ Incorrect

html
<div role="button" tabindex="0">Click</div>

✅ Correct

html
<button>Click</button>

Reference

Configuration

json
{
  "rules": {
    "prefer-native-over-aria": "warning"
  }
}

Released under the MIT License.