-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.scalafmt.conf
More file actions
46 lines (39 loc) · 747 Bytes
/
.scalafmt.conf
File metadata and controls
46 lines (39 loc) · 747 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version = 3.8.3
runner.dialect = scala3
preset = default
maxColumn = 100
docstrings.style = SpaceAsterisk
indent.main = 2
optIn {
breakChainOnFirstMethodDot = true
annotationNewlines = false
configStyleArguments = true
}
align {
openParenDefnSite = false
}
indent.ctorSite = 2
indent.defnSite = 2
// Configure which source files should be formatted in this project.
project {
git = true
includeFilters = [
".*\\.scala$"
".*\\.sbt$"
]
excludeFilters = []
}
fileOverride {
"glob:**.sbt" {
runner.dialect = scala212source3
}
"glob:**/project/plugins.sbt" {
runner.dialect = scala212source3
newlines.topLevelStatementBlankLines = [
{
blanks = 1,
minBreaks = 0
}
]
}
}