mirror of https://github.com/sbt/sbt.git
19 lines
643 B
Plaintext
19 lines
643 B
Plaintext
maxColumn = 100
|
|
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 works around sequence wildcard (`_*`) turning into `_ *`
|
|
spaces.beforeSeqWildcard = true
|
|
|
|
# Vertical alignment only => for pattern matching
|
|
align.tokens.add = [
|
|
{ code = "=>", owner = "Case" }
|
|
]
|