Our coding convention is the following:
void foo()
{
if (true)
{
bar(arg1, arg2,
arg3, arg4);
}
}
With indent brace set, VS will do
void foo()
{
if (true)
{
bar(arg1, arg2,
arg3, arg4);
}
}
I had to format things manually. When I copy and paste, I do NOT want it to automatically reformat.
I don't see the option to turn that off. Anyone?