I'm on Ubuntu. C++ in Visual Studio Code automatically lints like
if (condition == true)
{
DoStuff();
}
Instead I want to do :
if (condition == true) {
DoStuff();
}
How do I do that?
I've already installed the C/C++ extension from the marketplace.
See Question&Answers more detail:os