atom / language-javascript

JavaScript language package for Atom
Other
194 stars 237 forks source link

Auto Indent not working with JSX elements #675

Open moesalih opened 4 years ago

moesalih commented 4 years ago

It seems that nested JSX elements aren't being indented properly.

Example:

function App() {
    return (
        <div>
        <div>
        <div>
        </div>
        </div>
        </div>
    );
}

Anyone else having this issue?