Currently if I write use the following builder class Intellij will indent the following way
SomeClass.create()
.someMethod()
.someOtherMethod();
What I would like it to do is indent like this:
SomeClass.create()
.someMethod()
.someOtherMethod();
Does anybody know how to set this up?
Produces the following when reformatting source: