0

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)

Greg
  • 10,696
  • 22
  • 68
  • 98

1 Answers1

0

This is not currently supported. There are a number of feature requests related to enhanced alignment of parameters to class and method definitions.

jkinkead
  • 4,101
  • 21
  • 33