-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scalafix.conf
42 lines (42 loc) · 1.15 KB
/
.scalafix.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
rules = [
DisableSyntax
ExplicitResultTypes
LeakingImplicitClassVal
NoAutoTupling
NoValInForComprehension
OrganizeImports
ProcedureSyntax
RedundantSyntax
RemoveUnused
TypelevelUnusedIO
TypelevelMapSequence
TypelevelAs
TypelevelUnusedShowInterpolator
TypelevelFs2SyncCompiler
TypelevelHttp4sLiteralsSyntax
]
DisableSyntax.noVars = true
DisableSyntax.noThrows = true
DisableSyntax.noNulls = true
DisableSyntax.noReturns = true
DisableSyntax.noSemicolons = true
DisableSyntax.noWhileLoops = true
DisableSyntax.noFinalize = true
DisableSyntax.noValPatterns = true
OrganizeImports.blankLines = Auto
OrganizeImports.coalesceToWildcardImportThreshold = 4
OrganizeImports.expandRelative = true
OrganizeImports.groupExplicitlyImportedImplicitsSeparately = false
OrganizeImports.groupedImports = AggressiveMerge
OrganizeImports.groups = [
"*"
"re:(javax?|scala)\\."
]
OrganizeImports.importSelectorsOrder = SymbolsFirst
OrganizeImports.importsOrder = Ascii
OrganizeImports.preset = DEFAULT
OrganizeImports.removeUnused = true
RemoveUnused.imports = false
RemoveUnused.locals = true
RemoveUnused.patternvars = true
RemoveUnused.privates = true