-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scalafmt.conf
60 lines (58 loc) · 1.13 KB
/
.scalafmt.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version = "2.6.4"
project {
includeFilters = [
".*\\.scala$"
".*\\.sbt$"
".*\\.sc$"
]
git = true
}
maxColumn = 100
docstrings {
style = Asterisk
oneline = fold
}
assumeStandardLibraryStripMargin = true
indentOperator {
preset = akka
}
indentYieldKeyword = false
continuationIndent {
extendSite = 2
withSiteRelativeToExtends = 3
}
align {
arrowEnumeratorGenerator = true
preset = more
}
newlines {
topLevelStatements = [ before ]
alwaysBeforeElseAfterCurlyIf = true
alwaysBeforeMultilineDef = false
afterCurlyLambda = squash
}
rewrite {
rules = [
RedundantBraces
RedundantParens
SortModifiers
PreferCurlyFors
SortImports
]
redundantBraces.stringInterpolation = false
redundantBraces.parensForOneLineApply = false
sortModifiers {
order = [ "private", "protected", "final", "sealed", "abstract", "implicit", "override", "lazy" ]
}
}
trailingCommas = never
spaces {
afterSymbolicDefs = true
afterTripleEquals = true
beforeContextBoundColon = IfMultipleBounds
inImportCurlyBraces = true
}
includeCurlyBraceInSelectChains = false
optIn {
blankLineBeforeDocstring = true
}