mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 09:52:09 +01:00
47 lines
783 B
Plaintext
47 lines
783 B
Plaintext
version = "2.7.5"
|
|
# See Documentation at https://scalameta.org/scalafmt/#Configuration
|
|
trailingCommas = never
|
|
maxColumn = 80
|
|
docstrings = ScalaDoc
|
|
continuationIndent {
|
|
callSite = 2
|
|
defnSite = 4
|
|
}
|
|
|
|
align = some
|
|
align {
|
|
openParenDefnSite = false
|
|
openParenCallSite = true
|
|
}
|
|
|
|
danglingParentheses {
|
|
callSite = false
|
|
defnSite = false
|
|
}
|
|
|
|
newlines {
|
|
alwaysBeforeTopLevelStatements = true
|
|
sometimesBeforeColonInMethodReturnType = false
|
|
alwaysBeforeCurlyBraceLambdaParams = false
|
|
}
|
|
|
|
assumeStandardLibraryStripMargin = true
|
|
|
|
rewrite.rules = [
|
|
SortModifiers,
|
|
RedundantParens,
|
|
SortImports
|
|
]
|
|
|
|
binPack.literalArgumentLists = true
|
|
|
|
project {
|
|
excludeFilters = [
|
|
.bloop,
|
|
.metals,
|
|
target
|
|
]
|
|
}
|
|
|
|
# Consider Rewrite Rules
|