Skip to main content
Checks for skip-to-content link for keyboard navigation
Rule IDa11y/skip-link
CategoryAccessibility
ScopePer-page
Severitywarning
Weight4/10

Solution

Skip links allow keyboard users to bypass repetitive navigation and jump directly to main content. Add a hidden link at the very beginning of your page: . Style it to become visible on focus. Ensure the target (#main-content) has tabindex=’-1’ if it’s not naturally focusable. This is especially important for screen reader users.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["a11y/skip-link"]

Disable all Accessibility rules

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

Enable only this rule

squirrel.toml
[rules]
enable = ["a11y/skip-link"]
disable = ["*"]