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?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With