-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.scalafix.conf
More file actions
41 lines (35 loc) · 1.04 KB
/
.scalafix.conf
File metadata and controls
41 lines (35 loc) · 1.04 KB
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
rules = [
OrganizeImports,
OfflerGoodCodeSyntax,
OfflerGoodCodeSemantic
]
OrganizeImports {
coalesceToWildcardImportThreshold = 40
expandRelative = false
groupExplicitlyImportedImplicitsSeparately = false
groupedImports = Merge
groups = [
"java.io", "java.nio", "java.util", "java.math", "java.net",
"re:javax?\\.",
"scala.language", "scala.util", "scala.collection",
"scala.",
"reactivemongo.io.netty", "reactivemongo.api",
"org.specs2.",
"*",
]
importSelectorsOrder = SymbolsFirst
importsOrder = SymbolsFirst
removeUnused = false # TODO: True (not yet supported for Scala 3)
}
Offler {
# Enforce no default values in case class parameters.
caseClassNoDefaultValues = false
# Qualifier patterns excluded from postfix rewrite checks.
postfixExcludedQualifiers = []
# Import regex patterns to forbid.
forbiddenImports = []
# Fully-qualified apply-target regex patterns to forbid.
forbiddenApplies = []
# Minimum expression size requiring explicit type annotations.
noTypeBlockThreshold = 80
}