-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scalafmt.conf
52 lines (51 loc) · 906 Bytes
/
.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
align = none
align.openParenDefnSite = true
align.openParenCallSite = true
binPack.literalArgumentLists = false
binPack.parentConstructors = true
docstrings = JavaDoc
maxColumn = 120
newlines.alwaysBeforeCurlyBraceLambdaParams = true
newlines.alwaysBeforeTopLevelStatements = true
optIn.breakChainOnFirstMethodDot = false
rewrite.redundantBraces.stringInterpolation = true
rewrite.rules = [
AvoidInfix,
// no import ordering https://github.com/scalameta/scalafmt/issues/722
PreferCurlyFors,
SortModifiers
]
rewrite.neverInfix.excludeFilters = [
until
to
by
eq
ne
"should.*"
"contain.*"
"must.*"
in
ignore
be
taggedAs
thrownBy
synchronized
have
when
size
only
noneOf
oneElementOf
noElementsOf
atLeastOneElementOf
atMostOneElementOf
allElementsOf
inOrderElementsOf
theSameElementsAs
behavior
of
a
theSameInstanceAs
message
startWith
]