-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The "implements" clause was not generated previously.
- Loading branch information
Showing
13 changed files
with
606 additions
and
316 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ target | |
/.settings | ||
/RUNNING_PID | ||
log | ||
metals.sbt |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version = 2.3.2 | ||
maxColumn = 140 | ||
project.git = true | ||
project.excludeFilters = [ /sbt-test/, /input_sources/, /contraband-scala/ ] | ||
|
||
# http://docs.scala-lang.org/style/scaladoc.html recommends the JavaDoc style. | ||
# scala/scala is written that way too https://github.com/scala/scala/blob/v2.12.2/src/library/scala/Predef.scala | ||
docstrings = JavaDoc | ||
|
||
# This also seems more idiomatic to include whitespace in import x.{ yyy } | ||
spaces.inImportCurlyBraces = true | ||
|
||
# This is more idiomatic Scala. | ||
# http://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments | ||
align.openParenCallSite = false | ||
align.openParenDefnSite = false | ||
|
||
# For better code clarity | ||
danglingParentheses = true | ||
|
||
trailingCommas = preserve | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
eed3si9n
Author
Member
|
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
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
Oops, something went wrong.
Did you forget add
sbt-scalafmt
plugin inplugins.sbt
? 👀