Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop vscode beautify or prettier from preserving newlines when formatting javascript code?

I want to remove all the newlines/extra lines when I save the code. I found this settings in Atom but not in VSCode. How can I do that?

like image 444
Sujoy Karmaker Avatar asked Oct 26 '25 09:10

Sujoy Karmaker


1 Answers

You can set the VSCode setting html.format.preserveNewLines to false. It will be recognized by Beautify, but works only for HTML files.

The alternative to apply the setting for all files recognized by Beautify is to add a file named .jsbeautifyrc at the root of the workspace, with the following content:

{
   "preserve_newlines": false
}

Also, the VSCode setting editor.formatOnSave should be set to true. To do it you can create the file .vscode/settings.json with the next content:

{
    "editor.formatOnSave": true
}

The settings.json file, located at the .vscode folder in the root of the workspace, allows to configure the VSCode settings to be applied for the current workspace.

like image 101
Guillermo Gutiérrez Avatar answered Oct 27 '25 23:10

Guillermo Gutiérrez



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!