Skip to content

no-implicit-button-type

Require explicit type on button.

Severity

warning

❌ Incorrect

html
<button>Click</button>

✅ Correct

html
<button type="button">Click</button>

Reference

Configuration

json
{
  "rules": {
    "no-implicit-button-type": "error"
  }
}

Released under the MIT License.