<!-- ✨ Thanks for reporting a bug! ➡️ Please don't ignore this template --> <!-- 1️⃣ Explain here what's wrong --> According to [WhatWG](https://html.spec.whatwg.org/multipage/forms.html#attr-form-accept-charset), the value must be an [ASCII case-insensitive](https://infra.spec.whatwg.org/#ascii-case-insensitive) match for "UTF-8" <!-- 2️⃣ Specify which rule is buggy here and in the title --> please text-encoding-identifier-case of rule check Thanks for always helping us out <!-- 3️⃣ Add some examples where the issue appears --> **example** This is causing conflicts in our React code (in .tsx files that are linted by eslint): ```js <form id="search_keyword" method="get" action={action} acceptCharset="UTF-8" // get eslint error > <input type="search" name="q" id="q" /> .... </form> ```