-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
detekt-config.yml
97 lines (93 loc) · 2.21 KB
/
detekt-config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
complexity:
ComplexMethod:
active: true
ignoreSingleWhenExpression: true
LargeClass:
active: true
excludes: [ '**/test/**', '**/*.Test.kt', '**/*.Spec.kt' ]
MethodOverloading:
active: true
exceptions:
NotImplementedDeclaration:
active: true
InstanceOfCheckForException:
active: true
RethrowCaughtException:
active: true
ReturnFromFinally:
active: true
ThrowingExceptionFromFinally:
active: true
ThrowingExceptionsWithoutMessageOrCause:
active: true
ThrowingNewInstanceOfSameException:
active: true
formatting:
active: true
android: false
autoCorrect: true
AnnotationSpacing:
active: true
EnumEntryNameCase:
active: true
ImportOrdering:
active: true
Indentation:
active: true
MaximumLineLength:
active: false
NoEmptyFirstLineInMethodBlock:
active: true
ParameterListWrapping:
active: false
SpacingAroundAngleBrackets:
active: true
SpacingAroundDoubleColon:
active: true
SpacingAroundUnaryOperator:
active: true
SpacingBetweenDeclarationsWithAnnotations:
active: true
SpacingBetweenDeclarationsWithComments:
active: true
potential-bugs:
UnsafeCast:
active: true
excludes: [ '**/test/**', '**/*.Test.kt', '**/*.Spec.kt' ]
UselessPostfixExpression:
active: true
style:
ClassOrdering:
active: true
CollapsibleIfStatements:
active: true
ForbiddenComment:
active: true
values: [ 'TODO:', 'FIXME:', 'STOPSHIP:', '@author', '@requiresTypeResolution' ]
MaxLineLength:
active: true
maxLineLength: 160
excludes: [ '**/test/**', '**/*Test.kt', '**/*Spec.kt' ]
excludeCommentStatements: true
MagicNumber:
ignorePropertyDeclaration: true
ignoreAnnotation: true
ignoreEnums: true
ignoreNumbers: [ '-1', '0', '1', '2', '100', '1000' ]
excludes: [ '**/test/**', '**/*Test.kt', '**/*Spec.kt' ]
NestedClassesVisibility:
active: true
RedundantVisibilityModifierRule:
active: true
ReturnCount:
active: true
excludeGuardClauses: true
SpacingBetweenPackageAndImports:
active: true
UnusedPrivateMember:
active: true
allowedNames: '(_|ignored|expected)'
UseCheckOrError:
active: true
ThrowsCount:
active: false