36 lines
1.2 KiB
Scala
36 lines
1.2 KiB
Scala
|
|
package akka
|
||
|
|
|
||
|
|
import sbt._
|
||
|
|
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm
|
||
|
|
import com.typesafe.sbt.SbtScalariform
|
||
|
|
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
|
||
|
|
|
||
|
|
object Formatting {
|
||
|
|
lazy val formatSettings = SbtScalariform.scalariformSettings ++ Seq(
|
||
|
|
ScalariformKeys.preferences in Compile := formattingPreferences,
|
||
|
|
ScalariformKeys.preferences in Test := formattingPreferences
|
||
|
|
)
|
||
|
|
|
||
|
|
lazy val docFormatSettings = SbtScalariform.scalariformSettings ++ Seq(
|
||
|
|
ScalariformKeys.preferences in Compile := docFormattingPreferences,
|
||
|
|
ScalariformKeys.preferences in Test := docFormattingPreferences,
|
||
|
|
ScalariformKeys.preferences in MultiJvm := docFormattingPreferences
|
||
|
|
)
|
||
|
|
|
||
|
|
def formattingPreferences = {
|
||
|
|
import scalariform.formatter.preferences._
|
||
|
|
FormattingPreferences()
|
||
|
|
.setPreference(RewriteArrowSymbols, true)
|
||
|
|
.setPreference(AlignParameters, true)
|
||
|
|
.setPreference(AlignSingleLineCaseStatements, true)
|
||
|
|
}
|
||
|
|
|
||
|
|
def docFormattingPreferences = {
|
||
|
|
import scalariform.formatter.preferences._
|
||
|
|
FormattingPreferences()
|
||
|
|
.setPreference(RewriteArrowSymbols, false)
|
||
|
|
.setPreference(AlignParameters, true)
|
||
|
|
.setPreference(AlignSingleLineCaseStatements, true)
|
||
|
|
}
|
||
|
|
}
|