Duplicate ID ARIA
Checks that IDs used in ARIA attributes are unique
Checks that IDs used in ARIA attributes are unique
| Rule ID | a11y/duplicate-id-aria |
| Category | Accessibility |
| Scope | Per-page |
| Severity | error |
| Weight | 8/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
toml[rules]
disable = ["a11y/duplicate-id-aria"]Disable all Accessibility rules
squirrel.toml
toml[rules]
disable = ["a11y/*"]Enable only this rule
squirrel.toml
toml[rules]
enable = ["a11y/duplicate-id-aria"]
disable = ["*"]