forked from krasa/EditorGroups
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdetekt-config.yml
More file actions
296 lines (287 loc) · 6.2 KB
/
detekt-config.yml
File metadata and controls
296 lines (287 loc) · 6.2 KB
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
292
293
294
295
296
# 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: 140
ClassName:
active: true
EnumWrapping:
active: true
FunctionName:
active: true
FunctionSignature:
active: false
maxLineLength: 140
indentSize: 2
Indentation:
active: true
indentSize: 2
MaximumLineLength:
active: true
maxLineLength: 140
MultiLineIfElse:
active: true
NoBlankLineInList:
active: true
NoEmptyFirstLineInMethodBlock:
active: true
NoMultipleSpaces:
active: false
NoWildcardImports:
active: false
ParameterListWrapping:
active: true
indentSize: 2
maxLineLength: 140
ParameterWrapping:
active: true
maxLineLength: 140
performance:
CouldBeSequence:
active: true
SpreadOperator:
active: false
UnnecessaryPartOfBinaryExpression:
active: true
style:
AlsoCouldBeApply:
active: true
BracesOnIfStatements:
active: true
singleLine: 'necessary'
multiLine: 'consistent'
BracesOnWhenStatements:
active: true
singleLine: 'necessary'
multiLine: 'necessary'
CanBeNonNullable:
active: true
ClassOrdering:
active: true
CollapsibleIfStatements:
active: true
DataClassContainsFunctions:
active: false
DataClassShouldBeImmutable:
active: false
DestructuringDeclarationWithTooManyEntries:
active: false
DoubleNegativeLambda:
active: true
EqualsOnSignatureLine:
active: true
ExplicitCollectionElementAccessMethod:
active: true
ExpressionBodySyntax:
active: true
LoopWithTooManyJumpStatements:
active: true
maxJumpCount: 3
MagicNumber:
active: true
ignorePropertyDeclaration: true
ignoreAnnotation: true
ignoreRanges: true
ignoreEnums: true
excludes:
- '**/*Theme*'
- '**/*Painter*'
- '**/build.gradle.kts'
MandatoryBracesLoops:
active: true
MaxChainedCallsOnSameLine:
active: true
maxChainedCalls: 2
MaxLineLength:
active: true
maxLineLength: 140
excludeCommentStatements: true
excludeRawStrings: true
MultilineLambdaItParameter:
active: true
NoTabs:
active: true
ObjectLiteralToLambda:
active: true
PreferToOverPairSyntax:
active: true
RedundantExplicitType:
active: true
RedundantHigherOrderMapUsage:
active: true
RedundantVisibilityModifierRule:
active: true
ReturnCount:
max: 6
excludeGuardClauses: true
SerialVersionUIDInSerializableClass:
active: false
SpacingBetweenPackageAndImports:
active: true
StringShouldBeRawString:
active: true
TrailingWhitespace:
active: true
TrimMultilineRawString:
active: true
UnderscoresInNumericLiterals:
active: true
UnnecessaryBackticks:
active: true
UnnecessaryBracesAroundTrailingLambda:
active: true
UnnecessaryInnerClass:
active: true
UnnecessaryLet:
active: true
UnnecessaryParentheses:
active: true
UntilInsteadOfRangeTo:
active: true
UnusedImports:
active: true
UseAnyOrNoneInsteadOfFind:
active: true
UseDataClass:
active: true
UseEmptyCounterpart:
active: true
UseIfEmptyOrIfBlank:
active: true
UseSumOfInsteadOfFlatMapSize:
active: true
WildcardImport:
active: false
comments:
AbsentOrWrongFileLicense:
active: false
DeprecatedBlockTag:
active: true
KDocReferencesNonPublicProperty:
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: false
LongMethod:
active: false
LongParameterList:
active: false
NamedArguments:
active: true
NestedScopeFunctions:
active: true
ReplaceSafeCallChainWithRun:
active: true
StringLiteralDuplication:
active: false
threshold: 3
ignoreAnnotation: true
excludeStringsWithLessThan5Characters: true
ignoreStringsRegex: $^
excludes:
- '**/test/**'
- '**/androidTest/**'
- '**/commonTest/**'
- '**/jvmTest/**'
- '**/jsTest/**'
- '**/iosTest/**'
- '**/build.gradle.kts'
TooManyFunctions:
active: false
naming:
FunctionMaxLength:
active: true
maximumFunctionNameLength: 36
excludes:
- '**/*Page*'
- '**/*Settings*'
FunctionMinLength:
active: true
minimumFunctionNameLength: 2
InvalidPackageDeclaration:
active: true
LambdaParameterNaming:
active: true
NoNameShadowing:
active: true
NonBooleanPropertyPrefixedWithIs:
active: true
VariableMaxLength:
active: true
potential-bugs:
CastNullableToNonNullableType:
active: true
CastToNullableType:
active: true
Deprecation:
active: true
DontDowncastCollectionTypes:
active: true
ElseCaseInsteadOfExhaustiveWhen:
active: true
HasPlatformType:
active: true
ImplicitUnitReturnType:
active: true
MissingPackageDeclaration:
active: true
excludes:
- '**/*.kts'
NullableToStringCall:
active: true
PropertyUsedBeforeDeclaration:
active: true