testeranto 0.146.4 → 0.146.6

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.
Files changed (46) hide show
  1. package/dist/common/src/lib/basebuilder.js +0 -19
  2. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  3. package/dist/module/src/lib/basebuilder.js +0 -19
  4. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  5. package/dist/tsconfig.tsbuildinfo +1 -1
  6. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  7. package/package.json +6 -17
  8. package/src/lib/basebuilder.ts +0 -24
  9. package/testeranto/Project.css +1 -26
  10. package/testeranto/Project.js +3337 -385
  11. package/testeranto/TestReport.css +1 -26
  12. package/testeranto/TestReport.js +43 -16
  13. package/testeranto/bundles/node/allTests/metafile.json +1 -1
  14. package/testeranto/bundles/pure/allTests/metafile.json +1 -1
  15. package/testeranto/bundles/web/allTests/metafile.json +1 -1
  16. package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.json +137 -1539
  17. package/testeranto/reports/allTests/src/Pure.test/pure/logs.txt +2 -2
  18. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.json +58 -620
  19. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.json +58 -620
  20. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt +2 -2
  21. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.json +58 -620
  22. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.json +104 -966
  23. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.json +104 -966
  24. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.json +104 -966
  25. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.json +63 -791
  26. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.json +39 -416
  27. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.json +156 -1724
  28. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +3 -3
  29. package/.aider.chat.history.md +0 -260761
  30. package/.aider.conf.yml +0 -5
  31. package/.aider.input.history +0 -1437
  32. package/.aider.tags.cache.v3/06/1a/1ec9fd1f595d4b36094caef45894.val +0 -0
  33. package/.aider.tags.cache.v3/0f/f6/f42b5108253d75de3cb6286df7f6.val +0 -0
  34. package/.aider.tags.cache.v3/1c/30/af1de2ad7a137afeddb1b01e0c27.val +0 -0
  35. package/.aider.tags.cache.v3/1d/63/88318b65ce58b6bb0487e8ce2656.val +0 -0
  36. package/.aider.tags.cache.v3/2e/67/16ae65530b40038e48e00d666c63.val +0 -0
  37. package/.aider.tags.cache.v3/3d/81/8b6f0e9b98ec2952cdb8968ac386.val +0 -0
  38. package/.aider.tags.cache.v3/62/f5/8af72140d93c58db2f6aa5bf3f1f.val +0 -0
  39. package/.aider.tags.cache.v3/6f/94/80488a232866fcce7ee657da488b.val +0 -0
  40. package/.aider.tags.cache.v3/bd/91/b71f967fd074cf4b757081b429b7.val +0 -0
  41. package/.aider.tags.cache.v3/cache.db +0 -0
  42. package/.aider.tags.cache.v3/d6/7d/1820c2d4b9330eab7017da4515e7.val +0 -0
  43. package/.aider.tags.cache.v3/dd/5b/0ade824b0841c7c11e9352c5d2ca.val +0 -0
  44. package/.aider.tags.cache.v3/fb/96/b0f91c7e75e08fc5a6907633cf99.val +0 -0
  45. package/secret +0 -1
  46. package/secret.env +0 -2
@@ -1,966 +1,104 @@
1
- [
2
- {
3
- "filePath": "/Users/adam/Code/testeranto/src/lib/baseBuilder.test/TestBaseBuilder.ts",
4
- "messages": [
5
- {
6
- "ruleId": "@typescript-eslint/no-empty-object-type",
7
- "severity": 2,
8
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
9
- "line": 18,
10
- "column": 21,
11
- "nodeType": "TSTypeLiteral",
12
- "messageId": "noEmptyObject",
13
- "endLine": 18,
14
- "endColumn": 23,
15
- "suggestions": [
16
- {
17
- "messageId": "replaceEmptyObjectType",
18
- "data": {
19
- "replacement": "object"
20
- },
21
- "fix": {
22
- "range": [
23
- 460,
24
- 462
25
- ],
26
- "text": "object"
27
- },
28
- "desc": "Replace `{}` with `object`."
29
- },
30
- {
31
- "messageId": "replaceEmptyObjectType",
32
- "data": {
33
- "replacement": "unknown"
34
- },
35
- "fix": {
36
- "range": [
37
- 460,
38
- 462
39
- ],
40
- "text": "unknown"
41
- },
42
- "desc": "Replace `{}` with `unknown`."
43
- }
44
- ]
45
- },
46
- {
47
- "ruleId": "@typescript-eslint/no-empty-object-type",
48
- "severity": 2,
49
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
50
- "line": 19,
51
- "column": 21,
52
- "nodeType": "TSTypeLiteral",
53
- "messageId": "noEmptyObject",
54
- "endLine": 19,
55
- "endColumn": 23,
56
- "suggestions": [
57
- {
58
- "messageId": "replaceEmptyObjectType",
59
- "data": {
60
- "replacement": "object"
61
- },
62
- "fix": {
63
- "range": [
64
- 484,
65
- 486
66
- ],
67
- "text": "object"
68
- },
69
- "desc": "Replace `{}` with `object`."
70
- },
71
- {
72
- "messageId": "replaceEmptyObjectType",
73
- "data": {
74
- "replacement": "unknown"
75
- },
76
- "fix": {
77
- "range": [
78
- 484,
79
- 486
80
- ],
81
- "text": "unknown"
82
- },
83
- "desc": "Replace `{}` with `unknown`."
84
- }
85
- ]
86
- },
87
- {
88
- "ruleId": "@typescript-eslint/no-empty-object-type",
89
- "severity": 2,
90
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
91
- "line": 20,
92
- "column": 20,
93
- "nodeType": "TSTypeLiteral",
94
- "messageId": "noEmptyObject",
95
- "endLine": 20,
96
- "endColumn": 22,
97
- "suggestions": [
98
- {
99
- "messageId": "replaceEmptyObjectType",
100
- "data": {
101
- "replacement": "object"
102
- },
103
- "fix": {
104
- "range": [
105
- 507,
106
- 509
107
- ],
108
- "text": "object"
109
- },
110
- "desc": "Replace `{}` with `object`."
111
- },
112
- {
113
- "messageId": "replaceEmptyObjectType",
114
- "data": {
115
- "replacement": "unknown"
116
- },
117
- "fix": {
118
- "range": [
119
- 507,
120
- 509
121
- ],
122
- "text": "unknown"
123
- },
124
- "desc": "Replace `{}` with `unknown`."
125
- }
126
- ]
127
- },
128
- {
129
- "ruleId": "@typescript-eslint/no-empty-object-type",
130
- "severity": 2,
131
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
132
- "line": 21,
133
- "column": 20,
134
- "nodeType": "TSTypeLiteral",
135
- "messageId": "noEmptyObject",
136
- "endLine": 21,
137
- "endColumn": 22,
138
- "suggestions": [
139
- {
140
- "messageId": "replaceEmptyObjectType",
141
- "data": {
142
- "replacement": "object"
143
- },
144
- "fix": {
145
- "range": [
146
- 530,
147
- 532
148
- ],
149
- "text": "object"
150
- },
151
- "desc": "Replace `{}` with `object`."
152
- },
153
- {
154
- "messageId": "replaceEmptyObjectType",
155
- "data": {
156
- "replacement": "unknown"
157
- },
158
- "fix": {
159
- "range": [
160
- 530,
161
- 532
162
- ],
163
- "text": "unknown"
164
- },
165
- "desc": "Replace `{}` with `unknown`."
166
- }
167
- ]
168
- },
169
- {
170
- "ruleId": "@typescript-eslint/no-empty-object-type",
171
- "severity": 2,
172
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
173
- "line": 22,
174
- "column": 21,
175
- "nodeType": "TSTypeLiteral",
176
- "messageId": "noEmptyObject",
177
- "endLine": 22,
178
- "endColumn": 23,
179
- "suggestions": [
180
- {
181
- "messageId": "replaceEmptyObjectType",
182
- "data": {
183
- "replacement": "object"
184
- },
185
- "fix": {
186
- "range": [
187
- 554,
188
- 556
189
- ],
190
- "text": "object"
191
- },
192
- "desc": "Replace `{}` with `object`."
193
- },
194
- {
195
- "messageId": "replaceEmptyObjectType",
196
- "data": {
197
- "replacement": "unknown"
198
- },
199
- "fix": {
200
- "range": [
201
- 554,
202
- 556
203
- ],
204
- "text": "unknown"
205
- },
206
- "desc": "Replace `{}` with `unknown`."
207
- }
208
- ]
209
- },
210
- {
211
- "ruleId": "@typescript-eslint/no-explicit-any",
212
- "severity": 2,
213
- "message": "Unexpected any. Specify a different type.",
214
- "line": 32,
215
- "column": 34,
216
- "nodeType": "TSAnyKeyword",
217
- "messageId": "unexpectedAny",
218
- "endLine": 32,
219
- "endColumn": 37,
220
- "suggestions": [
221
- {
222
- "messageId": "suggestUnknown",
223
- "fix": {
224
- "range": [
225
- 719,
226
- 722
227
- ],
228
- "text": "unknown"
229
- },
230
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
231
- },
232
- {
233
- "messageId": "suggestNever",
234
- "fix": {
235
- "range": [
236
- 719,
237
- 722
238
- ],
239
- "text": "never"
240
- },
241
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
242
- }
243
- ]
244
- },
245
- {
246
- "ruleId": "@typescript-eslint/no-explicit-any",
247
- "severity": 2,
248
- "message": "Unexpected any. Specify a different type.",
249
- "line": 39,
250
- "column": 15,
251
- "nodeType": "TSAnyKeyword",
252
- "messageId": "unexpectedAny",
253
- "endLine": 39,
254
- "endColumn": 18,
255
- "suggestions": [
256
- {
257
- "messageId": "suggestUnknown",
258
- "fix": {
259
- "range": [
260
- 868,
261
- 871
262
- ],
263
- "text": "unknown"
264
- },
265
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
266
- },
267
- {
268
- "messageId": "suggestNever",
269
- "fix": {
270
- "range": [
271
- 868,
272
- 871
273
- ],
274
- "text": "never"
275
- },
276
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
277
- }
278
- ]
279
- },
280
- {
281
- "ruleId": "@typescript-eslint/no-explicit-any",
282
- "severity": 2,
283
- "message": "Unexpected any. Specify a different type.",
284
- "line": 40,
285
- "column": 77,
286
- "nodeType": "TSAnyKeyword",
287
- "messageId": "unexpectedAny",
288
- "endLine": 40,
289
- "endColumn": 80,
290
- "suggestions": [
291
- {
292
- "messageId": "suggestUnknown",
293
- "fix": {
294
- "range": [
295
- 949,
296
- 952
297
- ],
298
- "text": "unknown"
299
- },
300
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
301
- },
302
- {
303
- "messageId": "suggestNever",
304
- "fix": {
305
- "range": [
306
- 949,
307
- 952
308
- ],
309
- "text": "never"
310
- },
311
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
312
- }
313
- ]
314
- },
315
- {
316
- "ruleId": "@typescript-eslint/no-explicit-any",
317
- "severity": 2,
318
- "message": "Unexpected any. Specify a different type.",
319
- "line": 41,
320
- "column": 74,
321
- "nodeType": "TSAnyKeyword",
322
- "messageId": "unexpectedAny",
323
- "endLine": 41,
324
- "endColumn": 77,
325
- "suggestions": [
326
- {
327
- "messageId": "suggestUnknown",
328
- "fix": {
329
- "range": [
330
- 1027,
331
- 1030
332
- ],
333
- "text": "unknown"
334
- },
335
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
336
- },
337
- {
338
- "messageId": "suggestNever",
339
- "fix": {
340
- "range": [
341
- 1027,
342
- 1030
343
- ],
344
- "text": "never"
345
- },
346
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
347
- }
348
- ]
349
- },
350
- {
351
- "ruleId": "@typescript-eslint/no-explicit-any",
352
- "severity": 2,
353
- "message": "Unexpected any. Specify a different type.",
354
- "line": 42,
355
- "column": 74,
356
- "nodeType": "TSAnyKeyword",
357
- "messageId": "unexpectedAny",
358
- "endLine": 42,
359
- "endColumn": 77,
360
- "suggestions": [
361
- {
362
- "messageId": "suggestUnknown",
363
- "fix": {
364
- "range": [
365
- 1105,
366
- 1108
367
- ],
368
- "text": "unknown"
369
- },
370
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
371
- },
372
- {
373
- "messageId": "suggestNever",
374
- "fix": {
375
- "range": [
376
- 1105,
377
- 1108
378
- ],
379
- "text": "never"
380
- },
381
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
382
- }
383
- ]
384
- },
385
- {
386
- "ruleId": "@typescript-eslint/no-explicit-any",
387
- "severity": 2,
388
- "message": "Unexpected any. Specify a different type.",
389
- "line": 43,
390
- "column": 77,
391
- "nodeType": "TSAnyKeyword",
392
- "messageId": "unexpectedAny",
393
- "endLine": 43,
394
- "endColumn": 80,
395
- "suggestions": [
396
- {
397
- "messageId": "suggestUnknown",
398
- "fix": {
399
- "range": [
400
- 1186,
401
- 1189
402
- ],
403
- "text": "unknown"
404
- },
405
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
406
- },
407
- {
408
- "messageId": "suggestNever",
409
- "fix": {
410
- "range": [
411
- 1186,
412
- 1189
413
- ],
414
- "text": "never"
415
- },
416
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
417
- }
418
- ]
419
- },
420
- {
421
- "ruleId": "@typescript-eslint/no-explicit-any",
422
- "severity": 2,
423
- "message": "Unexpected any. Specify a different type.",
424
- "line": 64,
425
- "column": 32,
426
- "nodeType": "TSAnyKeyword",
427
- "messageId": "unexpectedAny",
428
- "endLine": 64,
429
- "endColumn": 35,
430
- "suggestions": [
431
- {
432
- "messageId": "suggestUnknown",
433
- "fix": {
434
- "range": [
435
- 1659,
436
- 1662
437
- ],
438
- "text": "unknown"
439
- },
440
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
441
- },
442
- {
443
- "messageId": "suggestNever",
444
- "fix": {
445
- "range": [
446
- 1659,
447
- 1662
448
- ],
449
- "text": "never"
450
- },
451
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
452
- }
453
- ]
454
- },
455
- {
456
- "ruleId": "@typescript-eslint/no-explicit-any",
457
- "severity": 2,
458
- "message": "Unexpected any. Specify a different type.",
459
- "line": 64,
460
- "column": 46,
461
- "nodeType": "TSAnyKeyword",
462
- "messageId": "unexpectedAny",
463
- "endLine": 64,
464
- "endColumn": 49,
465
- "suggestions": [
466
- {
467
- "messageId": "suggestUnknown",
468
- "fix": {
469
- "range": [
470
- 1673,
471
- 1676
472
- ],
473
- "text": "unknown"
474
- },
475
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
476
- },
477
- {
478
- "messageId": "suggestNever",
479
- "fix": {
480
- "range": [
481
- 1673,
482
- 1676
483
- ],
484
- "text": "never"
485
- },
486
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
487
- }
488
- ]
489
- }
490
- ],
491
- "suppressedMessages": [],
492
- "errorCount": 13,
493
- "fatalErrorCount": 0,
494
- "warningCount": 0,
495
- "fixableErrorCount": 0,
496
- "fixableWarningCount": 0,
497
- "usedDeprecatedRules": []
498
- },
499
- {
500
- "filePath": "/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts",
501
- "messages": [
502
- {
503
- "ruleId": "@typescript-eslint/no-explicit-any",
504
- "severity": 2,
505
- "message": "Unexpected any. Specify a different type.",
506
- "line": 11,
507
- "column": 36,
508
- "nodeType": "TSAnyKeyword",
509
- "messageId": "unexpectedAny",
510
- "endLine": 11,
511
- "endColumn": 39,
512
- "suggestions": [
513
- {
514
- "messageId": "suggestUnknown",
515
- "fix": {
516
- "range": [
517
- 355,
518
- 358
519
- ],
520
- "text": "unknown"
521
- },
522
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
523
- },
524
- {
525
- "messageId": "suggestNever",
526
- "fix": {
527
- "range": [
528
- 355,
529
- 358
530
- ],
531
- "text": "never"
532
- },
533
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
534
- }
535
- ]
536
- },
537
- {
538
- "ruleId": "@typescript-eslint/no-explicit-any",
539
- "severity": 2,
540
- "message": "Unexpected any. Specify a different type.",
541
- "line": 11,
542
- "column": 41,
543
- "nodeType": "TSAnyKeyword",
544
- "messageId": "unexpectedAny",
545
- "endLine": 11,
546
- "endColumn": 44,
547
- "suggestions": [
548
- {
549
- "messageId": "suggestUnknown",
550
- "fix": {
551
- "range": [
552
- 360,
553
- 363
554
- ],
555
- "text": "unknown"
556
- },
557
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
558
- },
559
- {
560
- "messageId": "suggestNever",
561
- "fix": {
562
- "range": [
563
- 360,
564
- 363
565
- ],
566
- "text": "never"
567
- },
568
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
569
- }
570
- ]
571
- },
572
- {
573
- "ruleId": "@typescript-eslint/no-explicit-any",
574
- "severity": 2,
575
- "message": "Unexpected any. Specify a different type.",
576
- "line": 11,
577
- "column": 46,
578
- "nodeType": "TSAnyKeyword",
579
- "messageId": "unexpectedAny",
580
- "endLine": 11,
581
- "endColumn": 49,
582
- "suggestions": [
583
- {
584
- "messageId": "suggestUnknown",
585
- "fix": {
586
- "range": [
587
- 365,
588
- 368
589
- ],
590
- "text": "unknown"
591
- },
592
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
593
- },
594
- {
595
- "messageId": "suggestNever",
596
- "fix": {
597
- "range": [
598
- 365,
599
- 368
600
- ],
601
- "text": "never"
602
- },
603
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
604
- }
605
- ]
606
- },
607
- {
608
- "ruleId": "@typescript-eslint/no-explicit-any",
609
- "severity": 2,
610
- "message": "Unexpected any. Specify a different type.",
611
- "line": 11,
612
- "column": 51,
613
- "nodeType": "TSAnyKeyword",
614
- "messageId": "unexpectedAny",
615
- "endLine": 11,
616
- "endColumn": 54,
617
- "suggestions": [
618
- {
619
- "messageId": "suggestUnknown",
620
- "fix": {
621
- "range": [
622
- 370,
623
- 373
624
- ],
625
- "text": "unknown"
626
- },
627
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
628
- },
629
- {
630
- "messageId": "suggestNever",
631
- "fix": {
632
- "range": [
633
- 370,
634
- 373
635
- ],
636
- "text": "never"
637
- },
638
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
639
- }
640
- ]
641
- },
642
- {
643
- "ruleId": "@typescript-eslint/no-explicit-any",
644
- "severity": 2,
645
- "message": "Unexpected any. Specify a different type.",
646
- "line": 11,
647
- "column": 56,
648
- "nodeType": "TSAnyKeyword",
649
- "messageId": "unexpectedAny",
650
- "endLine": 11,
651
- "endColumn": 59,
652
- "suggestions": [
653
- {
654
- "messageId": "suggestUnknown",
655
- "fix": {
656
- "range": [
657
- 375,
658
- 378
659
- ],
660
- "text": "unknown"
661
- },
662
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
663
- },
664
- {
665
- "messageId": "suggestNever",
666
- "fix": {
667
- "range": [
668
- 375,
669
- 378
670
- ],
671
- "text": "never"
672
- },
673
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
674
- }
675
- ]
676
- },
677
- {
678
- "ruleId": "@typescript-eslint/no-explicit-any",
679
- "severity": 2,
680
- "message": "Unexpected any. Specify a different type.",
681
- "line": 11,
682
- "column": 61,
683
- "nodeType": "TSAnyKeyword",
684
- "messageId": "unexpectedAny",
685
- "endLine": 11,
686
- "endColumn": 64,
687
- "suggestions": [
688
- {
689
- "messageId": "suggestUnknown",
690
- "fix": {
691
- "range": [
692
- 380,
693
- 383
694
- ],
695
- "text": "unknown"
696
- },
697
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
698
- },
699
- {
700
- "messageId": "suggestNever",
701
- "fix": {
702
- "range": [
703
- 380,
704
- 383
705
- ],
706
- "text": "never"
707
- },
708
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
709
- }
710
- ]
711
- },
712
- {
713
- "ruleId": "@typescript-eslint/no-empty-object-type",
714
- "severity": 2,
715
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
716
- "line": 13,
717
- "column": 56,
718
- "nodeType": "TSTypeLiteral",
719
- "messageId": "noEmptyObject",
720
- "endLine": 13,
721
- "endColumn": 58,
722
- "suggestions": [
723
- {
724
- "messageId": "replaceEmptyObjectType",
725
- "data": {
726
- "replacement": "object"
727
- },
728
- "fix": {
729
- "range": [
730
- 442,
731
- 444
732
- ],
733
- "text": "object"
734
- },
735
- "desc": "Replace `{}` with `object`."
736
- },
737
- {
738
- "messageId": "replaceEmptyObjectType",
739
- "data": {
740
- "replacement": "unknown"
741
- },
742
- "fix": {
743
- "range": [
744
- 442,
745
- 444
746
- ],
747
- "text": "unknown"
748
- },
749
- "desc": "Replace `{}` with `unknown`."
750
- }
751
- ]
752
- },
753
- {
754
- "ruleId": "@typescript-eslint/no-explicit-any",
755
- "severity": 2,
756
- "message": "Unexpected any. Specify a different type.",
757
- "line": 31,
758
- "column": 30,
759
- "nodeType": "TSAnyKeyword",
760
- "messageId": "unexpectedAny",
761
- "endLine": 31,
762
- "endColumn": 33,
763
- "suggestions": [
764
- {
765
- "messageId": "suggestUnknown",
766
- "fix": {
767
- "range": [
768
- 731,
769
- 734
770
- ],
771
- "text": "unknown"
772
- },
773
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
774
- },
775
- {
776
- "messageId": "suggestNever",
777
- "fix": {
778
- "range": [
779
- 731,
780
- 734
781
- ],
782
- "text": "never"
783
- },
784
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
785
- }
786
- ]
787
- },
788
- {
789
- "ruleId": "@typescript-eslint/no-explicit-any",
790
- "severity": 2,
791
- "message": "Unexpected any. Specify a different type.",
792
- "line": 58,
793
- "column": 37,
794
- "nodeType": "TSAnyKeyword",
795
- "messageId": "unexpectedAny",
796
- "endLine": 58,
797
- "endColumn": 40,
798
- "suggestions": [
799
- {
800
- "messageId": "suggestUnknown",
801
- "fix": {
802
- "range": [
803
- 1193,
804
- 1196
805
- ],
806
- "text": "unknown"
807
- },
808
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
809
- },
810
- {
811
- "messageId": "suggestNever",
812
- "fix": {
813
- "range": [
814
- 1193,
815
- 1196
816
- ],
817
- "text": "never"
818
- },
819
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
820
- }
821
- ]
822
- }
823
- ],
824
- "suppressedMessages": [],
825
- "errorCount": 9,
826
- "fatalErrorCount": 0,
827
- "warningCount": 0,
828
- "fixableErrorCount": 0,
829
- "fixableWarningCount": 0,
830
- "usedDeprecatedRules": []
831
- },
832
- {
833
- "filePath": "/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.interface.ts",
834
- "messages": [
835
- {
836
- "ruleId": "@typescript-eslint/no-unused-vars",
837
- "severity": 2,
838
- "message": "'x' is defined but never used.",
839
- "line": 17,
840
- "column": 16,
841
- "nodeType": null,
842
- "messageId": "unusedVar",
843
- "endLine": 17,
844
- "endColumn": 17
845
- },
846
- {
847
- "ruleId": "@typescript-eslint/no-explicit-any",
848
- "severity": 2,
849
- "message": "Unexpected any. Specify a different type.",
850
- "line": 17,
851
- "column": 19,
852
- "nodeType": "TSAnyKeyword",
853
- "messageId": "unexpectedAny",
854
- "endLine": 17,
855
- "endColumn": 22,
856
- "suggestions": [
857
- {
858
- "messageId": "suggestUnknown",
859
- "fix": {
860
- "range": [
861
- 486,
862
- 489
863
- ],
864
- "text": "unknown"
865
- },
866
- "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
867
- },
868
- {
869
- "messageId": "suggestNever",
870
- "fix": {
871
- "range": [
872
- 486,
873
- 489
874
- ],
875
- "text": "never"
876
- },
877
- "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
878
- }
879
- ]
880
- }
881
- ],
882
- "suppressedMessages": [],
883
- "errorCount": 2,
884
- "fatalErrorCount": 0,
885
- "warningCount": 0,
886
- "fixableErrorCount": 0,
887
- "fixableWarningCount": 0,
888
- "usedDeprecatedRules": []
889
- },
890
- {
891
- "filePath": "/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.node.ts",
892
- "messages": [
893
- {
894
- "ruleId": "@typescript-eslint/no-empty-object-type",
895
- "severity": 2,
896
- "message": "The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.",
897
- "line": 9,
898
- "column": 33,
899
- "nodeType": "TSTypeLiteral",
900
- "messageId": "noEmptyObject",
901
- "endLine": 9,
902
- "endColumn": 35,
903
- "suggestions": [
904
- {
905
- "messageId": "replaceEmptyObjectType",
906
- "data": {
907
- "replacement": "object"
908
- },
909
- "fix": {
910
- "range": [
911
- 362,
912
- 364
913
- ],
914
- "text": "object"
915
- },
916
- "desc": "Replace `{}` with `object`."
917
- },
918
- {
919
- "messageId": "replaceEmptyObjectType",
920
- "data": {
921
- "replacement": "unknown"
922
- },
923
- "fix": {
924
- "range": [
925
- 362,
926
- 364
927
- ],
928
- "text": "unknown"
929
- },
930
- "desc": "Replace `{}` with `unknown`."
931
- }
932
- ]
933
- }
934
- ],
935
- "suppressedMessages": [],
936
- "errorCount": 1,
937
- "fatalErrorCount": 0,
938
- "warningCount": 0,
939
- "fixableErrorCount": 0,
940
- "fixableWarningCount": 0,
941
- "usedDeprecatedRules": []
942
- },
943
- {
944
- "filePath": "/Users/adam/Code/testeranto/src/lib/baseBuilder.test/baseBuilder.test.specification.ts",
945
- "messages": [
946
- {
947
- "ruleId": "@typescript-eslint/no-unused-vars",
948
- "severity": 2,
949
- "message": "'Check' is defined but never used.",
950
- "line": 10,
951
- "column": 3,
952
- "nodeType": null,
953
- "messageId": "unusedVar",
954
- "endLine": 10,
955
- "endColumn": 8
956
- }
957
- ],
958
- "suppressedMessages": [],
959
- "errorCount": 1,
960
- "fatalErrorCount": 0,
961
- "warningCount": 0,
962
- "fixableErrorCount": 0,
963
- "fixableWarningCount": 0,
964
- "usedDeprecatedRules": []
965
- }
966
- ]
1
+ src/lib/baseBuilder.test/TestBaseBuilder.ts
2
+ 18:21 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
3
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
4
+ - If you want a type meaning "any object", you probably want `object` instead.
5
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
6
+ - undefined (fix)
7
+ - undefined (fix)
8
+ 19:21 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
9
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
10
+ - If you want a type meaning "any object", you probably want `object` instead.
11
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
12
+ - undefined (fix)
13
+ - undefined (fix)
14
+ 20:20 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
15
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
16
+ - If you want a type meaning "any object", you probably want `object` instead.
17
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
18
+ - undefined (fix)
19
+ - undefined (fix)
20
+ 21:20 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
21
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
22
+ - If you want a type meaning "any object", you probably want `object` instead.
23
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
24
+ - undefined (fix)
25
+ - undefined (fix)
26
+ 22:21 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
27
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
28
+ - If you want a type meaning "any object", you probably want `object` instead.
29
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
30
+ - undefined (fix)
31
+ - undefined (fix)
32
+ 32:34 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
33
+ - undefined (fix)
34
+ - undefined (fix)
35
+ 39:15 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
36
+ - undefined (fix)
37
+ - undefined (fix)
38
+ 40:77 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
39
+ - undefined (fix)
40
+ - undefined (fix)
41
+ 41:74 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
42
+ - undefined (fix)
43
+ - undefined (fix)
44
+ 42:74 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
45
+ - undefined (fix)
46
+ - undefined (fix)
47
+ 43:77 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
48
+ - undefined (fix)
49
+ - undefined (fix)
50
+ 64:32 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
51
+ - undefined (fix)
52
+ - undefined (fix)
53
+ 64:46 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
54
+ - undefined (fix)
55
+ - undefined (fix)
56
+
57
+ src/lib/baseBuilder.test/baseBuilder.test.implementation.ts
58
+ 11:36 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
59
+ - undefined (fix)
60
+ - undefined (fix)
61
+ 11:41 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
62
+ - undefined (fix)
63
+ - undefined (fix)
64
+ 11:46 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
65
+ - undefined (fix)
66
+ - undefined (fix)
67
+ 11:51 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
68
+ - undefined (fix)
69
+ - undefined (fix)
70
+ 11:56 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
71
+ - undefined (fix)
72
+ - undefined (fix)
73
+ 11:61 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
74
+ - undefined (fix)
75
+ - undefined (fix)
76
+ 13:56 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
77
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
78
+ - If you want a type meaning "any object", you probably want `object` instead.
79
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
80
+ - undefined (fix)
81
+ - undefined (fix)
82
+ 31:30 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
83
+ - undefined (fix)
84
+ - undefined (fix)
85
+ 58:37 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
86
+ - undefined (fix)
87
+ - undefined (fix)
88
+
89
+ src/lib/baseBuilder.test/baseBuilder.test.interface.ts
90
+ 17:16 'x' is defined but never used. (@typescript-eslint/no-unused-vars)
91
+ 17:19 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
92
+ - undefined (fix)
93
+ - undefined (fix)
94
+
95
+ src/lib/baseBuilder.test/baseBuilder.test.node.ts
96
+ 9:33 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
97
+ - If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
98
+ - If you want a type meaning "any object", you probably want `object` instead.
99
+ - If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
100
+ - undefined (fix)
101
+ - undefined (fix)
102
+
103
+ src/lib/baseBuilder.test/baseBuilder.test.specification.ts
104
+ 10:3 'Check' is defined but never used. (@typescript-eslint/no-unused-vars)