Problem Description
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.
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?