--- source: crates/biome_js_analyze/tests/spec_tests.rs expression: invalid.jsx --- # Input ```jsx let a = ; let a = ; let a = ; ``` # Diagnostics ``` invalid.jsx:1:20 lint/a11y/useValidLang ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ! Provide a valid value for the lang attribute. > 1 │ let a = ; │ ^^^^^^^ 2 │ let a = ; 3 │ let a = ; i Some of valid languages: - ab - aa - af - sq - am - ar - an - hy - as - ay - az - ba - eu - bn - dz ``` ``` invalid.jsx:2:20 lint/a11y/useValidLang ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ! Provide a valid value for the lang attribute. 1 │ let a = ; > 2 │ let a = ; │ ^^^^^^^^^^ 3 │ let a = ; 4 │ i Some of valid countries: - AF - AL - DZ - AS - AD - AO - AI - AQ - AG - AR - AM - AW - AU - AT - AZ ``` ``` invalid.jsx:3:20 lint/a11y/useValidLang ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ! Provide a valid value for the lang attribute. 1 │ let a = ; 2 │ let a = ; > 3 │ let a = ; │ ^^^^^^^^^^^^^^^^^ 4 │ ```