Closed krishnaglick closed 5 years ago
Given the following code with "jsx-wrap-multiline": true:
"jsx-wrap-multiline": true
() => <div> test </div>
You get errors as expected. Same with
() => (<div> test </div>)
Where it gives an error at both paren. However
() => ( <div> test </div>),
validates fine.
I would expend the end paren to still be showing an error.
This ought to be fixed with #194
Given the following code with
"jsx-wrap-multiline": true
:You get errors as expected. Same with
Where it gives an error at both paren. However
validates fine.
I would expend the end paren to still be showing an error.