We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using eslint-plugin-react 6.2.1, eslint does not complain about the following JSX code:
eslint-plugin-react
{!state.localHold ? <PauseIcon onClick={this.handleHold.bind(this)} /> : <ResumeIcon onClick={this.handleResume.bind(this)} /> }
However, using 6.7.1, eslint complains:
93:9 error Expected indentation of 9 tab characters but found 8 (react/jsx-indent)
NOTE: line 93 is the one containing <ResumeIcon.
<ResumeIcon
However, if I do the following, eslint does not complain:
This is obviously weird.
The text was updated successfully, but these errors were encountered:
d241bb5
No branches or pull requests
Using
eslint-plugin-react
6.2.1, eslint does not complain about the following JSX code:However, using 6.7.1, eslint complains:
NOTE: line 93 is the one containing
<ResumeIcon
.However, if I do the following, eslint does not complain:
This is obviously weird.
The text was updated successfully, but these errors were encountered: