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](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 : ```jsx const test = <div> Hello World </div>; ``` And this one would be denied : ```jsx const test = <div> Hello World</div>; ```