I have a component with a form:
< form action="javascript:void(0)" onSubmit={this.join}>
Eslint is complaining:
error Script URL is a form of eval no-script-url
Note: I am also using "eslint-plugin-react"
How can I relax this rule or what would be an alternative to the javascript void function?