Skip to content

form-dup-name

Detect duplicate form control names.

Severity

warning

❌ Incorrect

html
<form>
  <input name="x">
  <input name="x">
</form>

✅ Correct

html
<form>
  <input name="x">
  <input name="y">
</form>

Reference

Configuration

json
{
  "rules": {
    "form-dup-name": "error"
  }
}

Released under the MIT License.