eg.
<form onSubmit={this.handleSubmit.bind(this)} method="POST">
<button type="submit">
Save
</button>
</form>
This rule makes sense for a div or span etc., but not in the above case.
Indeed, forms should be able to have onSubmit (the issue that .bind in the render path is super slow would be handled by eslint-plugin-react :-) )
Most helpful comment
Indeed, forms should be able to have
onSubmit(the issue that.bindin the render path is super slow would be handled by eslint-plugin-react :-) )