esformatter-jsx
esformatter-jsx copied to clipboard
Closing round bracket indentation
with the default options, the closing round bracket in return clause is indented one level more.
class App extends Component {
render() {
return (
<div className="App">
<Header/>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
</p>
</div>
); // prefer aligned with return instead of </div>
}
}
I am using [email protected] and [email protected]
Any fix for this?