-
Notifications
You must be signed in to change notification settings - Fork 11
/
.scalafmt.conf
66 lines (53 loc) · 1.26 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
# This file has been automatically generated and should
# not be edited nor added to source control systems.
# To edit the original configurations go to
# https://github.com/alejandrohdezma/sbt-scalafmt-defaults/edit/master/.scalafmt.conf
version = 2.7.5
maxColumn = 120
newlines {
alwaysBeforeTopLevelStatements = true
sometimesBeforeColonInMethodReturnType = false
}
style = defaultWithAlign
assumeStandardLibraryStripMargin = true
align {
stripMargin = true
tokens.add = [
{
code = ":=", owner = "Term.ApplyInfix"
},
{
code = "+=", owner = "Term.ApplyInfix"
},
{
code = "++=", owner = "Term.ApplyInfix"
},
{
code = "--=", owner = "Term.ApplyInfix"
},
{
code = "-=", owner = "Term.ApplyInfix"
}
]
}
binPack {
literalArgumentLists = true
literalsIncludeSimpleExpr = true
literalsExclude = [ "Term.Name" ]
}
docstrings.style = "SpaceAsterisk"
docstrings.oneline = fold
rewrite {
rules = [
ExpandImportSelectors,
PreferCurlyFors
RedundantBraces,
RedundantParens,
SortModifiers
]
redundantBraces.maxLines = 1
redundantBraces.stringInterpolation = true
}
includeCurlyBraceInSelectChains = false
includeNoParensInSelectChains = false
optIn.blankLineBeforeDocstring = true