-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.scalafmt.conf
More file actions
17 lines (17 loc) · 843 Bytes
/
.scalafmt.conf
File metadata and controls
17 lines (17 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
preset = defaultWithAlign
danglingParentheses.preset = true
indentOperator.preset = spray
includeCurlyBraceInSelectChains = true
maxColumn = 120
rewrite.rules = [AvoidInfix, RedundantParens, SortImports, PreferCurlyFors]
rewrite.sortModifiers.order = [ "private", "protected", "final", "sealed", "abstract", "implicit", "override", "lazy" ]
spaces.inImportCurlyBraces = true
binPack.literalArgumentLists = false
indentOperator.exemptScope = all
docstrings.style = Asterisk
optIn.breakChainOnFirstMethodDot = false
align.openParenDefnSite = false
project.git = true
assumeStandardLibraryStripMargin = true
version = 3.6.1
runner.dialect = scala213