forked from scylladb/scylla-migrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scalafmt.conf
40 lines (31 loc) · 825 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
maxColumn = 100
continuationIndent {
callSite = 2
defnSite = 2
}
spaces {
inImportCurlyBraces = true
}
align {
arrowEnumeratorGenerator = true
openParenCallSite = false
tokens = [
{ code = "<-", owner = "Enumerator.Generator" }
{ code = "=", owner = "(Enumerator.Val|Term.Arg.Named)" }
{ code = "%", owner = "Term.ApplyInfix" }
{ code = "%%", owner = "Term.ApplyInfix" }
{ code = "=>", owner = "Case" }
{ code = "->", owner = "Term.Apply" }
{ code = ":=", owner = "Term.Apply" }
]
}
binPack {
parentConstructors = true
}
verticalMultilineAtDefinitionSite = false
newlines {
sometimesBeforeColonInMethodReturnType = true
afterImplicitKWInVerticalMultiline = true
}
assumeStandardLibraryStripMargin = true
rewrite.rules = [RedundantBraces, PreferCurlyFors, SortImports]