Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 791 Bytes

html-has-lang.md

File metadata and controls

31 lines (21 loc) · 791 Bytes

jsx-a11y/html-has-lang

💼 This rule is enabled in the following configs: ☑️ recommended, 🔒 strict.

elements must have the lang prop. This rule is largely superseded by the [`lang` rule](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/lang.md).

Rule details

This rule takes no arguments.

Succeed

<html lang="en">
<html lang="en-US">
<html lang={language}>

Fail

<html>

Accessibility guidelines

Resources