General C/C++ code looks like this
{
statement;
}
I want to format it in a slightly unorthodox way as follows,
{
statement;
}
^^ --> Closing braces on same indentation level as statements
How do I achieve this automatically in vscode?
I dont see vscode formatter settings to control end brace behavior.