Skip to content

no-generic-role

Disallow explicit role="generic".

Severity

warning

❌ Incorrect

html
<article role="generic">text</article>

✅ Correct

html
<div>text</div>

Reference

Configuration

json
{
  "rules": {
    "no-generic-role": "warning"
  }
}

Released under the MIT License.