How do I set up VSCode to put curly braces on a new line? How do I set up VSCode to put curly braces on a new line? javascript javascript

How do I set up VSCode to put curly braces on a new line?


Follow the steps below to make Visual Studio Code format opening curly braces on a new line for Java Script and Type Script.

In Visual Studio Code (v1.20.0)

  1. Go to File\Preferences\Settings
  2. Add the following lines in 'User Settings' (in the right side pane)

    "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true, "javascript.format.placeOpenBraceOnNewLineForFunctions": true,"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
  3. Save 'User Settings' and you are done!


Go to File\Preferences\Settings and search for 'brace'.

Enable the settings illustrated below.

This allows me to auto-format code with curly braces on the following line for function definitions and control blocks.

File\Preferences\Settings

Tested with Visual Studio Code 1.30.2


By default VS code don't support customization in formatting. But you could do your format customization using js-beautify extension. You can find the free version on VS code Marketplace (https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify).

For your requirement of curly braces on new line can be setup by creating a '.jsbeautifyrc' config file on your project root folder and define a following line.

{     "brace_style": "expand"}

For more formatting options you can find from the following link:https://github.com/HookyQR/VSCodeBeautify/blob/master/Settings.md