-
Notifications
You must be signed in to change notification settings - Fork 101
/
.scalafmt.conf
100 lines (83 loc) · 2.63 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
version = "3.8.3"
# Scala 2 with -Xsource:3 compiler option
runner.dialect = scala213source3
# Number of maximum characters in a column
maxColumn = 100
# Indentation used historically in the project
indent.defnSite = 2
# Ensure breaks on each select (.method1.method2...) unless all fit on a single line
newlines.selectChains = unfold
# Ensure newlines are added around top level body definitions when there are more than one statement
newlines.topLevelBodyIfMinStatements = [before,after]
newlines.topLevelBodyMinStatements = 2
# Allow line-overflow for comments and lines that would overflow even with a newline.
newlines.avoidForSimpleOverflow=[slc, tooLong]
# Ensure newlines around every statement except `case object` definitions
newlines.topLevelStatementBlankLines = [
{
blanks = 1,
minBreaks = 1,
regex = "^(?!((Term\\.Apply)|(Defn\\.Object)))"
}
]
# Ensure lines starting with the margin character `|` are indented differently
assumeStandardLibraryStripMargin = true
# Align everything that can be aligned
align.preset = most
align.multiline = false
align.tokens."+" = [
{
code = ":=", owner = "Term.ApplyInfix"
},
{
code = "+=", owner = "Term.ApplyInfix"
},
{
code = "++=", owner = "Term.ApplyInfix"
},
{
code = "--=", owner = "Term.ApplyInfix"
},
{
code = "-=", owner = "Term.ApplyInfix"
}
]
# Use ScalaDoc style and enable wrapping when reaching `maxColumn`
docstrings.style = "SpaceAsterisk"
docstrings.wrap = yes
docstrings.blankFirstLine = yes
docstrings.oneline = unfold
rewrite.rules = [
AvoidInfix, # Avoid infix calls (except for operators)
RedundantBraces,
RedundantParens, # Ensure redundant parentheses are removed
SortModifiers, # Ensure modifiers like `implicit` or `final` are sorted the same
PreferCurlyFors, # Replaces parentheses into curly braces in for comprehensions that contain multiple enumerator generators
Imports
]
# Ensure redundant braces are removed
rewrite.redundantBraces.maxLines = 1
rewrite.redundantBraces.stringInterpolation = true
# Ensure consistent ordering for imports
rewrite.imports.sort = original
rewrite.imports.groups = [
["java\\..*"],
["scala\\..*"],
["cats\\..*", "fs2\\..*"]
]
# Avoid ASCII tokens
rewriteTokens = {
"⇒": "=>"
"→": "->"
"←": "<-"
}
# Select followed by curly braces should not start a chain
includeCurlyBraceInSelectChains = false
# Ensure code blocks inside markdown files get formatted too
project.includePaths = ["glob:**.scala", "glob:**.sbt", "glob:**.sc", "glob:**.md"]
project.excludePaths = ["glob:**metals.sbt"]
fileOverride {
"glob:**/scala-2.12/**/*.scala" {
runner.dialect = scala212source3
}
}