Take this line, for example:
var x = 5;
var yyyyy = 10;
var zzzzzz = 15;
The VS Code Formatter removes the extra spaces between variable names and values.
var x = 5;
var yyyyy = 10;
var zzzzzz = 15;
Is there a way to configure it to keep the formatting as is? Are there specific settings to adjust this behavior? I have looked through the different settings but have not found anything related to this feature.
I am currently using the default formatter (no extensions) for JavaScript files.