Skip to content

landmark-roles

Detect nested landmark roles.

Severity

warning

❌ Incorrect

html
<main>
  <aside>
    <header>nested</header>
  </aside>
</main>

✅ Correct

html
<main><p>content</p></main>

Reference

Configuration

json
{
  "rules": {
    "landmark-roles": "error"
  }
}

Released under the MIT License.