-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy path.scalafmt.conf
63 lines (57 loc) · 960 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
53
54
55
56
57
58
59
60
61
62
63
version = "3.9.4"
assumeStandardLibraryStripMargin = true
align {
preset = none
stripMargin = true
}
// Docstring wrapping breaks doctests
docstrings {
wrap = false
style = Asterisk
}
project {
git = true
excludeFilters = [
"LinesSuite.scala"
]
layout = StandardConvention
}
runner.dialect = scala212
newlines {
avoidForSimpleOverflow = all
inInterpolation = avoid
source = fold
}
rewrite {
rules = [
AvoidInfix,
Imports,
RedundantBraces,
RedundantParens,
SortModifiers,
]
imports {
expand = true
sort = ascii
groups = [
["munit\\..*"],
["sbt\\..*"],
["java.?\\..*"],
["scala\\..*"],
["org\\..*"],
["com\\..*"],
]
}
redundantBraces {
preset = all
oneStatApply {
parensMaxSpan = 300
bracesMinSpan = 300
}
}
redundantParens {
preset = all
}
sortModifiers.preset = styleGuide
trailingCommas.style = multiple
}