Skip to content

aria-role-conflicts

Detect conflicts between explicit and implicit role.

Severity

warning

❌ Incorrect

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

✅ Correct

html
<button>x</button>

Reference

Configuration

json
{
  "rules": {
    "aria-role-conflicts": "error"
  }
}

Released under the MIT License.