Hello, I’m doing a game design challenge with my friend. The catch is that he can use Rider while I’m stuck with VSCode. What I’ve noticed right off the bat is that the auto-formatting doesn’t put curly brackets on new lines. Is there a way to change this?
First you enable Use Editor Formatting Settings for OmniSharp (in Settings/Extensions/C# Configuration)
Then find an answer regarding how to set up curly braces for Javascript/Typescript.
This might work
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"javascript.format.placeOpenBraceOnNewLineForFunctions": true,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,