-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
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
Inline if incompatible with jsx curly spacing. #1763
Comments
Has the same error with version 7.7.0 |
|
@alexhalf could you file a new issue for that? |
|
@alexhalf a new issue, meaning, not this closed one :-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With this rule :
"react/jsx-curly-spacing": ["error", "never", {"allowMultiline": true}]
This will fail with error :
<div className={ this.state.renderInfo ? "infoPanel col-xs-12" : "unToggled col-xs-12" } >
This will pass :
<div className={this.state.renderInfo ? "infoPanel col-xs-12" : "unToggled col-xs-12"} >
The text was updated successfully, but these errors were encountered: