Skip to main content
Checks that all lang attributes on the page have valid values
Rule IDa11y/valid-lang
CategoryAccessibility
ScopePer-page
Severitywarning
Weight5/10

Solution

All lang attributes should use valid BCP 47 language tags. This includes lang attributes on any element, not just <html>. Use lang to mark up content in a different language from the page default.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["a11y/valid-lang"]

Disable all Accessibility rules

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

Enable only this rule

squirrel.toml
[rules]
enable = ["a11y/valid-lang"]
disable = ["*"]