The react/jsx-no-bind not working without explicit options object.
Actual
Code
<Foo onClick={this._handleClick}></Foo>
With "react/jsx-no-bind": "error" there is no error in this code. Only "react/jsx-no-bind": ["error", {}] detects the issue.
Expected
"react/jsx-no-bind": "error" will use the default configuration and detect the issue in the code.