💼 This rule is enabled in the 🔍 browser
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
As HTML attributes are case insensitive, prefer using lowercase.
👎 Examples of incorrect code for this rule:
el.getAttribute('autoComplete')
el.getAttribute('dataFoo')
👍 Examples of correct code for this rule:
el.getAttribute('autocomplete')
el.getAttribute('data-foo')
4.3.2