forked from MinnDevelopment/jda-ktx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetekt.yml
42 lines (42 loc) · 789 Bytes
/
detekt.yml
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
output-reports:
active: true
exclude:
- TxtOutputReport
- XmlOutputReport
processors:
active: true
exclude: []
complexity:
LongParameterList:
active: false
naming:
FunctionNaming:
active: false
potential-bugs:
active: true
MapGetWithNotNullAssertionOperator:
active: true
UnnecessaryNotNullOperator:
active: true
UnnecessarySafeCall:
active: true
UnusedUnaryOperator:
active: true
ImplicitDefaultLocale:
active: true
WrongEqualsTypeParameter:
active: true
Deprecation:
active: true
IgnoredReturnValue:
restrictToAnnotatedMethods: false
active: true
MissingPackageDeclaration:
active: true
style:
ForbiddenMethodCall:
active: true
NoTabs:
active: true
TrailingWhitespace:
active: true