-
Notifications
You must be signed in to change notification settings - Fork 2
/
.scalafmt.conf
74 lines (64 loc) · 1.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version = 3.5.9
runner.dialect = scala213
maxColumn = 120
trailingCommas = always
assumeStandardLibraryStripMargin = true
indent {
main = 2
significant = 2
callSite = 2
ctrlSite = 2
defnSite = 2
caseSite = 2
extendSite = 2
withSiteRelativeToExtends = 2
extraBeforeOpenParenDefnSite = 0
}
align {
preset = none
multiline = false
inInterpolation = false
stripMargin = true
}
newlines {
forceBeforeMultilineAssign = any
alwaysBeforeElseAfterCurlyIf = false
beforeCurlyLambdaParams = multilineWithCaseOnly
beforeTemplateBodyIfBreakInParentCtors = true
afterCurlyLambdaParams = never
implicitParamListModifierPrefer = before
avoidForSimpleOverflow = [tooLong, punct, slc]
sometimesBeforeColonInMethodReturnType = false
avoidInResultType = true
selectChains = unfold
}
spaces {
inImportCurlyBraces = true
inByNameTypes = false
afterSymbolicDefs = true
}
xmlLiterals {
assumeFormatted = true
}
includeCurlyBraceInSelectChains = true
includeNoParensInSelectChains = true
optIn {
breakChainOnFirstMethodDot = true
breaksInsideChains = false
annotationNewlines = false
}
rewrite {
rules = [RedundantBraces, SortModifiers, PreferCurlyFors, Imports]
imports.sort = ascii
imports.groups = [
["org.byrde\\..*"],
["com\\..*"],
["io\\..*"],
["cats\\..*"],
["sttp\\..*"],
["_"],
["java\\..*"],
["javax\\..*"],
["scala\\..*"],
]
}