Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.squirrelscan.com/llms.txt

Use this file to discover all available pages before exploring further.

Checks that select elements have accessible names
Rule IDa11y/select-name
CategoryAccessibility
ScopePer-page
Severityerror
Weight8/10

Solution

Select elements need accessible labels. Use <label for='selectId'>Label</label>, wrap in <label>, or use aria-label/aria-labelledby.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["a11y/select-name"]

Disable all Accessibility rules

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

Enable only this rule

squirrel.toml
[rules]
enable = ["a11y/select-name"]
disable = ["*"]