Open
Description
Rule: html-no-abstract-roles
Description
Prevent usage of WAI-ARIA abstract roles
Rationale
The HTML attribute role must never have the following values:
- command
- composite
- input
- landmark
- range
- roletype
- section
- sectionhead
- select
- structure
- widget
- window
Examples
✅ Good
<div role="button"> Push it </div>
🚫 Bad
<div role="window"> Hello, world! </div>
References
Inspired by ember-template-lint