-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.scalafmt.conf
More file actions
30 lines (22 loc) · 685 Bytes
/
Copy path.scalafmt.conf
File metadata and controls
30 lines (22 loc) · 685 Bytes
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
version = "3.11.5"
runner.dialect = scala3
runner.dialectOverride.allowSignificantIndentation = false
maxColumn = 150
newlines.implicitParamListModifierPrefer = before
continuationIndent.defnSite = 2
continuationIndent.extendSite = 2
indentOperator.excludeRegex = "^$"
align.preset = most
docstrings.style = SpaceAsterisk
docstrings.oneline = unfold
docstrings.blankFirstLine = yes
docstrings.wrap = no
rewrite.rules = [Imports, RedundantBraces, RedundantParens, SortModifiers, PreferCurlyFors]
rewrite.imports.groups = [
["javax?\\..*"],
["scala\\..*"],
[".*"],
["purelogic\\..*"],
]
rewrite.imports.sort = scalastyle
rewrite.redundantBraces.stringInterpolation = true