This rule warns about a Mitosis limitation.
This rule aims to warn you about using an unsupported callback parameter name.
Examples of incorrect code for this rule:
<button onClick={ e => console.log(e) }/>
<button onClick={ function (e) {} }/>
<button onClick={ function foobar(e) {} }/>
Examples of correct code for this rule:
<button/>
<button type="button"/>
<button onClick={ null }/>
<button onClick={ "string" }/>
<button onClick={ event => doSomething(event) }/>
<button onClick={ () => doSomething() }/>
<button onClick={ function(event) {} }/>