-
Notifications
You must be signed in to change notification settings - Fork 4
/
.scalafmt.conf
22 lines (21 loc) · 1.07 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
version = "2.4.2"
edition = 2019-10
align.openParenCallSite = false
align.tokens = ["%", "%%", {code = "=>", owner = "Case"}, {code = "=", owner = "(Enumerator.Val|Defn.(Va(l|r)|Def|Type))"}, ]
align.arrowEnumeratorGenerator = true
binPack.parentConstructors = false
danglingParentheses = true
maxColumn = 90
newlines.afterImplicitKWInVerticalMultiline = true
newlines.beforeImplicitKWInVerticalMultiline = true
project.excludeFilters = [ .scalafmt.conf ]
project.git = true
rewrite.rules = [PreferCurlyFors, RedundantBraces, RedundantParens, SortImports]
spaces.inImportCurlyBraces = true
style = defaultWithAlign
unindentTopLevelOperators = true
rewriteTokens {
"⇒" = "=>"
"→" = "->"
"←" = "<-"
}