HookyQR / VSCodeBeautify

Enable js-beautify (https://github.com/beautify-web/js-beautify) in VS Code
MIT License
606 stars 180 forks source link

Beautify Automatically Adds Lines Between Comments and Class #372

Open angadsinghsandhu opened 3 years ago

angadsinghsandhu commented 3 years ago

Beautify Automatically Adds Lines Between Comment and Class:

Before Saving: Before

After Saving: After

Here adding line between classes is ok but between comments and classes is a little problematic.

TyronNIKO commented 3 years ago

Try this: add to Settings.json

"beautify.config": {
    "newline_between_rules": false
},