ARIA Meter Name
Checks that meter elements have accessible names
Checks that meter elements have accessible names
| Rule ID | a11y/aria-meter-name |
| Category | Accessibility |
| Scope | Per-page |
| Severity | error |
| Weight | 7/10 |
Solution
Meter elements must have accessible names to describe what they’re measuring. Add aria-label, aria-labelledby, or an associated <label>. Example: <meter aria-label='Battery level' value='0.8'>80%</meter>
Enable / Disable
Disable this rule
squirrel.toml
toml[rules]
disable = ["a11y/aria-meter-name"]Disable all Accessibility rules
squirrel.toml
toml[rules]
disable = ["a11y/*"]Enable only this rule
squirrel.toml
toml[rules]
enable = ["a11y/aria-meter-name"]
disable = ["*"]