Skip to content

no-form-without-action

Warn when <form> has no action attribute.

Severity

warning

❌ Incorrect

html
<form method="post"><input type="text"></form>

✅ Correct

html
<form action="/submit" method="post"><input type="text"></form>

Reference

Configuration

json
{
  "rules": {
    "no-form-without-action": "warning"
  }
}

Released under the MIT License.