-
- Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Description
It would be quite nice to have the option "line-aligned" in the rule react/jsx-closing-tag-location, same as in the rule https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-closing-bracket-location.md.
With this option, the following code would be accepted :
const test = <div> Hello World </div>;And this one would be denied :
const test = <div> Hello World</div>;