-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdetekt.yml
More file actions
46 lines (41 loc) · 785 Bytes
/
detekt.yml
File metadata and controls
46 lines (41 loc) · 785 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
42
43
44
45
46
build:
maxIssues: 0
style:
MagicNumber:
active: false
ForbiddenComment:
active: true
UnusedImports:
active: true
UnusedPrivateMember:
active: true
UnusedPrivateClass:
active: true
MaxLineLength:
active: false
WildcardImport:
active: true
ReturnCount:
active: false
naming:
FunctionNaming:
active: true
ignoreAnnotated: ['Composable']
complexity:
LongMethod:
active: true
threshold: 70
ignoreAnnotated: ['Composable']
TooManyFunctions:
active: false
CyclomaticComplexMethod:
ignoreAnnotated: ['Composable']
LongParameterList:
functionThreshold: 9
ignoreAnnotated: ['Composable']
potential-bugs:
UnsafeCast:
active: false
comments:
CommentOverPrivateFunction:
active: false