Skip to content

no-duplicate-landmark

Require aria-label on duplicate landmarks.

Severity

warning

❌ Incorrect

html
<nav>Main</nav>
<nav>Footer</nav>

✅ Correct

html
<nav aria-label="Main">Main</nav>
<nav aria-label="Footer">Footer</nav>

Reference

Configuration

json
{
  "rules": {
    "no-duplicate-landmark": "warning"
  }
}

Released under the MIT License.