-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scalafmt.conf
31 lines (28 loc) · 1007 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
version = 2.7.5
preset = default
maxColumn = 120
align.preset = more
align.stripMargin = true
align.multiline = false
align.openParenCallSite = false
align.openParenDefnSite = false
assumeStandardLibraryStripMargin = true
continuationIndent.callSite = 2
continuationIndent.ctorSite = 4
continuationIndent.defnSite = 2
optIn.configStyleArguments = true
rewrite.rules = [SortModifiers, SortImports]
docstrings.style = Asterisk
docstrings.oneline = keep
spaces.beforeContextBoundColon = "Never"
spaces.inImportCurlyBraces = true
spaces.afterKeywordBeforeParen = true
binPack.literalArgumentLists = true
project.excludeFilters = [
pegasus-app/src/main/scala/com/chatwork/pegasus/EitherComposer.scala
pegasus-generated/src/main/scala/
e2e-test/src/it/scala/com/chatwork/pegasus/e2e/AccountInfoMySQLTestSupport.scala # どうしようも無いえらー
]
danglingParentheses.ctrlSite = false
indentOperator.topLevelOnly = false
indentOperator.exclude = "^(&&|\\|\\||~)$"