It's stupid, but when I have something like this
SomethingStupid.Whatever(string a, string b, string c);
And then I break them like this:
SomethingStupid.Whatever(string a,
string b,
string c);
My code cleanup moves them to this position when I would like to see them here:
SomethingStupid.Whatever(string a,
string b,
string c);
In my life I can’t understand where this installation exists, any ideas?
source
share