I have a case class like this:
case class Foo(
one: String,
another: Int,
stuff: Boolean
)
Is there a setting in scalariform to get this? (aligned on the colon)
case class Foo(
one : String,
another: Int,
stuff : Boolean
)
I'm using sbt-scalariform with a setting setPreference(AlignParameters, true)