How come Visual Studio Code does not support C style formatting by default?

90 Views Asked by At

How come VSCode does not support C style formatting by default?

Meaning put curly braces on a new line instead of using same line.

For example:

int main()
{

}

instead of:

int main() {

}

I'd love to know why.

0

There are 0 best solutions below