-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
detekt-config.yml
291 lines (282 loc) · 6.08 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# Default detekt configuration:
# https://github.com/detekt/detekt/blob/master/detekt-core/src/main/resources/default-detekt-config.yml
exceptions:
InstanceOfCheckForException:
active: true
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
NotImplementedDeclaration:
active: true
TooGenericExceptionCaught:
active: false
SwallowedException:
active: false
ignoredExceptionTypes:
- InterruptedException
- MalformedURLException
- NumberFormatException
- ParseException
allowedExceptionNameRegex: _|(ignore|expected).*
formatting:
autoCorrect: true
AnnotationOnSeparateLine:
active: true
AnnotationSpacing:
active: true
ArgumentListWrapping:
active: true
maxLineLength: 160
Indentation:
active: true
indentSize: 2
continuationIndentSize: 2
MultiLineIfElse:
active: true
NoEmptyFirstLineInMethodBlock:
active: true
NoMultipleSpaces:
active: false
NoWildcardImports:
active: false
excludes:
- '**/*Steps*'
PackageName:
active: true
ParameterListWrapping:
active: true
indentSize: 2
SpacingBetweenDeclarationsWithAnnotations:
active: true
SpacingBetweenDeclarationsWithComments:
active: true
MaximumLineLength:
maxLineLength: 160
performance:
SpreadOperator:
active: false
style:
SerialVersionUIDInSerializableClass:
active: false
ClassOrdering:
active: true
CollapsibleIfStatements:
active: true
DataClassContainsFunctions:
active: true
DataClassShouldBeImmutable:
active: true
EqualsOnSignatureLine:
active: true
ExplicitCollectionElementAccessMethod:
active: true
ExplicitItLambdaParameter:
active: true
ExpressionBodySyntax:
active: true
ForbiddenVoid:
active: true
ForbiddenComment:
active: true
values: []
MagicNumber:
active: true
ignorePropertyDeclaration: true
ignoreAnnotation: true
ignoreRanges: true
ignoreEnums: true
excludes:
- '**/*Theme*'
- '**/*Painter*'
MandatoryBracesIfStatements:
active: true
MandatoryBracesLoops:
active: true
MultilineLambdaItParameter:
active: true
NoTabs:
active: true
ObjectLiteralToLambda:
active: true
OptionalWhenBraces:
active: true
PreferToOverPairSyntax:
active: true
RedundantExplicitType:
active: true
RedundantHigherOrderMapUsage:
active: true
RedundantVisibilityModifierRule:
active: true
ReturnCount:
max: 4
excludeGuardClauses: true
SpacingBetweenPackageAndImports:
active: true
TrailingWhitespace:
active: true
UnderscoresInNumericLiterals:
active: true
UnnecessaryApply:
active: true
UnnecessaryFilter:
active: true
UnnecessaryLet:
active: true
UnnecessaryParentheses:
active: true
UntilInsteadOfRangeTo:
active: true
UnusedImports:
active: true
UseAnyOrNoneInsteadOfFind:
active: true
UseArrayLiteralsInAnnotations:
active: true
UseCheckNotNull:
active: true
UseCheckOrError:
active: true
UseDataClass:
active: true
UseEmptyCounterpart:
active: true
UseIfEmptyOrIfBlank:
active: true
UseIsNullOrEmpty:
active: true
UseOrEmpty:
active: true
UseRequire:
active: true
UseRequireNotNull:
active: true
comments:
AbsentOrWrongFileLicense:
active: true
DeprecatedBlockTag:
active: true
OutdatedDocumentation:
active: true
matchTypeParameters: true
matchDeclarationsOrder: true
UndocumentedPublicClass:
active: false
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
- '**/*Bundle*'
- '**/actions/**'
UndocumentedPublicFunction:
active: false
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
- '**/*Bundle*'
- '**/actions/**'
complexity:
LargeClass:
active: true
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
- '**/*Resources*'
NamedArguments:
active: true
ReplaceSafeCallChainWithRun:
active: true
StringLiteralDuplication:
active: true
threshold: 3
ignoreAnnotation: true
excludeStringsWithLessThan5Characters: true
ignoreStringsRegex: $^
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
- '**/build.gradle.kts'
TooManyFunctions:
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
thresholdInFiles: 11
thresholdInClasses: 11
thresholdInInterfaces: 11
thresholdInObjects: 11
thresholdInEnums: 11
ignoreDeprecated: false
ignorePrivate: true
ignoreOverridden: true
naming:
InvalidPackageDeclaration:
active: true
LambdaParameterNaming:
active: true
NoNameShadowing:
active: true
NonBooleanPropertyPrefixedWithIs:
active: true
FunctionMaxLength:
active: true
maximumFunctionNameLength: 36
excludes:
- '**/*Page*'
- '**/*Settings*'
FunctionMinLength:
active: true
minimumFunctionNameLength: 2
VariableMaxLength:
active: true
potential-bugs:
AvoidReferentialEquality:
active: true
CastToNullableType:
active: true
Deprecation:
active: true
DontDowncastCollectionTypes:
active: true
DoubleMutabilityForCollection:
active: true
HasPlatformType:
active: true
ImplicitUnitReturnType:
active: true
MapGetWithNotNullAssertionOperator:
active: true
MissingPackageDeclaration:
active: true
excludes:
- '**/*.kts'
MissingWhenCase:
active: true
NullableToStringCall:
active: true
UnreachableCatchBlock:
active: true
UnusedUnaryOperator:
active: true