forked from arkivanov/MVIKotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetekt.yml
40 lines (36 loc) · 775 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
complexity:
CyclomaticComplexMethod:
threshold: 15
ignoreSingleWhenExpression: true
ignoreSimpleWhenEntries: true
ignoreNestingFunctions: false
CognitiveComplexMethod:
active: true
threshold: 15
LongParameterList:
active: false
TooManyFunctions:
active: false
exceptions:
PrintStackTrace:
active: false
TooGenericExceptionCaught:
active: false
naming:
FunctionNaming:
excludes: ['**/test/**', '**/*Test/**']
ignoreAnnotated: [ 'Composable' ]
MemberNameEqualsClassName:
active: false
performance:
SpreadOperator:
active: false
style:
ForbiddenComment:
comments: ['FIXME:', 'STOPSHIP:']
MagicNumber:
active: false
MaxLineLength:
maxLineLength: 140
ReturnCount:
active: false