Skip to content

Commit

Permalink
Simplify formatter disable setting
Browse files Browse the repository at this point in the history
We only need this one setting. I don't understand what exactly it is
doing. At least we no longer need all the other settings that come with
`defaultConfigs`.
  • Loading branch information
kiritsuku committed Dec 30, 2015
1 parent 54c356b commit b0b09a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object ScalariformBuild extends Build {
|Using 1.7 to build requires setting SBT to use JDK 1.7 or higher -- if SBT is
|booting on JDK 1.6, you will get a javax.swing related compilation error.""".stripMargin

lazy val commonSettings = Defaults.defaultConfigs ++ SbtScalariform.defaultScalariformSettings ++ sonatypeSettings ++ Seq(
lazy val commonSettings = inConfig(Test)(Defaults.testSettings) ++ SbtScalariform.defaultScalariformSettings ++ sonatypeSettings ++ Seq(
organization := "org.scalariform",
profileName := "org.scalariform",
version := "0.2.0-SNAPSHOT",
Expand Down

0 comments on commit b0b09a6

Please sign in to comment.