@datadog/mobile-react-native-webview 2.12.1 → 2.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +6 -1
- package/android/detekt.yml +236 -87
- package/package.json +2 -2
package/android/build.gradle
CHANGED
|
@@ -16,7 +16,7 @@ buildscript {
|
|
|
16
16
|
// noinspection DifferentKotlinGradleVersion
|
|
17
17
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
18
18
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.5.1"
|
|
19
|
-
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.
|
|
19
|
+
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.8"
|
|
20
20
|
classpath 'com.github.bjoernq:unmockplugin:0.7.9'
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -94,6 +94,7 @@ def getExtOrIntegerDefault(name) {
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
android {
|
|
97
|
+
compileSdk getExtOrIntegerDefault('compileSdkVersion')
|
|
97
98
|
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
|
98
99
|
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
|
99
100
|
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
|
|
@@ -207,6 +208,10 @@ dependencies {
|
|
|
207
208
|
testImplementation "com.github.xgouchet.Elmyr:jvm:1.3.1"
|
|
208
209
|
testImplementation "org.mockito.kotlin:mockito-kotlin:5.1.0"
|
|
209
210
|
testImplementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
211
|
+
|
|
212
|
+
detektPlugins "io.gitlab.arturbosch.detekt:detekt-formatting:1.23.8"
|
|
213
|
+
detektPlugins "io.gitlab.arturbosch.detekt:detekt-rules-libraries:1.23.8"
|
|
214
|
+
|
|
210
215
|
unmock 'org.robolectric:android-all:4.4_r1-robolectric-r2'
|
|
211
216
|
}
|
|
212
217
|
|
package/android/detekt.yml
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
build:
|
|
2
2
|
maxIssues: 0
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
# comments: 1
|
|
3
|
+
|
|
4
|
+
libraries:
|
|
5
|
+
LibraryCodeMustSpecifyReturnType:
|
|
6
|
+
active: true
|
|
8
7
|
|
|
9
8
|
processors:
|
|
10
9
|
active: true
|
|
11
|
-
exclude:
|
|
10
|
+
exclude: []
|
|
12
11
|
# - 'DetektProgressListener'
|
|
13
12
|
# - 'FunctionCountProcessor'
|
|
14
13
|
# - 'PropertyCountProcessor'
|
|
@@ -23,7 +22,7 @@ console-reports:
|
|
|
23
22
|
# - 'ComplexityReport'
|
|
24
23
|
# - 'NotificationReport'
|
|
25
24
|
# - 'FindingsReport'
|
|
26
|
-
-
|
|
25
|
+
- "FileBasedFindingsReport"
|
|
27
26
|
# - 'BuildFailureReport'
|
|
28
27
|
|
|
29
28
|
comments:
|
|
@@ -37,17 +36,38 @@ comments:
|
|
|
37
36
|
endOfSentenceFormat: ([.?!][ \t\n\r\f<])|([.?!:]$)
|
|
38
37
|
UndocumentedPublicClass:
|
|
39
38
|
active: true
|
|
40
|
-
excludes:
|
|
39
|
+
excludes:
|
|
40
|
+
[
|
|
41
|
+
"**/test/**",
|
|
42
|
+
"**/androidTest/**",
|
|
43
|
+
"**/*.Test.kt",
|
|
44
|
+
"**/*.Spec.kt",
|
|
45
|
+
"**/*.Spek.kt",
|
|
46
|
+
]
|
|
41
47
|
searchInNestedClass: true
|
|
42
48
|
searchInInnerClass: true
|
|
43
49
|
searchInInnerObject: true
|
|
44
50
|
searchInInnerInterface: true
|
|
45
51
|
UndocumentedPublicFunction:
|
|
46
52
|
active: true
|
|
47
|
-
excludes:
|
|
53
|
+
excludes:
|
|
54
|
+
[
|
|
55
|
+
"**/test/**",
|
|
56
|
+
"**/androidTest/**",
|
|
57
|
+
"**/*.Test.kt",
|
|
58
|
+
"**/*.Spec.kt",
|
|
59
|
+
"**/*.Spek.kt",
|
|
60
|
+
]
|
|
48
61
|
UndocumentedPublicProperty:
|
|
49
62
|
active: true
|
|
50
|
-
excludes:
|
|
63
|
+
excludes:
|
|
64
|
+
[
|
|
65
|
+
"**/test/**",
|
|
66
|
+
"**/androidTest/**",
|
|
67
|
+
"**/*.Test.kt",
|
|
68
|
+
"**/*.Spec.kt",
|
|
69
|
+
"**/*.Spek.kt",
|
|
70
|
+
]
|
|
51
71
|
|
|
52
72
|
complexity:
|
|
53
73
|
active: true
|
|
@@ -58,14 +78,14 @@ complexity:
|
|
|
58
78
|
active: true
|
|
59
79
|
threshold: 10
|
|
60
80
|
includeStaticDeclarations: false
|
|
61
|
-
|
|
81
|
+
CyclomaticComplexMethod:
|
|
62
82
|
active: true
|
|
63
83
|
threshold: 10
|
|
64
84
|
ignoreSingleWhenExpression: true
|
|
65
85
|
ignoreSimpleWhenEntries: true
|
|
66
86
|
LabeledExpression:
|
|
67
87
|
active: true
|
|
68
|
-
ignoredLabels:
|
|
88
|
+
ignoredLabels: []
|
|
69
89
|
LargeClass:
|
|
70
90
|
active: true
|
|
71
91
|
threshold: 600
|
|
@@ -74,7 +94,8 @@ complexity:
|
|
|
74
94
|
threshold: 60
|
|
75
95
|
LongParameterList:
|
|
76
96
|
active: true
|
|
77
|
-
|
|
97
|
+
functionThreshold: 6
|
|
98
|
+
constructorThreshold: 6
|
|
78
99
|
ignoreDefaultParameters: true
|
|
79
100
|
MethodOverloading:
|
|
80
101
|
active: true
|
|
@@ -84,14 +105,24 @@ complexity:
|
|
|
84
105
|
threshold: 4
|
|
85
106
|
StringLiteralDuplication:
|
|
86
107
|
active: true
|
|
87
|
-
excludes:
|
|
108
|
+
excludes:
|
|
109
|
+
- "**/test/**"
|
|
110
|
+
- "**/androidTest/**"
|
|
111
|
+
- "**/*.Test.kt"
|
|
112
|
+
- "**/*.Spec.kt"
|
|
113
|
+
- "**/*.Spek.kt"
|
|
88
114
|
threshold: 3
|
|
89
115
|
ignoreAnnotation: true
|
|
90
116
|
excludeStringsWithLessThan5Characters: true
|
|
91
|
-
ignoreStringsRegex:
|
|
117
|
+
ignoreStringsRegex: "$^"
|
|
92
118
|
TooManyFunctions:
|
|
93
119
|
active: true
|
|
94
|
-
excludes:
|
|
120
|
+
excludes:
|
|
121
|
+
- "**/test/**"
|
|
122
|
+
- "**/androidTest/**"
|
|
123
|
+
- "**/*.Test.kt"
|
|
124
|
+
- "**/*.Spec.kt"
|
|
125
|
+
- "**/*.Spek.kt"
|
|
95
126
|
thresholdInFiles: 11
|
|
96
127
|
thresholdInClasses: 11
|
|
97
128
|
thresholdInInterfaces: 11
|
|
@@ -99,7 +130,6 @@ complexity:
|
|
|
99
130
|
thresholdInEnums: 11
|
|
100
131
|
ignoreDeprecated: true
|
|
101
132
|
ignorePrivate: true
|
|
102
|
-
ignoreOverridden: true
|
|
103
133
|
|
|
104
134
|
empty-blocks:
|
|
105
135
|
active: true
|
|
@@ -138,10 +168,19 @@ exceptions:
|
|
|
138
168
|
active: true
|
|
139
169
|
ExceptionRaisedInUnexpectedLocation:
|
|
140
170
|
active: true
|
|
141
|
-
methodNames:
|
|
171
|
+
methodNames:
|
|
172
|
+
- toString
|
|
173
|
+
- hashCode
|
|
174
|
+
- equals
|
|
175
|
+
- finalize
|
|
142
176
|
InstanceOfCheckForException:
|
|
143
177
|
active: true
|
|
144
|
-
excludes:
|
|
178
|
+
excludes:
|
|
179
|
+
- "**/test/**"
|
|
180
|
+
- "**/androidTest/**"
|
|
181
|
+
- "**/*.Test.kt"
|
|
182
|
+
- "**/*.Spec.kt"
|
|
183
|
+
- "**/*.Spek.kt"
|
|
145
184
|
NotImplementedDeclaration:
|
|
146
185
|
active: true
|
|
147
186
|
PrintStackTrace:
|
|
@@ -153,7 +192,11 @@ exceptions:
|
|
|
153
192
|
ignoreLabeled: true
|
|
154
193
|
SwallowedException:
|
|
155
194
|
active: true
|
|
156
|
-
ignoredExceptionTypes:
|
|
195
|
+
ignoredExceptionTypes:
|
|
196
|
+
- InterruptedException
|
|
197
|
+
- NumberFormatException
|
|
198
|
+
- ParseException
|
|
199
|
+
- MalformedURLException
|
|
157
200
|
allowedExceptionNameRegex: "^(_|(ignore|expected).*)"
|
|
158
201
|
ThrowingExceptionFromFinally:
|
|
159
202
|
active: true
|
|
@@ -161,12 +204,20 @@ exceptions:
|
|
|
161
204
|
active: true
|
|
162
205
|
ThrowingExceptionsWithoutMessageOrCause:
|
|
163
206
|
active: true
|
|
164
|
-
exceptions:
|
|
207
|
+
exceptions:
|
|
208
|
+
- IllegalArgumentException
|
|
209
|
+
- IllegalStateException
|
|
210
|
+
- IOException
|
|
165
211
|
ThrowingNewInstanceOfSameException:
|
|
166
212
|
active: true
|
|
167
213
|
TooGenericExceptionCaught:
|
|
168
214
|
active: true
|
|
169
|
-
excludes:
|
|
215
|
+
excludes:
|
|
216
|
+
- "**/test/**"
|
|
217
|
+
- "**/androidTest/**"
|
|
218
|
+
- "**/*.Test.kt"
|
|
219
|
+
- "**/*.Spec.kt"
|
|
220
|
+
- "**/*.Spek.kt"
|
|
170
221
|
exceptionNames:
|
|
171
222
|
- ArrayIndexOutOfBoundsException
|
|
172
223
|
- Error
|
|
@@ -210,7 +261,6 @@ formatting:
|
|
|
210
261
|
active: true
|
|
211
262
|
autoCorrect: true
|
|
212
263
|
indentSize: 4
|
|
213
|
-
continuationIndentSize: 4
|
|
214
264
|
MaximumLineLength:
|
|
215
265
|
active: true
|
|
216
266
|
maxLineLength: 120
|
|
@@ -292,45 +342,85 @@ naming:
|
|
|
292
342
|
active: true
|
|
293
343
|
ClassNaming:
|
|
294
344
|
active: true
|
|
295
|
-
excludes:
|
|
296
|
-
|
|
345
|
+
excludes:
|
|
346
|
+
- "**/test/**"
|
|
347
|
+
- "**/androidTest/**"
|
|
348
|
+
- "**/*.Test.kt"
|
|
349
|
+
- "**/*.Spec.kt"
|
|
350
|
+
- "**/*.Spek.kt"
|
|
351
|
+
classPattern: "[A-Z$][a-zA-Z0-9$]*"
|
|
297
352
|
ConstructorParameterNaming:
|
|
298
353
|
active: true
|
|
299
|
-
excludes:
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
354
|
+
excludes:
|
|
355
|
+
- "**/test/**"
|
|
356
|
+
- "**/androidTest/**"
|
|
357
|
+
- "**/*.Test.kt"
|
|
358
|
+
- "**/*.Spec.kt"
|
|
359
|
+
- "**/*.Spek.kt"
|
|
360
|
+
parameterPattern: "[a-z][A-Za-z0-9]*"
|
|
361
|
+
privateParameterPattern: "[a-z][A-Za-z0-9]*"
|
|
362
|
+
excludeClassPattern: "$^"
|
|
303
363
|
EnumNaming:
|
|
304
364
|
active: true
|
|
305
|
-
excludes:
|
|
306
|
-
|
|
365
|
+
excludes:
|
|
366
|
+
- "**/test/**"
|
|
367
|
+
- "**/androidTest/**"
|
|
368
|
+
- "**/*.Test.kt"
|
|
369
|
+
- "**/*.Spec.kt"
|
|
370
|
+
- "**/*.Spek.kt"
|
|
371
|
+
enumEntryPattern: "^[A-Z][_a-zA-Z0-9]*"
|
|
307
372
|
ForbiddenClassName:
|
|
308
373
|
active: true
|
|
309
|
-
excludes:
|
|
310
|
-
|
|
374
|
+
excludes:
|
|
375
|
+
- "**/test/**"
|
|
376
|
+
- "**/androidTest/**"
|
|
377
|
+
- "**/*.Test.kt"
|
|
378
|
+
- "**/*.Spec.kt"
|
|
379
|
+
- "**/*.Spek.kt"
|
|
380
|
+
forbiddenName: []
|
|
311
381
|
FunctionMaxLength:
|
|
312
382
|
active: true
|
|
313
|
-
excludes:
|
|
383
|
+
excludes:
|
|
384
|
+
- "**/test/**"
|
|
385
|
+
- "**/androidTest/**"
|
|
386
|
+
- "**/*.Test.kt"
|
|
387
|
+
- "**/*.Spec.kt"
|
|
388
|
+
- "**/*.Spek.kt"
|
|
314
389
|
maximumFunctionNameLength: 30
|
|
315
390
|
FunctionMinLength:
|
|
316
391
|
active: true
|
|
317
|
-
excludes:
|
|
392
|
+
excludes:
|
|
393
|
+
- "**/test/**"
|
|
394
|
+
- "**/androidTest/**"
|
|
395
|
+
- "**/*.Test.kt"
|
|
396
|
+
- "**/*.Spec.kt"
|
|
397
|
+
- "**/*.Spek.kt"
|
|
318
398
|
minimumFunctionNameLength: 3
|
|
319
399
|
FunctionNaming:
|
|
320
400
|
active: true
|
|
321
|
-
excludes:
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
401
|
+
excludes:
|
|
402
|
+
- "**/test/**"
|
|
403
|
+
- "**/androidTest/**"
|
|
404
|
+
- "**/*.Test.kt"
|
|
405
|
+
- "**/*.Spec.kt"
|
|
406
|
+
- "**/*.Spek.kt"
|
|
407
|
+
functionPattern: "^([a-z$][a-zA-Z$0-9]*)|(`.*`)$"
|
|
408
|
+
excludeClassPattern: "$^"
|
|
409
|
+
|
|
325
410
|
FunctionParameterNaming:
|
|
326
411
|
active: true
|
|
327
|
-
excludes:
|
|
328
|
-
|
|
329
|
-
|
|
412
|
+
excludes:
|
|
413
|
+
- "**/test/**"
|
|
414
|
+
- "**/androidTest/**"
|
|
415
|
+
- "**/*.Test.kt"
|
|
416
|
+
- "**/*.Spec.kt"
|
|
417
|
+
- "**/*.Spek.kt"
|
|
418
|
+
parameterPattern: "[a-z][A-Za-z0-9]*"
|
|
419
|
+
excludeClassPattern: "$^"
|
|
330
420
|
ignoreOverridden: true
|
|
331
421
|
InvalidPackageDeclaration:
|
|
332
422
|
active: true
|
|
333
|
-
rootPackage:
|
|
423
|
+
rootPackage: ""
|
|
334
424
|
MatchingDeclarationName:
|
|
335
425
|
active: true
|
|
336
426
|
MemberNameEqualsClassName:
|
|
@@ -338,35 +428,64 @@ naming:
|
|
|
338
428
|
ignoreOverridden: true
|
|
339
429
|
ObjectPropertyNaming:
|
|
340
430
|
active: true
|
|
341
|
-
excludes:
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
431
|
+
excludes:
|
|
432
|
+
- "**/test/**"
|
|
433
|
+
- "**/androidTest/**"
|
|
434
|
+
- "**/*.Test.kt"
|
|
435
|
+
- "**/*.Spec.kt"
|
|
436
|
+
- "**/*.Spek.kt"
|
|
437
|
+
constantPattern: "[A-Za-z][_A-Za-z0-9]*"
|
|
438
|
+
propertyPattern: "[A-Za-z][_A-Za-z0-9]*"
|
|
439
|
+
privatePropertyPattern: "(_)?[A-Za-z][_A-Za-z0-9]*"
|
|
345
440
|
PackageNaming:
|
|
346
441
|
active: true
|
|
347
|
-
excludes:
|
|
442
|
+
excludes:
|
|
443
|
+
- "**/test/**"
|
|
444
|
+
- "**/androidTest/**"
|
|
445
|
+
- "**/*.Test.kt"
|
|
446
|
+
- "**/*.Spec.kt"
|
|
447
|
+
- "**/*.Spek.kt"
|
|
348
448
|
packagePattern: '^[a-z]+(\.[a-z][A-Za-z0-9]*)*$'
|
|
349
449
|
TopLevelPropertyNaming:
|
|
350
450
|
active: true
|
|
351
|
-
excludes:
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
451
|
+
excludes:
|
|
452
|
+
- "**/test/**"
|
|
453
|
+
- "**/androidTest/**"
|
|
454
|
+
- "**/*.Test.kt"
|
|
455
|
+
- "**/*.Spec.kt"
|
|
456
|
+
- "**/*.Spek.kt"
|
|
457
|
+
constantPattern: "[A-Z][_A-Z0-9]*"
|
|
458
|
+
propertyPattern: "[A-Za-z][_A-Za-z0-9]*"
|
|
459
|
+
privatePropertyPattern: "_?[A-Za-z][_A-Za-z0-9]*"
|
|
355
460
|
VariableMaxLength:
|
|
356
461
|
active: true
|
|
357
|
-
excludes:
|
|
462
|
+
excludes:
|
|
463
|
+
- "**/test/**"
|
|
464
|
+
- "**/androidTest/**"
|
|
465
|
+
- "**/*.Test.kt"
|
|
466
|
+
- "**/*.Spec.kt"
|
|
467
|
+
- "**/*.Spek.kt"
|
|
358
468
|
maximumVariableNameLength: 64
|
|
359
469
|
VariableMinLength:
|
|
360
470
|
active: true
|
|
361
|
-
excludes:
|
|
471
|
+
excludes:
|
|
472
|
+
- "**/test/**"
|
|
473
|
+
- "**/androidTest/**"
|
|
474
|
+
- "**/*.Test.kt"
|
|
475
|
+
- "**/*.Spec.kt"
|
|
476
|
+
- "**/*.Spek.kt"
|
|
362
477
|
minimumVariableNameLength: 1
|
|
363
478
|
VariableNaming:
|
|
364
479
|
active: true
|
|
365
|
-
excludes:
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
480
|
+
excludes:
|
|
481
|
+
- "**/test/**"
|
|
482
|
+
- "**/androidTest/**"
|
|
483
|
+
- "**/*.Test.kt"
|
|
484
|
+
- "**/*.Spec.kt"
|
|
485
|
+
- "**/*.Spek.kt"
|
|
486
|
+
variablePattern: "[a-z][A-Za-z0-9]*"
|
|
487
|
+
privateVariablePattern: "(_)?[a-z][A-Za-z0-9]*"
|
|
488
|
+
excludeClassPattern: "$^"
|
|
370
489
|
|
|
371
490
|
performance:
|
|
372
491
|
active: true
|
|
@@ -374,10 +493,20 @@ performance:
|
|
|
374
493
|
active: true
|
|
375
494
|
ForEachOnRange:
|
|
376
495
|
active: true
|
|
377
|
-
excludes:
|
|
496
|
+
excludes:
|
|
497
|
+
- "**/test/**"
|
|
498
|
+
- "**/androidTest/**"
|
|
499
|
+
- "**/*.Test.kt"
|
|
500
|
+
- "**/*.Spec.kt"
|
|
501
|
+
- "**/*.Spek.kt"
|
|
378
502
|
SpreadOperator:
|
|
379
503
|
active: true
|
|
380
|
-
excludes:
|
|
504
|
+
excludes:
|
|
505
|
+
- "**/test/**"
|
|
506
|
+
- "**/androidTest/**"
|
|
507
|
+
- "**/*.Test.kt"
|
|
508
|
+
- "**/*.Spec.kt"
|
|
509
|
+
- "**/*.Spek.kt"
|
|
381
510
|
UnnecessaryTemporaryInstantiation:
|
|
382
511
|
active: true
|
|
383
512
|
|
|
@@ -385,8 +514,6 @@ potential-bugs:
|
|
|
385
514
|
active: true
|
|
386
515
|
Deprecation:
|
|
387
516
|
active: true
|
|
388
|
-
DuplicateCaseInWhenExpression:
|
|
389
|
-
active: true
|
|
390
517
|
EqualsAlwaysReturnsTrueOrFalse:
|
|
391
518
|
active: true
|
|
392
519
|
EqualsWithHashCodeExist:
|
|
@@ -403,13 +530,14 @@ potential-bugs:
|
|
|
403
530
|
active: true
|
|
404
531
|
LateinitUsage:
|
|
405
532
|
active: false
|
|
406
|
-
excludes:
|
|
407
|
-
|
|
533
|
+
excludes:
|
|
534
|
+
- "**/test/**"
|
|
535
|
+
- "**/androidTest/**"
|
|
536
|
+
- "**/*.Test.kt"
|
|
537
|
+
- "**/*.Spec.kt"
|
|
538
|
+
- "**/*.Spek.kt"
|
|
539
|
+
ignoreAnnotated: []
|
|
408
540
|
ignoreOnClassesPattern: ""
|
|
409
|
-
MissingWhenCase:
|
|
410
|
-
active: true
|
|
411
|
-
RedundantElseInWhen:
|
|
412
|
-
active: true
|
|
413
541
|
UnconditionalJumpStatementInLoop:
|
|
414
542
|
active: true
|
|
415
543
|
UnreachableCode:
|
|
@@ -429,7 +557,7 @@ style:
|
|
|
429
557
|
active: true
|
|
430
558
|
DataClassContainsFunctions:
|
|
431
559
|
active: true
|
|
432
|
-
conversionFunctionPrefix:
|
|
560
|
+
conversionFunctionPrefix: ["to"]
|
|
433
561
|
DataClassShouldBeImmutable:
|
|
434
562
|
active: true
|
|
435
563
|
EqualsNullCall:
|
|
@@ -443,11 +571,17 @@ style:
|
|
|
443
571
|
includeLineWrapping: false
|
|
444
572
|
ForbiddenComment:
|
|
445
573
|
active: true
|
|
446
|
-
|
|
574
|
+
comments:
|
|
575
|
+
- reason: "Forbidden FIXME todo marker in comment, please fix the problem."
|
|
576
|
+
value: "FIXME:"
|
|
577
|
+
- reason: "Forbidden STOPSHIP todo marker in comment, please address the problem before shipping the code."
|
|
578
|
+
value: "STOPSHIP:"
|
|
579
|
+
- reason: "Forbidden TODO todo marker in comment, please do the changes, or add Jira ticket reference and suppress the warning."
|
|
580
|
+
value: "TODO:"
|
|
447
581
|
allowedPatterns: ""
|
|
448
582
|
ForbiddenImport:
|
|
449
583
|
active: true
|
|
450
|
-
imports:
|
|
584
|
+
imports: []
|
|
451
585
|
forbiddenPatterns: ""
|
|
452
586
|
ForbiddenVoid:
|
|
453
587
|
active: true
|
|
@@ -456,17 +590,24 @@ style:
|
|
|
456
590
|
FunctionOnlyReturningConstant:
|
|
457
591
|
active: true
|
|
458
592
|
ignoreOverridableFunction: true
|
|
459
|
-
excludedFunctions:
|
|
460
|
-
|
|
461
|
-
LibraryCodeMustSpecifyReturnType:
|
|
462
|
-
active: true
|
|
593
|
+
excludedFunctions: ["describeContents"]
|
|
594
|
+
ignoreAnnotated: ["dagger.Provides"]
|
|
463
595
|
LoopWithTooManyJumpStatements:
|
|
464
596
|
active: true
|
|
465
597
|
maxJumpCount: 1
|
|
466
598
|
MagicNumber:
|
|
467
599
|
active: true
|
|
468
|
-
excludes:
|
|
469
|
-
|
|
600
|
+
excludes:
|
|
601
|
+
- "**/test/**"
|
|
602
|
+
- "**/androidTest/**"
|
|
603
|
+
- "**/*.Test.kt"
|
|
604
|
+
- "**/*.Spec.kt"
|
|
605
|
+
- "**/*.Spek.kt"
|
|
606
|
+
ignoreNumbers:
|
|
607
|
+
- "-1"
|
|
608
|
+
- "0"
|
|
609
|
+
- "1"
|
|
610
|
+
- "2"
|
|
470
611
|
ignoreHashCodeFunction: true
|
|
471
612
|
ignorePropertyDeclaration: false
|
|
472
613
|
ignoreConstantDeclaration: true
|
|
@@ -475,8 +616,9 @@ style:
|
|
|
475
616
|
ignoreNamedArgument: true
|
|
476
617
|
ignoreEnums: false
|
|
477
618
|
ignoreRanges: false
|
|
478
|
-
|
|
479
|
-
|
|
619
|
+
BracesOnIfStatements:
|
|
620
|
+
singleLine: consistent
|
|
621
|
+
multiLine: always
|
|
480
622
|
MaxLineLength:
|
|
481
623
|
active: true
|
|
482
624
|
maxLineLength: 120
|
|
@@ -497,7 +639,7 @@ style:
|
|
|
497
639
|
active: true
|
|
498
640
|
OptionalUnit:
|
|
499
641
|
active: true
|
|
500
|
-
|
|
642
|
+
BracesOnWhenStatements:
|
|
501
643
|
active: true
|
|
502
644
|
PreferToOverPairSyntax:
|
|
503
645
|
active: true
|
|
@@ -510,7 +652,7 @@ style:
|
|
|
510
652
|
ReturnCount:
|
|
511
653
|
active: true
|
|
512
654
|
max: 2
|
|
513
|
-
excludedFunctions: "equals"
|
|
655
|
+
excludedFunctions: ["equals"]
|
|
514
656
|
excludeLabeled: false
|
|
515
657
|
excludeReturnFromLambda: true
|
|
516
658
|
excludeGuardClauses: true
|
|
@@ -527,10 +669,10 @@ style:
|
|
|
527
669
|
active: true
|
|
528
670
|
UnderscoresInNumericLiterals:
|
|
529
671
|
active: true
|
|
530
|
-
|
|
672
|
+
acceptableLength: 5
|
|
531
673
|
UnnecessaryAbstractClass:
|
|
532
674
|
active: true
|
|
533
|
-
|
|
675
|
+
ignoreAnnotated: ["dagger.Module"]
|
|
534
676
|
UnnecessaryApply:
|
|
535
677
|
active: true
|
|
536
678
|
UnnecessaryInheritance:
|
|
@@ -554,7 +696,7 @@ style:
|
|
|
554
696
|
active: true
|
|
555
697
|
UseDataClass:
|
|
556
698
|
active: true
|
|
557
|
-
|
|
699
|
+
ignoreAnnotated: [""]
|
|
558
700
|
allowVars: true
|
|
559
701
|
UseIfInsteadOfWhen:
|
|
560
702
|
active: true
|
|
@@ -568,5 +710,12 @@ style:
|
|
|
568
710
|
active: true
|
|
569
711
|
WildcardImport:
|
|
570
712
|
active: true
|
|
571
|
-
excludes:
|
|
572
|
-
|
|
713
|
+
excludes:
|
|
714
|
+
- "**/test/**"
|
|
715
|
+
- "**/androidTest/**"
|
|
716
|
+
- "**/*.Test.kt"
|
|
717
|
+
- "**/*.Spec.kt"
|
|
718
|
+
- "**/*.Spek.kt"
|
|
719
|
+
excludeImports:
|
|
720
|
+
- java.util.*
|
|
721
|
+
- kotlinx.android.synthetic.*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datadog/mobile-react-native-webview",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.3",
|
|
4
4
|
"description": "A client-side React Native module to interact with react-native-webview and Datadog",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"datadog",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"javaPackageName": "com.datadog.reactnative.webview"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "842123f32b952c593ae1339b50a328f94c391929"
|
|
98
98
|
}
|