I'm looking at the options in IntelliJ IDEA 12 and I can't let this go. So please help me stop wasting time on it.
This is some code from my Build.scala:
val logging =
Seq(
"ch.qos.logback" % "logback-classic" % "1.0.13",
"org.slf4j" % "slf4j-api" % "1.7.5",
"com.weiglewilczek.slf4s" % "slf4s_2.9.1" % "1.0.7"
)
I'd like it to look like this:
val logging =
Seq(
"ch.qos.logback" % "logback-classic" % "1.0.13",
"org.slf4j" % "slf4j-api" % "1.7.5",
"com.weiglewilczek.slf4s" % "slf4s_2.9.1" % "1.0.7"
)
And I prefer create that automatically with the code formatter. In my (unreliable) memory I had this working in IntelliJ IDEA before, but I can't find which options to turn on.
Do you know where this option is hiding?