-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Description
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" } >
sourceCode.getCommentsAfter is not a function
TypeError: sourceCode.getCommentsAfter is not a function at Object.fix (/node_modules/eslint-plugin-react/lib/rules/jsx-curly-spacing.js:231:42)
This will pass :
<div className={this.state.renderInfo ? "infoPanel col-xs-12" : "unToggled col-xs-12"} >
Metadata
Metadata
Assignees
Labels
No labels