This question may have been asked, but I could not find a suitable answer, so I'm posting this as a question here. The problem is that when I create a new case class, the indentation looks so wierd.
case class SomeCaseClass(
id: Int
)
I would however prefer it to be like this:
case class SomeCaseClass(
id: Int
)
I would just like to know which option in IntelliJ would allow me to get away with this awkward indentation.