Skip to main content
Checks that IDs used in ARIA attributes are unique
Rule IDa11y/duplicate-id-aria
CategoryAccessibility
ScopePer-page
Severityerror
Weight8/10

Solution

IDs referenced by ARIA attributes (aria-labelledby, aria-describedby, aria-controls, etc.) must be unique on the page. Duplicate IDs cause assistive technology to potentially reference the wrong element. Rename duplicate IDs to be unique.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["a11y/duplicate-id-aria"]

Disable all Accessibility rules

squirrel.toml
[rules]
disable = ["a11y/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["a11y/duplicate-id-aria"]
disable = ["*"]