javascriptvisual-studio-codejs-beautify

No space before opening parenthesis on auto format in VS Code


If I press Shift + Alt + F to let VS Code format my JS source code it converts

for(var key in indexObj)

to

for (var key in indexObj)

How can I prevent VS Code to do that?


Solution