generated from pervasive-cats/toys-store-bc-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scalafix.conf
54 lines (51 loc) · 1 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
43
44
45
46
47
48
49
50
51
52
53
54
rules = [
DisableSyntax,
NoAutoTupling,
NoValInForComprehension,
RedundantSyntax,
OrganizeImports,
LeakingImplicitClassVal,
EmptyCollectionsUnified,
UnnecessarySemicolon,
UnifiedArrow,
ZeroIndexToHead,
CheckIsEmpty,
NonCaseException,
SingleConditionMatch
]
ExplicitResultTypes {
memberVisibility = [
Public,
Protected,
Private
],
fatalWarnings = true
}
DisableSyntax {
noVars = true
noThrows = true
noNulls = true
noReturns = true
noWhileLoops = true
noAsInstanceOf = true
noIsInstanceOf = true
noXml = true
noDefaultArgs = true
noFinalVal = true
noFinalize = true
noValPatterns = true
noUniversalEquality = true
}
OrganizeImports {
removeUnused = false
blankLines = Auto
groups = [
"re:javax?\\."
"scala."
"re:^(?!io\\.github\\.pervasivecats)\\."
"io.github.pervasivecats"
]
groupedImports = Explode
importSelectorsOrder = SymbolsFirst
importsOrder = SymbolsFirst
}