-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix homepage and scm urls in build.sbt. Fix scalariform deprecation.
- Loading branch information
1 parent
88c67a5
commit 3249fc1
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import com.typesafe.sbt.SbtScalariform.ScalariformKeys | ||
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DoubleIndentClassDeclaration} | ||
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DoubleIndentConstructorArguments} | ||
|
||
ScalariformKeys.preferences := ScalariformKeys.preferences.value | ||
.setPreference(AlignSingleLineCaseStatements, true) | ||
.setPreference(AlignSingleLineCaseStatements.MaxArrowIndent, 100) | ||
.setPreference(DoubleIndentClassDeclaration, true) | ||
.setPreference(DoubleIndentConstructorArguments, true) |