-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdetekt.yml
More file actions
46 lines (42 loc) · 875 Bytes
/
detekt.yml
File metadata and controls
46 lines (42 loc) · 875 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
style:
MagicNumber:
active: false
MaxLineLength:
active: true
maxLineLength: 170
UnusedPrivateMember:
active: true
UnusedPrivateProperty:
active: true
build:
maxIssues: 0
excludeCorrectable: true
config:
validation: true
warningsAsErrors: true
complexity:
active: true
LongMethod:
active: false
LongParameterList:
active: true
functionThreshold: 10
constructorThreshold: 10
ignoreDefaultParameters: true
ignoreDataClasses: true
ignoreAnnotatedParameter: [ ]
TooManyFunctions:
active: true
thresholdInFiles: 10
thresholdInClasses: 20
thresholdInInterfaces: 10
thresholdInObjects: 20
thresholdInEnums: 5
ignoreDeprecated: true
ignorePrivate: true
ignoreOverridden: false
performance:
SpreadOperator:
active: true
excludes:
- "**/DemoApplication.kt"