Skip to content

no-use-event-handler-attr

Detect event handler attributes.

Severity

warning

❌ Incorrect

html
<button onclick="alert()">Click</button>

✅ Correct

html
<button>Click</button>

Reference

Configuration

json
{
  "rules": {
    "no-use-event-handler-attr": "error"
  }
}

Released under the MIT License.