code formatter settings: I want comma at the front of new lines
I want the formatter to not mangle such declarations:
int
aValue = 1
, anotherOne = 2
, andSoOn = 3
;
this should also work with arguments:
foo.Bar(
aValue
, anotherOne
, andSoOn
);
currently, it will put the comma on a separated line such as
foo.Bar(
aValue
,
anotherOne
,
andSoOn
);
is it possible to setup the formatter to not fiddle with that, and ultimately to format long lines like this?
Thanks for your help
Please sign in to leave a comment.