How to use beautify for Javascript/React?

6.8k Views Asked by At

I have installed Beautify to use it for my ReactJS code. However, it apparently does not properly beautify the HTML format in the file.

For example, it turns this:

enter image description here

into this: enter image description here

Among all the options, which option should I use to fix this ?

3

There are 3 best solutions below

1
On

Just change language mode javascript to javascript react [temporary]

VSCode Command: (Ctrl + KM)

Or Save file in .jsx format and change the settings.json file

"files.associations": {
    "*.jsx": "javascriptreact"
}

0
On

I used to have the same problem. Apparently beautify doesn't support JSX. I uninstalled and instead of it, I installed Prettier, it works great for me.

Hope I helped you.

0
On

For those still struggling with this, there is also js-beautify's -X (--e4x) option which tells it to leave the XML content unchanged.