Each time I click Save
the entire file's formatting alternates between these two formats:
this.getObject()
.method()
.method();
this.method(arg1, arg2,
arg3, arg4);
and
this.getObject()
.method()
.method();
this.method(arg1, arg2,
arg3, arg4);
I want it to stick to the first format.
Check: Remove trailing whitespace / Radio: All lines
could be the culprit – Venenose