IntelliJ formats my test code like this:
test("a configuration without classpath to analyze is not valid") {
Configuration(
None,
Seq(),
Seq(),
Map(),
Some(PrintConfiguration(print = Always("output")))
) should not be ('valid)
}
I hope we all agree that this is a rather stupid way to do this.
How can I configure IntelliJ in so that it moves Configuration
and everything belonging to it over to the left, two spaces indented relative to test
?
To clarify: most of the code gets indented properly, just code blocks in curly braces, that are parameters get aligne relative to the opening curly brace, not relative to the beginning of the function call.