-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetekt.yml
44 lines (38 loc) · 842 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
41
42
43
44
build:
maxIssues: 0
complexity:
TooManyFunctions:
thresholdInFiles: 16
thresholdInClasses: 16
thresholdInInterfaces: 8
thresholdInObjects: 16
thresholdInEnums: 8
ignoreDeprecated: true
coroutines:
InjectDispatcher:
active: false
exceptions:
SwallowedException:
active: false
TooGenericExceptionCaught:
active: false
formatting:
CommentWrapping:
active: false
FinalNewline:
insertFinalNewLine: false
MaximumLineLength:
active: false # active in style rules
naming:
PackageNaming:
# Package names must be lowercase letters but may include numbers
packagePattern: '[a-z]+(\.[a-zA-Z][a-z0-9]*)*'
style:
LoopWithTooManyJumpStatements:
active: false
MaxLineLength:
maxLineLength: 120
NewLineAtEndOfFile:
active: false
ReturnCount:
active: false