-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetekt-config.yml
78 lines (72 loc) · 1.63 KB
/
detekt-config.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
complexity:
ComplexCondition:
active: false
CyclomaticComplexMethod:
active: false
LargeClass:
excludes: '**/src/test/**/*.kt'
LongMethod:
active: false
LongParameterList:
active: false
TooManyFunctions:
active: false
empty-blocks:
# Flags overridden functions
EmptyFunctionBlock:
active: false
exceptions:
SwallowedException:
excludes: '**/src/test/**/*.kt'
TooGenericExceptionCaught:
active: false
TooGenericExceptionThrown:
active: false
naming:
MatchingDeclarationName:
active: false
performance:
active: false
style:
DestructuringDeclarationWithTooManyEntries:
active: true
excludes: '**/src/test/**/*.kt'
DoubleNegativeLambda:
active: true
ExpressionBodySyntax:
active: true
ForbiddenAnnotation:
active: true
MagicNumber:
active: false
MaxLineLength:
active: false
MultilineLambdaItParameter:
active: true
excludes: '**/src/test/**/*.kt'
NewLineAtEndOfFile:
active: false
ReturnCount:
active: false
UnnecessaryBracesAroundTrailingLambda:
active: true
UnusedImports:
active: true
UseLet:
active: true
potential-bugs:
CastNullableToNonNullableType:
active: true
excludes: '**/src/test/**/*.kt'
MissingPackageDeclaration:
active: true
excludes:
- '**/*.kts'
PropertyUsedBeforeDeclaration:
active: true
# Temporarily disable due to false positives: https://github.com/detekt/detekt/issues/6129
UnreachableCode:
active: false
# Disable until we've resolved, got https://trello.com/c/pJKhQth6/112-remove-instances-of for it
UnsafeCallOnNullableType:
active: false