forked from timer-machine/timer-machine-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetekt-config.yml
More file actions
41 lines (38 loc) · 729 Bytes
/
detekt-config.yml
File metadata and controls
41 lines (38 loc) · 729 Bytes
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
complexity:
ComplexCondition:
threshold: 6
CyclomaticComplexMethod:
active: false
LargeClass:
threshold: 2000
LongMethod:
active: false
LongParameterList:
functionThreshold: 22
constructorThreshold: 22
NestedBlockDepth:
active: false
TooManyFunctions:
active: false
exceptions:
TooGenericExceptionCaught:
active: false
TooGenericExceptionThrown:
active: false
naming:
FunctionNaming:
ignoreAnnotated:
- "Composable"
style:
LoopWithTooManyJumpStatements:
maxJumpCount: 2
MagicNumber:
active: false
ReturnCount:
active: false
ThrowsCount:
max: 10
UnnecessaryAbstractClass:
active: false
UnusedPrivateMember:
active: false