testeranto 0.129.0 → 0.134.0

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 (386) hide show
  1. package/.aider.chat.history.md +137197 -0
  2. package/.aider.input.history +334 -0
  3. package/.aider.tags.cache.v3/18/8b/7dfca822129dad10b5cacadf7728.val +0 -0
  4. package/.aider.tags.cache.v3/{ec/c0/161c249c35be853cc40cf11f9267.val → 62/f5/8af72140d93c58db2f6aa5bf3f1f.val} +0 -0
  5. package/.aider.tags.cache.v3/8d/fa/12860238755bcfab9af8a93c52ab.val +0 -0
  6. package/.aider.tags.cache.v3/{b7/e6/5be87b62aeaf2bc244ff41c1b61a.val → a7/97/6d37fce350ad2d588f36729db0cd.val} +0 -0
  7. package/.aider.tags.cache.v3/{e3/e6/3501625caf5d5eb171f0d248462e.val → ad/3c/10f2ab1397f6d544e613d2a6acaf.val} +0 -0
  8. package/.aider.tags.cache.v3/cache.db +0 -0
  9. package/.aider.tags.cache.v3/cache.db-shm +0 -0
  10. package/.aider.tags.cache.v3/cache.db-wal +0 -0
  11. package/.aider.tags.cache.v3/dd/5b/0ade824b0841c7c11e9352c5d2ca.val +0 -0
  12. package/README.md +333 -34
  13. package/bundle.js +8 -75
  14. package/dist/common/src/Init.js +6 -1
  15. package/dist/common/src/Node.js +6 -4
  16. package/dist/common/src/NodeSidecar.js +15 -0
  17. package/dist/common/src/PM/PM_WithEslintAndTsc.js +187 -0
  18. package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +109 -0
  19. package/dist/common/src/PM/__tests__/pureSidecar.testeranto.js +94 -0
  20. package/dist/common/src/PM/__tests__/webSidecar.testeranto.js +94 -0
  21. package/dist/common/src/PM/base.js +33 -16
  22. package/dist/common/src/PM/main.js +484 -425
  23. package/dist/common/src/PM/node.js +44 -19
  24. package/dist/common/src/PM/nodeSidecar.js +65 -0
  25. package/dist/common/src/PM/pure.js +55 -47
  26. package/dist/common/src/PM/pureSidecar.js +48 -0
  27. package/dist/common/src/PM/sidecar.js +11 -0
  28. package/dist/common/src/PM/web.js +24 -6
  29. package/dist/common/src/PM/webSidecar.js +47 -0
  30. package/dist/common/src/PureSidecar.js +13 -0
  31. package/dist/common/src/SP__Polygon.test.js +10 -0
  32. package/dist/common/src/WebSidecar.js +14 -0
  33. package/dist/common/src/build.js +63 -10
  34. package/dist/common/src/defaultConfig.js +1 -0
  35. package/dist/common/src/esbuildConfigs/consoleDetectorPlugin.js +27 -0
  36. package/dist/common/src/esbuildConfigs/pure.js +15 -1
  37. package/dist/common/src/esbuildConfigs/web.js +10 -1
  38. package/dist/common/src/{SubPackages/react-dom/jsx/index.js → lib/Sidecar.js} +4 -0
  39. package/dist/common/src/lib/abstractBase.js +7 -5
  40. package/dist/common/src/lib/basebuilder.js +1 -3
  41. package/dist/common/src/lib/classBuilder.js +4 -17
  42. package/dist/common/src/lib/core.js +11 -6
  43. package/dist/common/src/lib/index.js +13 -4
  44. package/dist/common/src/lib/pmProxy.js +1 -1
  45. package/dist/common/src/mothership/index.js +16 -0
  46. package/dist/common/src/mothership/test.js +65 -0
  47. package/dist/common/src/utils/queue.js +36 -0
  48. package/dist/common/src/utils.js +34 -5
  49. package/dist/common/testeranto.config.js +77 -39
  50. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  51. package/dist/module/src/Init.js +6 -1
  52. package/dist/module/src/Node.js +6 -4
  53. package/dist/module/src/NodeSidecar.js +11 -0
  54. package/dist/module/src/PM/PM_WithEslintAndTsc.js +180 -0
  55. package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +104 -0
  56. package/dist/module/src/PM/__tests__/pureSidecar.testeranto.js +89 -0
  57. package/dist/module/src/PM/__tests__/webSidecar.testeranto.js +89 -0
  58. package/dist/module/src/PM/base.js +33 -16
  59. package/dist/module/src/PM/main.js +485 -426
  60. package/dist/module/src/PM/node.js +44 -19
  61. package/dist/module/src/PM/nodeSidecar.js +58 -0
  62. package/dist/module/src/PM/pure.js +55 -44
  63. package/dist/module/src/PM/pureSidecar.js +41 -0
  64. package/dist/module/src/PM/sidecar.js +7 -0
  65. package/dist/module/src/PM/web.js +24 -6
  66. package/dist/module/src/PM/webSidecar.js +40 -0
  67. package/dist/module/src/Project.js +154 -75
  68. package/dist/module/src/PureSidecar.js +9 -0
  69. package/dist/module/src/ReportClient.js +132 -97
  70. package/dist/module/src/SP__Polygon.test.js +8 -0
  71. package/dist/module/src/TestReport.js +32 -14
  72. package/dist/module/src/WebSidecar.js +10 -0
  73. package/dist/module/src/build.js +63 -10
  74. package/dist/module/src/defaultConfig.js +1 -0
  75. package/dist/module/src/esbuildConfigs/consoleDetectorPlugin.js +24 -0
  76. package/dist/module/src/esbuildConfigs/pure.js +15 -1
  77. package/dist/module/src/esbuildConfigs/web.js +10 -1
  78. package/dist/module/src/lib/Sidecar.js +2 -0
  79. package/dist/module/src/lib/abstractBase.js +7 -5
  80. package/dist/module/src/lib/basebuilder.js +1 -3
  81. package/dist/module/src/lib/classBuilder.js +4 -17
  82. package/dist/module/src/lib/core.js +11 -6
  83. package/dist/module/src/lib/index.js +12 -4
  84. package/dist/module/src/lib/pmProxy.js +1 -1
  85. package/dist/module/src/mothership/index.js +11 -0
  86. package/dist/module/src/mothership/test.js +60 -0
  87. package/dist/module/src/utils/queue.js +32 -0
  88. package/dist/module/src/utils.js +34 -5
  89. package/dist/module/testeranto.config.js +77 -36
  90. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  91. package/dist/prebuild/Project.js +3288 -385
  92. package/dist/prebuild/ReportClient.js +0 -24638
  93. package/dist/prebuild/TestReport.js +14 -8
  94. package/dist/prebuild/build.mjs +159 -15
  95. package/dist/prebuild/init-docs.mjs +2 -5
  96. package/dist/prebuild/mothership/index.mjs +17 -0
  97. package/dist/prebuild/run.mjs +693 -412
  98. package/dist/types/src/NodeSidecar.d.ts +6 -0
  99. package/dist/types/src/PM/PM_WithEslintAndTsc.d.ts +23 -0
  100. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +20 -0
  101. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +20 -0
  102. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +20 -0
  103. package/dist/types/src/PM/base.d.ts +6 -5
  104. package/dist/types/src/PM/index.d.ts +5 -3
  105. package/dist/types/src/PM/main.d.ts +23 -26
  106. package/dist/types/src/PM/node.d.ts +8 -6
  107. package/dist/types/src/PM/nodeSidecar.d.ts +13 -0
  108. package/dist/types/src/PM/pure.d.ts +4 -3
  109. package/dist/types/src/PM/pureSidecar.d.ts +11 -0
  110. package/dist/types/src/PM/sidecar.d.ts +8 -0
  111. package/dist/types/src/PM/web.d.ts +18 -8
  112. package/dist/types/src/PM/webSidecar.d.ts +11 -0
  113. package/dist/types/src/PureSidecar.d.ts +8 -0
  114. package/dist/types/src/Types.d.ts +109 -43
  115. package/dist/types/src/WebSidecar.d.ts +8 -0
  116. package/dist/types/src/esbuildConfigs/consoleDetectorPlugin.d.ts +2 -0
  117. package/dist/types/src/lib/Sidecar.d.ts +5 -0
  118. package/dist/types/src/lib/abstractBase.d.ts +6 -6
  119. package/dist/types/src/lib/classBuilder.d.ts +7 -1
  120. package/dist/types/src/lib/core.d.ts +7 -1
  121. package/dist/types/src/lib/index.d.ts +10 -4
  122. package/dist/types/src/lib/types.d.ts +12 -2
  123. package/dist/types/src/mothership/index.d.ts +2 -0
  124. package/dist/types/src/mothership/test.d.ts +21 -0
  125. package/dist/types/src/utils/queue.d.ts +11 -0
  126. package/dist/types/src/utils.d.ts +4 -7
  127. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  128. package/package.json +19 -105
  129. package/src/Init.ts +6 -5
  130. package/src/Node.ts +7 -4
  131. package/src/NodeSidecar.ts +22 -0
  132. package/src/PM/PM_WithEslintAndTsc.ts +284 -0
  133. package/src/PM/__tests__/nodeSidecar.testeranto.ts +173 -0
  134. package/src/PM/__tests__/pureSidecar.testeranto.ts +157 -0
  135. package/src/PM/__tests__/webSidecar.testeranto.ts +157 -0
  136. package/src/PM/base.ts +38 -17
  137. package/src/PM/index.ts +9 -3
  138. package/src/PM/main.ts +608 -582
  139. package/src/PM/node.ts +67 -23
  140. package/src/PM/nodeSidecar.ts +73 -0
  141. package/src/PM/pure.ts +68 -58
  142. package/src/PM/pureSidecar.ts +56 -0
  143. package/src/PM/sidecar.ts +48 -0
  144. package/src/PM/web.ts +42 -11
  145. package/src/PM/webSidecar.ts +55 -0
  146. package/src/Project.tsx +312 -109
  147. package/src/Pure.ts +0 -2
  148. package/src/PureSidecar.ts +14 -0
  149. package/src/ReportClient.tsx +164 -170
  150. package/src/SP__Polygon.test.ts +13 -0
  151. package/src/TestReport.tsx +77 -6
  152. package/src/Types.ts +227 -122
  153. package/src/WebSidecar.ts +14 -0
  154. package/src/build.ts +101 -14
  155. package/src/defaultConfig.ts +1 -0
  156. package/src/esbuildConfigs/README.md +46 -0
  157. package/src/esbuildConfigs/consoleDetectorPlugin.ts +29 -0
  158. package/src/esbuildConfigs/pure.ts +22 -1
  159. package/src/esbuildConfigs/web.ts +13 -0
  160. package/src/lib/Sidecar.ts +6 -0
  161. package/src/lib/TEST_ADAPTER_RENAME.md +48 -0
  162. package/src/lib/abstractBase.ts +12 -9
  163. package/src/lib/basebuilder.ts +5 -4
  164. package/src/lib/classBuilder.ts +15 -18
  165. package/src/lib/core.ts +24 -11
  166. package/src/lib/index.ts +38 -18
  167. package/src/lib/pmProxy.ts +3 -1
  168. package/src/lib/types.ts +15 -2
  169. package/src/mothership/index.ts +15 -0
  170. package/src/mothership/test.ts +137 -0
  171. package/src/run.ts +0 -1
  172. package/src/utils/queue.ts +41 -0
  173. package/src/utils.ts +41 -15
  174. package/testeranto/bundles/node/mothership/chunk-PG6KUKNP.mjs +44 -0
  175. package/testeranto/bundles/node/mothership/chunk-V2EQEXU2.mjs +1032 -0
  176. package/testeranto/bundles/node/mothership/metafile.json +389 -0
  177. package/testeranto/bundles/node/mothership/src/PM/__tests__/nodeSidecar.testeranto.mjs +1219 -0
  178. package/testeranto/bundles/node/mothership/src/PM/__tests__/pureSidecar.testeranto.mjs +156 -0
  179. package/testeranto/bundles/node/mothership/src/PM/__tests__/sidecar.testeranto.mjs +1199 -0
  180. package/testeranto/bundles/node/mothership/src/PM/__tests__/webSidecar.testeranto.mjs +156 -0
  181. package/testeranto/bundles/node/mothership/src/mothership/test.mjs +24411 -0
  182. package/testeranto/bundles/pure/mothership/metafile.json +8 -0
  183. package/testeranto/bundles/web/mothership/metafile.json +8 -0
  184. package/testeranto/index.html +4 -4
  185. package/testeranto/reports/mothership/config.json +25 -0
  186. package/testeranto/reports/{redux → mothership}/index.html +8 -8
  187. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt +0 -0
  188. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +20 -0
  189. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +1564 -0
  190. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/log.txt +0 -0
  191. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +22 -0
  192. package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +35 -0
  193. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/index.html +20 -0
  194. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +80 -0
  195. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +12 -0
  196. package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +26 -0
  197. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/bdd_errors.txt +1 -0
  198. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/console_log.txt +0 -0
  199. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/index.html +20 -0
  200. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/lint_errors.json +1564 -0
  201. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/log.txt +0 -0
  202. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/prompt.txt +22 -0
  203. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/tests.json +56 -0
  204. package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/type_errors.txt +29 -0
  205. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/index.html +20 -0
  206. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +80 -0
  207. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +12 -0
  208. package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +26 -0
  209. package/testeranto/reports/mothership/src/mothership/test/node/bdd_errors.txt +1 -0
  210. package/testeranto/reports/mothership/src/mothership/test/node/console_log.txt +4 -0
  211. package/testeranto/reports/mothership/src/mothership/test/node/index.html +20 -0
  212. package/testeranto/reports/mothership/src/mothership/test/node/lint_errors.json +1 -0
  213. package/testeranto/reports/mothership/src/mothership/test/node/log.txt +0 -0
  214. package/testeranto/reports/mothership/src/mothership/test/node/prompt.txt +12 -0
  215. package/testeranto/reports/mothership/src/mothership/test/node/tests.json +24 -0
  216. package/testeranto/reports/mothership/src/mothership/test/node/type_errors.txt +18 -0
  217. package/testeranto/reports/mothership/summary.json +9 -0
  218. package/testeranto.config.ts +82 -44
  219. package/tsc.log +78 -81
  220. package/dist/common/src/SubPackages/react/component/index.js +0 -20
  221. package/dist/common/src/SubPackages/react/component/node.js +0 -10
  222. package/dist/common/src/SubPackages/react/component/pure.js +0 -10
  223. package/dist/common/src/SubPackages/react/component/web.js +0 -10
  224. package/dist/common/src/SubPackages/react/jsx/index.js +0 -64
  225. package/dist/common/src/SubPackages/react/jsx/node.js +0 -10
  226. package/dist/common/src/SubPackages/react/jsx/pure.js +0 -10
  227. package/dist/common/src/SubPackages/react/jsx/web.js +0 -10
  228. package/dist/common/src/SubPackages/react-dom/component/dynamic.js +0 -61
  229. package/dist/common/src/SubPackages/react-dom/component/node.js +0 -10
  230. package/dist/common/src/SubPackages/react-dom/component/pure.js +0 -10
  231. package/dist/common/src/SubPackages/react-dom/component/static.js +0 -26
  232. package/dist/common/src/SubPackages/react-dom/component/web.js +0 -16
  233. package/dist/common/src/SubPackages/react-dom/jsx/dynamic.js +0 -31
  234. package/dist/common/src/SubPackages/react-dom/jsx/node.js +0 -10
  235. package/dist/common/src/SubPackages/react-dom/jsx/pure.js +0 -10
  236. package/dist/common/src/SubPackages/react-dom/jsx/static.js +0 -59
  237. package/dist/common/src/SubPackages/react-dom/jsx/web.js +0 -16
  238. package/dist/common/src/SubPackages/react-test-renderer/MemoExoticComponent/node.js +0 -54
  239. package/dist/common/src/SubPackages/react-test-renderer/component/index.js +0 -15
  240. package/dist/common/src/SubPackages/react-test-renderer/component/interface.js +0 -70
  241. package/dist/common/src/SubPackages/react-test-renderer/component/node.js +0 -8
  242. package/dist/common/src/SubPackages/react-test-renderer/component/pure.js +0 -8
  243. package/dist/common/src/SubPackages/react-test-renderer/component/test/implementation.js +0 -57
  244. package/dist/common/src/SubPackages/react-test-renderer/component/test/node.js +0 -10
  245. package/dist/common/src/SubPackages/react-test-renderer/component/test/pure.js +0 -10
  246. package/dist/common/src/SubPackages/react-test-renderer/component/test/web.js +0 -10
  247. package/dist/common/src/SubPackages/react-test-renderer/component/web.js +0 -8
  248. package/dist/common/src/SubPackages/react-test-renderer/fc/node.js +0 -60
  249. package/dist/common/src/SubPackages/react-test-renderer/fc/web.js +0 -60
  250. package/dist/common/src/SubPackages/react-test-renderer/jsx/index.js +0 -67
  251. package/dist/common/src/SubPackages/react-test-renderer/jsx/node.js +0 -10
  252. package/dist/common/src/SubPackages/react-test-renderer/jsx/pure.js +0 -10
  253. package/dist/common/src/SubPackages/react-test-renderer/jsx/web.js +0 -10
  254. package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/index.js +0 -52
  255. package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/node.js +0 -10
  256. package/dist/common/src/SubPackages/react-test-renderer/jsx-promised/web.js +0 -10
  257. package/dist/common/src/examples/react/component/index.js +0 -33
  258. package/dist/common/src/examples/react/component/test.js +0 -36
  259. package/dist/module/src/SubPackages/react/component/index.js +0 -13
  260. package/dist/module/src/SubPackages/react/component/node.js +0 -5
  261. package/dist/module/src/SubPackages/react/component/pure.js +0 -5
  262. package/dist/module/src/SubPackages/react/component/web.js +0 -5
  263. package/dist/module/src/SubPackages/react/jsx/index.js +0 -58
  264. package/dist/module/src/SubPackages/react/jsx/node.js +0 -5
  265. package/dist/module/src/SubPackages/react/jsx/pure.js +0 -5
  266. package/dist/module/src/SubPackages/react/jsx/web.js +0 -5
  267. package/dist/module/src/SubPackages/react-dom/component/dynamic.js +0 -54
  268. package/dist/module/src/SubPackages/react-dom/component/node.js +0 -5
  269. package/dist/module/src/SubPackages/react-dom/component/pure.js +0 -5
  270. package/dist/module/src/SubPackages/react-dom/component/static.js +0 -22
  271. package/dist/module/src/SubPackages/react-dom/component/web.js +0 -11
  272. package/dist/module/src/SubPackages/react-dom/jsx/dynamic.js +0 -27
  273. package/dist/module/src/SubPackages/react-dom/jsx/node.js +0 -5
  274. package/dist/module/src/SubPackages/react-dom/jsx/pure.js +0 -5
  275. package/dist/module/src/SubPackages/react-dom/jsx/static.js +0 -53
  276. package/dist/module/src/SubPackages/react-dom/jsx/web.js +0 -11
  277. package/dist/module/src/SubPackages/react-test-renderer/MemoExoticComponent/node.js +0 -16
  278. package/dist/module/src/SubPackages/react-test-renderer/component/index.js +0 -14
  279. package/dist/module/src/SubPackages/react-test-renderer/component/interface.js +0 -31
  280. package/dist/module/src/SubPackages/react-test-renderer/component/node.js +0 -3
  281. package/dist/module/src/SubPackages/react-test-renderer/component/pure.js +0 -3
  282. package/dist/module/src/SubPackages/react-test-renderer/component/test/implementation.js +0 -54
  283. package/dist/module/src/SubPackages/react-test-renderer/component/test/node.js +0 -5
  284. package/dist/module/src/SubPackages/react-test-renderer/component/test/pure.js +0 -5
  285. package/dist/module/src/SubPackages/react-test-renderer/component/test/web.js +0 -5
  286. package/dist/module/src/SubPackages/react-test-renderer/component/web.js +0 -3
  287. package/dist/module/src/SubPackages/react-test-renderer/fc/node.js +0 -22
  288. package/dist/module/src/SubPackages/react-test-renderer/fc/web.js +0 -22
  289. package/dist/module/src/SubPackages/react-test-renderer/jsx/index.js +0 -28
  290. package/dist/module/src/SubPackages/react-test-renderer/jsx/node.js +0 -5
  291. package/dist/module/src/SubPackages/react-test-renderer/jsx/pure.js +0 -5
  292. package/dist/module/src/SubPackages/react-test-renderer/jsx/web.js +0 -5
  293. package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/index.js +0 -16
  294. package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/node.js +0 -5
  295. package/dist/module/src/SubPackages/react-test-renderer/jsx-promised/web.js +0 -5
  296. package/dist/module/src/examples/react/component/index.js +0 -26
  297. package/dist/module/src/examples/react/component/test.js +0 -32
  298. package/dist/prebuild/ReportClient.css +0 -11342
  299. package/dist/tsconfig.tsbuildinfo +0 -1
  300. package/dist/types/src/SubPackages/react/component/index.d.ts +0 -4
  301. package/dist/types/src/SubPackages/react/component/node.d.ts +0 -4
  302. package/dist/types/src/SubPackages/react/component/pure.d.ts +0 -4
  303. package/dist/types/src/SubPackages/react/component/web.d.ts +0 -4
  304. package/dist/types/src/SubPackages/react/jsx/index.d.ts +0 -5
  305. package/dist/types/src/SubPackages/react/jsx/node.d.ts +0 -4
  306. package/dist/types/src/SubPackages/react/jsx/pure.d.ts +0 -4
  307. package/dist/types/src/SubPackages/react/jsx/web.d.ts +0 -4
  308. package/dist/types/src/SubPackages/react-dom/component/dynamic.d.ts +0 -20
  309. package/dist/types/src/SubPackages/react-dom/component/node.d.ts +0 -4
  310. package/dist/types/src/SubPackages/react-dom/component/pure.d.ts +0 -4
  311. package/dist/types/src/SubPackages/react-dom/component/static.d.ts +0 -9
  312. package/dist/types/src/SubPackages/react-dom/component/web.d.ts +0 -4
  313. package/dist/types/src/SubPackages/react-dom/jsx/dynamic.d.ts +0 -5
  314. package/dist/types/src/SubPackages/react-dom/jsx/index.d.ts +0 -6
  315. package/dist/types/src/SubPackages/react-dom/jsx/node.d.ts +0 -4
  316. package/dist/types/src/SubPackages/react-dom/jsx/pure.d.ts +0 -4
  317. package/dist/types/src/SubPackages/react-dom/jsx/static.d.ts +0 -5
  318. package/dist/types/src/SubPackages/react-dom/jsx/web.d.ts +0 -5
  319. package/dist/types/src/SubPackages/react-test-renderer/MemoExoticComponent/node.d.ts +0 -6
  320. package/dist/types/src/SubPackages/react-test-renderer/component/index.d.ts +0 -5
  321. package/dist/types/src/SubPackages/react-test-renderer/component/interface.d.ts +0 -3
  322. package/dist/types/src/SubPackages/react-test-renderer/component/node.d.ts +0 -4
  323. package/dist/types/src/SubPackages/react-test-renderer/component/pure.d.ts +0 -4
  324. package/dist/types/src/SubPackages/react-test-renderer/component/test/implementation.d.ts +0 -4
  325. package/dist/types/src/SubPackages/react-test-renderer/component/test/node.d.ts +0 -3
  326. package/dist/types/src/SubPackages/react-test-renderer/component/test/pure.d.ts +0 -4
  327. package/dist/types/src/SubPackages/react-test-renderer/component/test/web.d.ts +0 -3
  328. package/dist/types/src/SubPackages/react-test-renderer/component/web.d.ts +0 -4
  329. package/dist/types/src/SubPackages/react-test-renderer/fc/node.d.ts +0 -8
  330. package/dist/types/src/SubPackages/react-test-renderer/fc/web.d.ts +0 -9
  331. package/dist/types/src/SubPackages/react-test-renderer/jsx/index.d.ts +0 -11
  332. package/dist/types/src/SubPackages/react-test-renderer/jsx/node.d.ts +0 -4
  333. package/dist/types/src/SubPackages/react-test-renderer/jsx/pure.d.ts +0 -4
  334. package/dist/types/src/SubPackages/react-test-renderer/jsx/web.d.ts +0 -4
  335. package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/index.d.ts +0 -15
  336. package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/node.d.ts +0 -5
  337. package/dist/types/src/SubPackages/react-test-renderer/jsx-promised/web.d.ts +0 -5
  338. package/dist/types/src/examples/react/component/index.d.ts +0 -13
  339. package/dist/types/src/examples/react/component/test.d.ts +0 -17
  340. package/src/SubPackages/react/component/index.ts +0 -28
  341. package/src/SubPackages/react/component/node.ts +0 -17
  342. package/src/SubPackages/react/component/pure.ts +0 -17
  343. package/src/SubPackages/react/component/web.ts +0 -17
  344. package/src/SubPackages/react/jsx/index.ts +0 -75
  345. package/src/SubPackages/react/jsx/node.ts +0 -23
  346. package/src/SubPackages/react/jsx/pure.ts +0 -23
  347. package/src/SubPackages/react/jsx/web.ts +0 -24
  348. package/src/SubPackages/react-dom/component/dynamic.ts +0 -107
  349. package/src/SubPackages/react-dom/component/node.ts +0 -17
  350. package/src/SubPackages/react-dom/component/pure.ts +0 -17
  351. package/src/SubPackages/react-dom/component/static.ts +0 -41
  352. package/src/SubPackages/react-dom/component/web.ts +0 -32
  353. package/src/SubPackages/react-dom/jsx/dynamic.ts +0 -46
  354. package/src/SubPackages/react-dom/jsx/index.ts +0 -6
  355. package/src/SubPackages/react-dom/jsx/node.ts +0 -18
  356. package/src/SubPackages/react-dom/jsx/pure.ts +0 -18
  357. package/src/SubPackages/react-dom/jsx/static.ts +0 -87
  358. package/src/SubPackages/react-dom/jsx/web.ts +0 -26
  359. package/src/SubPackages/react-test-renderer/MemoExoticComponent/node.ts +0 -54
  360. package/src/SubPackages/react-test-renderer/component/index.ts +0 -32
  361. package/src/SubPackages/react-test-renderer/component/interface.ts +0 -43
  362. package/src/SubPackages/react-test-renderer/component/node.ts +0 -18
  363. package/src/SubPackages/react-test-renderer/component/pure.ts +0 -18
  364. package/src/SubPackages/react-test-renderer/component/test/implementation.ts +0 -63
  365. package/src/SubPackages/react-test-renderer/component/test/node.ts +0 -14
  366. package/src/SubPackages/react-test-renderer/component/test/pure.ts +0 -14
  367. package/src/SubPackages/react-test-renderer/component/test/web.ts +0 -14
  368. package/src/SubPackages/react-test-renderer/component/web.ts +0 -18
  369. package/src/SubPackages/react-test-renderer/fc/node.ts +0 -83
  370. package/src/SubPackages/react-test-renderer/fc/web.ts +0 -80
  371. package/src/SubPackages/react-test-renderer/jsx/index.ts +0 -61
  372. package/src/SubPackages/react-test-renderer/jsx/node.ts +0 -31
  373. package/src/SubPackages/react-test-renderer/jsx/pure.ts +0 -31
  374. package/src/SubPackages/react-test-renderer/jsx/web.ts +0 -32
  375. package/src/SubPackages/react-test-renderer/jsx-promised/index.ts +0 -73
  376. package/src/SubPackages/react-test-renderer/jsx-promised/node.ts +0 -36
  377. package/src/SubPackages/react-test-renderer/jsx-promised/web.ts +0 -36
  378. package/src/examples/react/component/index.tsx +0 -35
  379. package/src/examples/react/component/test.ts +0 -83
  380. package/testeranto/bundles/node/redux/metafile.json +0 -559
  381. package/testeranto/bundles/pure/redux/metafile.json +0 -554
  382. package/testeranto/bundles/web/redux/metafile.json +0 -504
  383. package/testeranto/bundles/web/redux/test/web.html +0 -19
  384. package/testeranto/reports/redux/config.json +0 -38
  385. package/testeranto/reports/redux/summary.json +0 -20
  386. /package/dist/{module/src/SubPackages/react-dom/jsx/index.js → types/src/SP__Polygon.test.d.ts} +0 -0
@@ -0,0 +1,1564 @@
1
+ [
2
+ {
3
+ "filePath": "/Users/adam/Code/testeranto/src/PM/__tests__/nodeSidecar.testeranto.ts",
4
+ "messages": [
5
+ {
6
+ "ruleId": "@typescript-eslint/no-unsafe-function-type",
7
+ "severity": 2,
8
+ "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
9
+ "line": 80,
10
+ "column": 23,
11
+ "nodeType": "Identifier",
12
+ "messageId": "bannedFunctionType",
13
+ "endLine": 80,
14
+ "endColumn": 31
15
+ },
16
+ {
17
+ "ruleId": "@typescript-eslint/no-unsafe-function-type",
18
+ "severity": 2,
19
+ "message": "The `Function` type accepts any function-like value.\nPrefer explicitly defining any function parameters and return type.",
20
+ "line": 82,
21
+ "column": 39,
22
+ "nodeType": "Identifier",
23
+ "messageId": "bannedFunctionType",
24
+ "endLine": 82,
25
+ "endColumn": 47
26
+ },
27
+ {
28
+ "ruleId": "@typescript-eslint/no-unused-vars",
29
+ "severity": 2,
30
+ "message": "'data' is defined but never used.",
31
+ "line": 101,
32
+ "column": 31,
33
+ "nodeType": null,
34
+ "messageId": "unusedVar",
35
+ "endLine": 101,
36
+ "endColumn": 35
37
+ },
38
+ {
39
+ "ruleId": "@typescript-eslint/no-unused-vars",
40
+ "severity": 2,
41
+ "message": "'testResource' is defined but never used.",
42
+ "line": 149,
43
+ "column": 44,
44
+ "nodeType": null,
45
+ "messageId": "unusedVar",
46
+ "endLine": 149,
47
+ "endColumn": 56
48
+ },
49
+ {
50
+ "ruleId": "@typescript-eslint/no-unused-vars",
51
+ "severity": 2,
52
+ "message": "'initialValues' is defined but never used.",
53
+ "line": 149,
54
+ "column": 58,
55
+ "nodeType": null,
56
+ "messageId": "unusedVar",
57
+ "endLine": 149,
58
+ "endColumn": 71
59
+ },
60
+ {
61
+ "ruleId": "@typescript-eslint/no-unused-vars",
62
+ "severity": 2,
63
+ "message": "'pm' is defined but never used.",
64
+ "line": 149,
65
+ "column": 73,
66
+ "nodeType": null,
67
+ "messageId": "unusedVar",
68
+ "endLine": 149,
69
+ "endColumn": 75
70
+ }
71
+ ],
72
+ "suppressedMessages": [],
73
+ "errorCount": 6,
74
+ "fatalErrorCount": 0,
75
+ "warningCount": 0,
76
+ "fixableErrorCount": 0,
77
+ "fixableWarningCount": 0,
78
+ "usedDeprecatedRules": []
79
+ },
80
+ {
81
+ "filePath": "/Users/adam/Code/testeranto/src/PM/sidecar.ts",
82
+ "messages": [
83
+ {
84
+ "ruleId": "@typescript-eslint/no-explicit-any",
85
+ "severity": 2,
86
+ "message": "Unexpected any. Specify a different type.",
87
+ "line": 8,
88
+ "column": 33,
89
+ "nodeType": "TSAnyKeyword",
90
+ "messageId": "unexpectedAny",
91
+ "endLine": 8,
92
+ "endColumn": 36,
93
+ "suggestions": [
94
+ {
95
+ "messageId": "suggestUnknown",
96
+ "fix": {
97
+ "range": [
98
+ 214,
99
+ 217
100
+ ],
101
+ "text": "unknown"
102
+ },
103
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
104
+ },
105
+ {
106
+ "messageId": "suggestNever",
107
+ "fix": {
108
+ "range": [
109
+ 214,
110
+ 217
111
+ ],
112
+ "text": "never"
113
+ },
114
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
115
+ }
116
+ ]
117
+ },
118
+ {
119
+ "ruleId": "@typescript-eslint/no-unused-vars",
120
+ "severity": 2,
121
+ "message": "'fPath' is defined but never used.",
122
+ "line": 12,
123
+ "column": 13,
124
+ "nodeType": null,
125
+ "messageId": "unusedVar",
126
+ "endLine": 12,
127
+ "endColumn": 18
128
+ },
129
+ {
130
+ "ruleId": "@typescript-eslint/no-unused-vars",
131
+ "severity": 2,
132
+ "message": "'value' is defined but never used.",
133
+ "line": 12,
134
+ "column": 28,
135
+ "nodeType": null,
136
+ "messageId": "unusedVar",
137
+ "endLine": 12,
138
+ "endColumn": 33
139
+ }
140
+ ],
141
+ "suppressedMessages": [],
142
+ "errorCount": 3,
143
+ "fatalErrorCount": 0,
144
+ "warningCount": 0,
145
+ "fixableErrorCount": 0,
146
+ "fixableWarningCount": 0,
147
+ "usedDeprecatedRules": []
148
+ },
149
+ {
150
+ "filePath": "/Users/adam/Code/testeranto/src/lib/abstractBase.ts",
151
+ "messages": [
152
+ {
153
+ "ruleId": "no-unsafe-finally",
154
+ "severity": 2,
155
+ "message": "Unsafe usage of ThrowStatement.",
156
+ "line": 318,
157
+ "column": 9,
158
+ "nodeType": "ThrowStatement",
159
+ "messageId": "unsafeUsage",
160
+ "endLine": 318,
161
+ "endColumn": 17
162
+ }
163
+ ],
164
+ "suppressedMessages": [
165
+ {
166
+ "ruleId": "@typescript-eslint/no-unused-vars",
167
+ "severity": 2,
168
+ "message": "'artifactory' is defined but never used.",
169
+ "line": 67,
170
+ "column": 5,
171
+ "nodeType": null,
172
+ "messageId": "unusedVar",
173
+ "endLine": 67,
174
+ "endColumn": 16,
175
+ "suppressions": [
176
+ {
177
+ "kind": "directive",
178
+ "justification": ""
179
+ }
180
+ ]
181
+ },
182
+ {
183
+ "ruleId": "@typescript-eslint/no-unused-vars",
184
+ "severity": 2,
185
+ "message": "'tr' is defined but never used.",
186
+ "line": 68,
187
+ "column": 5,
188
+ "nodeType": null,
189
+ "messageId": "unusedVar",
190
+ "endLine": 68,
191
+ "endColumn": 7,
192
+ "suppressions": [
193
+ {
194
+ "kind": "directive",
195
+ "justification": ""
196
+ }
197
+ ]
198
+ },
199
+ {
200
+ "ruleId": "@typescript-eslint/no-unused-vars",
201
+ "severity": 2,
202
+ "message": "'pm' is defined but never used.",
203
+ "line": 69,
204
+ "column": 5,
205
+ "nodeType": null,
206
+ "messageId": "unusedVar",
207
+ "endLine": 69,
208
+ "endColumn": 7,
209
+ "suppressions": [
210
+ {
211
+ "kind": "directive",
212
+ "justification": ""
213
+ }
214
+ ]
215
+ },
216
+ {
217
+ "ruleId": "@typescript-eslint/no-unused-vars",
218
+ "severity": 2,
219
+ "message": "'artifactory' is defined but never used.",
220
+ "line": 78,
221
+ "column": 32,
222
+ "nodeType": null,
223
+ "messageId": "unusedVar",
224
+ "endLine": 78,
225
+ "endColumn": 43,
226
+ "suppressions": [
227
+ {
228
+ "kind": "directive",
229
+ "justification": ""
230
+ }
231
+ ]
232
+ },
233
+ {
234
+ "ruleId": "@typescript-eslint/no-unused-vars",
235
+ "severity": 2,
236
+ "message": "'pm' is defined but never used.",
237
+ "line": 78,
238
+ "column": 63,
239
+ "nodeType": null,
240
+ "messageId": "unusedVar",
241
+ "endLine": 78,
242
+ "endColumn": 65,
243
+ "suppressions": [
244
+ {
245
+ "kind": "directive",
246
+ "justification": ""
247
+ }
248
+ ]
249
+ },
250
+ {
251
+ "ruleId": "@typescript-eslint/no-unused-vars",
252
+ "severity": 2,
253
+ "message": "'g' is assigned a value but never used.",
254
+ "line": 107,
255
+ "column": 23,
256
+ "nodeType": null,
257
+ "messageId": "unusedVar",
258
+ "endLine": 107,
259
+ "endColumn": 24,
260
+ "suppressions": [
261
+ {
262
+ "kind": "directive",
263
+ "justification": ""
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "ruleId": "@typescript-eslint/no-unused-vars",
269
+ "severity": 2,
270
+ "message": "'e' is defined but never used.",
271
+ "line": 120,
272
+ "column": 16,
273
+ "nodeType": null,
274
+ "messageId": "unusedVar",
275
+ "endLine": 120,
276
+ "endColumn": 17,
277
+ "suppressions": [
278
+ {
279
+ "kind": "directive",
280
+ "justification": ""
281
+ }
282
+ ]
283
+ },
284
+ {
285
+ "ruleId": "@typescript-eslint/no-unused-vars",
286
+ "severity": 2,
287
+ "message": "'ndx' is assigned a value but never used.",
288
+ "line": 129,
289
+ "column": 17,
290
+ "nodeType": null,
291
+ "messageId": "unusedVar",
292
+ "endLine": 129,
293
+ "endColumn": 20,
294
+ "suppressions": [
295
+ {
296
+ "kind": "directive",
297
+ "justification": ""
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "ruleId": "@typescript-eslint/no-explicit-any",
303
+ "severity": 2,
304
+ "message": "Unexpected any. Specify a different type.",
305
+ "line": 177,
306
+ "column": 9,
307
+ "nodeType": "TSAnyKeyword",
308
+ "messageId": "unexpectedAny",
309
+ "endLine": 177,
310
+ "endColumn": 12,
311
+ "suggestions": [
312
+ {
313
+ "messageId": "suggestUnknown",
314
+ "fix": {
315
+ "range": [
316
+ 4312,
317
+ 4315
318
+ ],
319
+ "text": "unknown"
320
+ },
321
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
322
+ },
323
+ {
324
+ "messageId": "suggestNever",
325
+ "fix": {
326
+ "range": [
327
+ 4312,
328
+ 4315
329
+ ],
330
+ "text": "never"
331
+ },
332
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
333
+ }
334
+ ],
335
+ "suppressions": [
336
+ {
337
+ "kind": "directive",
338
+ "justification": ""
339
+ }
340
+ ]
341
+ },
342
+ {
343
+ "ruleId": "@typescript-eslint/no-explicit-any",
344
+ "severity": 2,
345
+ "message": "Unexpected any. Specify a different type.",
346
+ "line": 181,
347
+ "column": 18,
348
+ "nodeType": "TSAnyKeyword",
349
+ "messageId": "unexpectedAny",
350
+ "endLine": 181,
351
+ "endColumn": 21,
352
+ "suggestions": [
353
+ {
354
+ "messageId": "suggestUnknown",
355
+ "fix": {
356
+ "range": [
357
+ 4408,
358
+ 4411
359
+ ],
360
+ "text": "unknown"
361
+ },
362
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
363
+ },
364
+ {
365
+ "messageId": "suggestNever",
366
+ "fix": {
367
+ "range": [
368
+ 4408,
369
+ 4411
370
+ ],
371
+ "text": "never"
372
+ },
373
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
374
+ }
375
+ ],
376
+ "suppressions": [
377
+ {
378
+ "kind": "directive",
379
+ "justification": ""
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "ruleId": "@typescript-eslint/no-explicit-any",
385
+ "severity": 2,
386
+ "message": "Unexpected any. Specify a different type.",
387
+ "line": 191,
388
+ "column": 20,
389
+ "nodeType": "TSAnyKeyword",
390
+ "messageId": "unexpectedAny",
391
+ "endLine": 191,
392
+ "endColumn": 23,
393
+ "suggestions": [
394
+ {
395
+ "messageId": "suggestUnknown",
396
+ "fix": {
397
+ "range": [
398
+ 4601,
399
+ 4604
400
+ ],
401
+ "text": "unknown"
402
+ },
403
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
404
+ },
405
+ {
406
+ "messageId": "suggestNever",
407
+ "fix": {
408
+ "range": [
409
+ 4601,
410
+ 4604
411
+ ],
412
+ "text": "never"
413
+ },
414
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
415
+ }
416
+ ],
417
+ "suppressions": [
418
+ {
419
+ "kind": "directive",
420
+ "justification": ""
421
+ }
422
+ ]
423
+ },
424
+ {
425
+ "ruleId": "@typescript-eslint/no-explicit-any",
426
+ "severity": 2,
427
+ "message": "Unexpected any. Specify a different type.",
428
+ "line": 222,
429
+ "column": 20,
430
+ "nodeType": "TSAnyKeyword",
431
+ "messageId": "unexpectedAny",
432
+ "endLine": 222,
433
+ "endColumn": 23,
434
+ "suggestions": [
435
+ {
436
+ "messageId": "suggestUnknown",
437
+ "fix": {
438
+ "range": [
439
+ 5299,
440
+ 5302
441
+ ],
442
+ "text": "unknown"
443
+ },
444
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
445
+ },
446
+ {
447
+ "messageId": "suggestNever",
448
+ "fix": {
449
+ "range": [
450
+ 5299,
451
+ 5302
452
+ ],
453
+ "text": "never"
454
+ },
455
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
456
+ }
457
+ ],
458
+ "suppressions": [
459
+ {
460
+ "kind": "directive",
461
+ "justification": ""
462
+ }
463
+ ]
464
+ },
465
+ {
466
+ "ruleId": "@typescript-eslint/no-unused-vars",
467
+ "severity": 2,
468
+ "message": "'key' is defined but never used.",
469
+ "line": 228,
470
+ "column": 5,
471
+ "nodeType": null,
472
+ "messageId": "unusedVar",
473
+ "endLine": 228,
474
+ "endColumn": 8,
475
+ "suppressions": [
476
+ {
477
+ "kind": "directive",
478
+ "justification": ""
479
+ }
480
+ ]
481
+ },
482
+ {
483
+ "ruleId": "@typescript-eslint/no-unused-vars",
484
+ "severity": 2,
485
+ "message": "'artifactory' is defined but never used.",
486
+ "line": 229,
487
+ "column": 5,
488
+ "nodeType": null,
489
+ "messageId": "unusedVar",
490
+ "endLine": 229,
491
+ "endColumn": 16,
492
+ "suppressions": [
493
+ {
494
+ "kind": "directive",
495
+ "justification": ""
496
+ }
497
+ ]
498
+ },
499
+ {
500
+ "ruleId": "@typescript-eslint/no-unused-vars",
501
+ "severity": 2,
502
+ "message": "'pm' is defined but never used.",
503
+ "line": 230,
504
+ "column": 5,
505
+ "nodeType": null,
506
+ "messageId": "unusedVar",
507
+ "endLine": 230,
508
+ "endColumn": 7,
509
+ "suppressions": [
510
+ {
511
+ "kind": "directive",
512
+ "justification": ""
513
+ }
514
+ ]
515
+ },
516
+ {
517
+ "ruleId": "@typescript-eslint/no-explicit-any",
518
+ "severity": 2,
519
+ "message": "Unexpected any. Specify a different type.",
520
+ "line": 342,
521
+ "column": 14,
522
+ "nodeType": "TSAnyKeyword",
523
+ "messageId": "unexpectedAny",
524
+ "endLine": 342,
525
+ "endColumn": 17,
526
+ "suggestions": [
527
+ {
528
+ "messageId": "suggestUnknown",
529
+ "fix": {
530
+ "range": [
531
+ 7993,
532
+ 7996
533
+ ],
534
+ "text": "unknown"
535
+ },
536
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
537
+ },
538
+ {
539
+ "messageId": "suggestNever",
540
+ "fix": {
541
+ "range": [
542
+ 7993,
543
+ 7996
544
+ ],
545
+ "text": "never"
546
+ },
547
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
548
+ }
549
+ ],
550
+ "suppressions": [
551
+ {
552
+ "kind": "directive",
553
+ "justification": ""
554
+ }
555
+ ]
556
+ },
557
+ {
558
+ "ruleId": "@typescript-eslint/no-explicit-any",
559
+ "severity": 2,
560
+ "message": "Unexpected any. Specify a different type.",
561
+ "line": 400,
562
+ "column": 14,
563
+ "nodeType": "TSAnyKeyword",
564
+ "messageId": "unexpectedAny",
565
+ "endLine": 400,
566
+ "endColumn": 17,
567
+ "suggestions": [
568
+ {
569
+ "messageId": "suggestUnknown",
570
+ "fix": {
571
+ "range": [
572
+ 9165,
573
+ 9168
574
+ ],
575
+ "text": "unknown"
576
+ },
577
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
578
+ },
579
+ {
580
+ "messageId": "suggestNever",
581
+ "fix": {
582
+ "range": [
583
+ 9165,
584
+ 9168
585
+ ],
586
+ "text": "never"
587
+ },
588
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
589
+ }
590
+ ],
591
+ "suppressions": [
592
+ {
593
+ "kind": "directive",
594
+ "justification": ""
595
+ }
596
+ ]
597
+ },
598
+ {
599
+ "ruleId": "@typescript-eslint/no-explicit-any",
600
+ "severity": 2,
601
+ "message": "Unexpected any. Specify a different type.",
602
+ "line": 437,
603
+ "column": 45,
604
+ "nodeType": "TSAnyKeyword",
605
+ "messageId": "unexpectedAny",
606
+ "endLine": 437,
607
+ "endColumn": 48,
608
+ "suggestions": [
609
+ {
610
+ "messageId": "suggestUnknown",
611
+ "fix": {
612
+ "range": [
613
+ 9972,
614
+ 9975
615
+ ],
616
+ "text": "unknown"
617
+ },
618
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
619
+ },
620
+ {
621
+ "messageId": "suggestNever",
622
+ "fix": {
623
+ "range": [
624
+ 9972,
625
+ 9975
626
+ ],
627
+ "text": "never"
628
+ },
629
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
630
+ }
631
+ ],
632
+ "suppressions": [
633
+ {
634
+ "kind": "directive",
635
+ "justification": ""
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "ruleId": "@typescript-eslint/no-explicit-any",
641
+ "severity": 2,
642
+ "message": "Unexpected any. Specify a different type.",
643
+ "line": 438,
644
+ "column": 18,
645
+ "nodeType": "TSAnyKeyword",
646
+ "messageId": "unexpectedAny",
647
+ "endLine": 438,
648
+ "endColumn": 21,
649
+ "suggestions": [
650
+ {
651
+ "messageId": "suggestUnknown",
652
+ "fix": {
653
+ "range": [
654
+ 9994,
655
+ 9997
656
+ ],
657
+ "text": "unknown"
658
+ },
659
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
660
+ },
661
+ {
662
+ "messageId": "suggestNever",
663
+ "fix": {
664
+ "range": [
665
+ 9994,
666
+ 9997
667
+ ],
668
+ "text": "never"
669
+ },
670
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
671
+ }
672
+ ],
673
+ "suppressions": [
674
+ {
675
+ "kind": "directive",
676
+ "justification": ""
677
+ }
678
+ ]
679
+ },
680
+ {
681
+ "ruleId": "@typescript-eslint/no-explicit-any",
682
+ "severity": 2,
683
+ "message": "Unexpected any. Specify a different type.",
684
+ "line": 440,
685
+ "column": 12,
686
+ "nodeType": "TSAnyKeyword",
687
+ "messageId": "unexpectedAny",
688
+ "endLine": 440,
689
+ "endColumn": 15,
690
+ "suggestions": [
691
+ {
692
+ "messageId": "suggestUnknown",
693
+ "fix": {
694
+ "range": [
695
+ 10032,
696
+ 10035
697
+ ],
698
+ "text": "unknown"
699
+ },
700
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
701
+ },
702
+ {
703
+ "messageId": "suggestNever",
704
+ "fix": {
705
+ "range": [
706
+ 10032,
707
+ 10035
708
+ ],
709
+ "text": "never"
710
+ },
711
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
712
+ }
713
+ ],
714
+ "suppressions": [
715
+ {
716
+ "kind": "directive",
717
+ "justification": ""
718
+ }
719
+ ]
720
+ },
721
+ {
722
+ "ruleId": "@typescript-eslint/no-explicit-any",
723
+ "severity": 2,
724
+ "message": "Unexpected any. Specify a different type.",
725
+ "line": 445,
726
+ "column": 47,
727
+ "nodeType": "TSAnyKeyword",
728
+ "messageId": "unexpectedAny",
729
+ "endLine": 445,
730
+ "endColumn": 50,
731
+ "suggestions": [
732
+ {
733
+ "messageId": "suggestUnknown",
734
+ "fix": {
735
+ "range": [
736
+ 10141,
737
+ 10144
738
+ ],
739
+ "text": "unknown"
740
+ },
741
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
742
+ },
743
+ {
744
+ "messageId": "suggestNever",
745
+ "fix": {
746
+ "range": [
747
+ 10141,
748
+ 10144
749
+ ],
750
+ "text": "never"
751
+ },
752
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
753
+ }
754
+ ],
755
+ "suppressions": [
756
+ {
757
+ "kind": "directive",
758
+ "justification": ""
759
+ }
760
+ ]
761
+ },
762
+ {
763
+ "ruleId": "@typescript-eslint/no-explicit-any",
764
+ "severity": 2,
765
+ "message": "Unexpected any. Specify a different type.",
766
+ "line": 446,
767
+ "column": 8,
768
+ "nodeType": "TSAnyKeyword",
769
+ "messageId": "unexpectedAny",
770
+ "endLine": 446,
771
+ "endColumn": 11,
772
+ "suggestions": [
773
+ {
774
+ "messageId": "suggestUnknown",
775
+ "fix": {
776
+ "range": [
777
+ 10153,
778
+ 10156
779
+ ],
780
+ "text": "unknown"
781
+ },
782
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
783
+ },
784
+ {
785
+ "messageId": "suggestNever",
786
+ "fix": {
787
+ "range": [
788
+ 10153,
789
+ 10156
790
+ ],
791
+ "text": "never"
792
+ },
793
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
794
+ }
795
+ ],
796
+ "suppressions": [
797
+ {
798
+ "kind": "directive",
799
+ "justification": ""
800
+ }
801
+ ]
802
+ },
803
+ {
804
+ "ruleId": "@typescript-eslint/no-explicit-any",
805
+ "severity": 2,
806
+ "message": "Unexpected any. Specify a different type.",
807
+ "line": 447,
808
+ "column": 14,
809
+ "nodeType": "TSAnyKeyword",
810
+ "messageId": "unexpectedAny",
811
+ "endLine": 447,
812
+ "endColumn": 17,
813
+ "suggestions": [
814
+ {
815
+ "messageId": "suggestUnknown",
816
+ "fix": {
817
+ "range": [
818
+ 10171,
819
+ 10174
820
+ ],
821
+ "text": "unknown"
822
+ },
823
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
824
+ },
825
+ {
826
+ "messageId": "suggestNever",
827
+ "fix": {
828
+ "range": [
829
+ 10171,
830
+ 10174
831
+ ],
832
+ "text": "never"
833
+ },
834
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
835
+ }
836
+ ],
837
+ "suppressions": [
838
+ {
839
+ "kind": "directive",
840
+ "justification": ""
841
+ }
842
+ ]
843
+ },
844
+ {
845
+ "ruleId": "@typescript-eslint/no-unused-vars",
846
+ "severity": 2,
847
+ "message": "'key' is defined but never used.",
848
+ "line": 475,
849
+ "column": 5,
850
+ "nodeType": null,
851
+ "messageId": "unusedVar",
852
+ "endLine": 475,
853
+ "endColumn": 8,
854
+ "suppressions": [
855
+ {
856
+ "kind": "directive",
857
+ "justification": ""
858
+ }
859
+ ]
860
+ },
861
+ {
862
+ "ruleId": "@typescript-eslint/no-unused-vars",
863
+ "severity": 2,
864
+ "message": "'artifactory' is defined but never used.",
865
+ "line": 476,
866
+ "column": 5,
867
+ "nodeType": null,
868
+ "messageId": "unusedVar",
869
+ "endLine": 476,
870
+ "endColumn": 16,
871
+ "suppressions": [
872
+ {
873
+ "kind": "directive",
874
+ "justification": ""
875
+ }
876
+ ]
877
+ },
878
+ {
879
+ "ruleId": "@typescript-eslint/no-unused-vars",
880
+ "severity": 2,
881
+ "message": "'pm' is defined but never used.",
882
+ "line": 477,
883
+ "column": 5,
884
+ "nodeType": null,
885
+ "messageId": "unusedVar",
886
+ "endLine": 477,
887
+ "endColumn": 7,
888
+ "suppressions": [
889
+ {
890
+ "kind": "directive",
891
+ "justification": ""
892
+ }
893
+ ]
894
+ }
895
+ ],
896
+ "errorCount": 1,
897
+ "fatalErrorCount": 0,
898
+ "warningCount": 0,
899
+ "fixableErrorCount": 0,
900
+ "fixableWarningCount": 0,
901
+ "usedDeprecatedRules": []
902
+ },
903
+ {
904
+ "filePath": "/Users/adam/Code/testeranto/src/lib/core.ts",
905
+ "messages": [
906
+ {
907
+ "ruleId": "@typescript-eslint/no-unused-vars",
908
+ "severity": 2,
909
+ "message": "'artifactory' is defined but never used.",
910
+ "line": 73,
911
+ "column": 15,
912
+ "nodeType": null,
913
+ "messageId": "unusedVar",
914
+ "endLine": 73,
915
+ "endColumn": 26
916
+ },
917
+ {
918
+ "ruleId": "@typescript-eslint/no-unused-vars",
919
+ "severity": 2,
920
+ "message": "'tr' is defined but never used.",
921
+ "line": 74,
922
+ "column": 15,
923
+ "nodeType": null,
924
+ "messageId": "unusedVar",
925
+ "endLine": 74,
926
+ "endColumn": 17
927
+ },
928
+ {
929
+ "ruleId": "@typescript-eslint/no-unused-vars",
930
+ "severity": 2,
931
+ "message": "'pm' is defined but never used.",
932
+ "line": 75,
933
+ "column": 15,
934
+ "nodeType": null,
935
+ "messageId": "unusedVar",
936
+ "endLine": 75,
937
+ "endColumn": 17
938
+ }
939
+ ],
940
+ "suppressedMessages": [
941
+ {
942
+ "ruleId": "@typescript-eslint/no-explicit-any",
943
+ "severity": 2,
944
+ "message": "Unexpected any. Specify a different type.",
945
+ "line": 37,
946
+ "column": 30,
947
+ "nodeType": "TSAnyKeyword",
948
+ "messageId": "unexpectedAny",
949
+ "endLine": 37,
950
+ "endColumn": 33,
951
+ "suggestions": [
952
+ {
953
+ "messageId": "suggestUnknown",
954
+ "fix": {
955
+ "range": [
956
+ 812,
957
+ 815
958
+ ],
959
+ "text": "unknown"
960
+ },
961
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
962
+ },
963
+ {
964
+ "messageId": "suggestNever",
965
+ "fix": {
966
+ "range": [
967
+ 812,
968
+ 815
969
+ ],
970
+ "text": "never"
971
+ },
972
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
973
+ }
974
+ ],
975
+ "suppressions": [
976
+ {
977
+ "kind": "directive",
978
+ "justification": ""
979
+ }
980
+ ]
981
+ },
982
+ {
983
+ "ruleId": "@typescript-eslint/no-explicit-any",
984
+ "severity": 2,
985
+ "message": "Unexpected any. Specify a different type.",
986
+ "line": 38,
987
+ "column": 30,
988
+ "nodeType": "TSAnyKeyword",
989
+ "messageId": "unexpectedAny",
990
+ "endLine": 38,
991
+ "endColumn": 33,
992
+ "suggestions": [
993
+ {
994
+ "messageId": "suggestUnknown",
995
+ "fix": {
996
+ "range": [
997
+ 847,
998
+ 850
999
+ ],
1000
+ "text": "unknown"
1001
+ },
1002
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1003
+ },
1004
+ {
1005
+ "messageId": "suggestNever",
1006
+ "fix": {
1007
+ "range": [
1008
+ 847,
1009
+ 850
1010
+ ],
1011
+ "text": "never"
1012
+ },
1013
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1014
+ }
1015
+ ],
1016
+ "suppressions": [
1017
+ {
1018
+ "kind": "directive",
1019
+ "justification": ""
1020
+ }
1021
+ ]
1022
+ },
1023
+ {
1024
+ "ruleId": "@typescript-eslint/no-explicit-any",
1025
+ "severity": 2,
1026
+ "message": "Unexpected any. Specify a different type.",
1027
+ "line": 39,
1028
+ "column": 29,
1029
+ "nodeType": "TSAnyKeyword",
1030
+ "messageId": "unexpectedAny",
1031
+ "endLine": 39,
1032
+ "endColumn": 32,
1033
+ "suggestions": [
1034
+ {
1035
+ "messageId": "suggestUnknown",
1036
+ "fix": {
1037
+ "range": [
1038
+ 881,
1039
+ 884
1040
+ ],
1041
+ "text": "unknown"
1042
+ },
1043
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1044
+ },
1045
+ {
1046
+ "messageId": "suggestNever",
1047
+ "fix": {
1048
+ "range": [
1049
+ 881,
1050
+ 884
1051
+ ],
1052
+ "text": "never"
1053
+ },
1054
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1055
+ }
1056
+ ],
1057
+ "suppressions": [
1058
+ {
1059
+ "kind": "directive",
1060
+ "justification": ""
1061
+ }
1062
+ ]
1063
+ },
1064
+ {
1065
+ "ruleId": "@typescript-eslint/no-explicit-any",
1066
+ "severity": 2,
1067
+ "message": "Unexpected any. Specify a different type.",
1068
+ "line": 40,
1069
+ "column": 29,
1070
+ "nodeType": "TSAnyKeyword",
1071
+ "messageId": "unexpectedAny",
1072
+ "endLine": 40,
1073
+ "endColumn": 32,
1074
+ "suggestions": [
1075
+ {
1076
+ "messageId": "suggestUnknown",
1077
+ "fix": {
1078
+ "range": [
1079
+ 915,
1080
+ 918
1081
+ ],
1082
+ "text": "unknown"
1083
+ },
1084
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1085
+ },
1086
+ {
1087
+ "messageId": "suggestNever",
1088
+ "fix": {
1089
+ "range": [
1090
+ 915,
1091
+ 918
1092
+ ],
1093
+ "text": "never"
1094
+ },
1095
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1096
+ }
1097
+ ],
1098
+ "suppressions": [
1099
+ {
1100
+ "kind": "directive",
1101
+ "justification": ""
1102
+ }
1103
+ ]
1104
+ },
1105
+ {
1106
+ "ruleId": "@typescript-eslint/no-explicit-any",
1107
+ "severity": 2,
1108
+ "message": "Unexpected any. Specify a different type.",
1109
+ "line": 41,
1110
+ "column": 30,
1111
+ "nodeType": "TSAnyKeyword",
1112
+ "messageId": "unexpectedAny",
1113
+ "endLine": 41,
1114
+ "endColumn": 33,
1115
+ "suggestions": [
1116
+ {
1117
+ "messageId": "suggestUnknown",
1118
+ "fix": {
1119
+ "range": [
1120
+ 950,
1121
+ 953
1122
+ ],
1123
+ "text": "unknown"
1124
+ },
1125
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1126
+ },
1127
+ {
1128
+ "messageId": "suggestNever",
1129
+ "fix": {
1130
+ "range": [
1131
+ 950,
1132
+ 953
1133
+ ],
1134
+ "text": "never"
1135
+ },
1136
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1137
+ }
1138
+ ],
1139
+ "suppressions": [
1140
+ {
1141
+ "kind": "directive",
1142
+ "justification": ""
1143
+ }
1144
+ ]
1145
+ },
1146
+ {
1147
+ "ruleId": "@typescript-eslint/no-explicit-any",
1148
+ "severity": 2,
1149
+ "message": "Unexpected any. Specify a different type.",
1150
+ "line": 76,
1151
+ "column": 27,
1152
+ "nodeType": "TSAnyKeyword",
1153
+ "messageId": "unexpectedAny",
1154
+ "endLine": 76,
1155
+ "endColumn": 30,
1156
+ "suggestions": [
1157
+ {
1158
+ "messageId": "suggestUnknown",
1159
+ "fix": {
1160
+ "range": [
1161
+ 1998,
1162
+ 2001
1163
+ ],
1164
+ "text": "unknown"
1165
+ },
1166
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1167
+ },
1168
+ {
1169
+ "messageId": "suggestNever",
1170
+ "fix": {
1171
+ "range": [
1172
+ 1998,
1173
+ 2001
1174
+ ],
1175
+ "text": "never"
1176
+ },
1177
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1178
+ }
1179
+ ],
1180
+ "suppressions": [
1181
+ {
1182
+ "kind": "directive",
1183
+ "justification": ""
1184
+ }
1185
+ ]
1186
+ },
1187
+ {
1188
+ "ruleId": "@typescript-eslint/no-explicit-any",
1189
+ "severity": 2,
1190
+ "message": "Unexpected any. Specify a different type.",
1191
+ "line": 84,
1192
+ "column": 12,
1193
+ "nodeType": "TSAnyKeyword",
1194
+ "messageId": "unexpectedAny",
1195
+ "endLine": 84,
1196
+ "endColumn": 15,
1197
+ "suggestions": [
1198
+ {
1199
+ "messageId": "suggestUnknown",
1200
+ "fix": {
1201
+ "range": [
1202
+ 2152,
1203
+ 2155
1204
+ ],
1205
+ "text": "unknown"
1206
+ },
1207
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1208
+ },
1209
+ {
1210
+ "messageId": "suggestNever",
1211
+ "fix": {
1212
+ "range": [
1213
+ 2152,
1214
+ 2155
1215
+ ],
1216
+ "text": "never"
1217
+ },
1218
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1219
+ }
1220
+ ],
1221
+ "suppressions": [
1222
+ {
1223
+ "kind": "directive",
1224
+ "justification": ""
1225
+ }
1226
+ ]
1227
+ },
1228
+ {
1229
+ "ruleId": "@typescript-eslint/no-explicit-any",
1230
+ "severity": 2,
1231
+ "message": "Unexpected any. Specify a different type.",
1232
+ "line": 117,
1233
+ "column": 12,
1234
+ "nodeType": "TSAnyKeyword",
1235
+ "messageId": "unexpectedAny",
1236
+ "endLine": 117,
1237
+ "endColumn": 15,
1238
+ "suggestions": [
1239
+ {
1240
+ "messageId": "suggestUnknown",
1241
+ "fix": {
1242
+ "range": [
1243
+ 2866,
1244
+ 2869
1245
+ ],
1246
+ "text": "unknown"
1247
+ },
1248
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1249
+ },
1250
+ {
1251
+ "messageId": "suggestNever",
1252
+ "fix": {
1253
+ "range": [
1254
+ 2866,
1255
+ 2869
1256
+ ],
1257
+ "text": "never"
1258
+ },
1259
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1260
+ }
1261
+ ],
1262
+ "suppressions": [
1263
+ {
1264
+ "kind": "directive",
1265
+ "justification": ""
1266
+ }
1267
+ ]
1268
+ },
1269
+ {
1270
+ "ruleId": "@typescript-eslint/no-explicit-any",
1271
+ "severity": 2,
1272
+ "message": "Unexpected any. Specify a different type.",
1273
+ "line": 138,
1274
+ "column": 12,
1275
+ "nodeType": "TSAnyKeyword",
1276
+ "messageId": "unexpectedAny",
1277
+ "endLine": 138,
1278
+ "endColumn": 15,
1279
+ "suggestions": [
1280
+ {
1281
+ "messageId": "suggestUnknown",
1282
+ "fix": {
1283
+ "range": [
1284
+ 3407,
1285
+ 3410
1286
+ ],
1287
+ "text": "unknown"
1288
+ },
1289
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1290
+ },
1291
+ {
1292
+ "messageId": "suggestNever",
1293
+ "fix": {
1294
+ "range": [
1295
+ 3407,
1296
+ 3410
1297
+ ],
1298
+ "text": "never"
1299
+ },
1300
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1301
+ }
1302
+ ],
1303
+ "suppressions": [
1304
+ {
1305
+ "kind": "directive",
1306
+ "justification": ""
1307
+ }
1308
+ ]
1309
+ },
1310
+ {
1311
+ "ruleId": "@typescript-eslint/no-explicit-any",
1312
+ "severity": 2,
1313
+ "message": "Unexpected any. Specify a different type.",
1314
+ "line": 142,
1315
+ "column": 18,
1316
+ "nodeType": "TSAnyKeyword",
1317
+ "messageId": "unexpectedAny",
1318
+ "endLine": 142,
1319
+ "endColumn": 21,
1320
+ "suggestions": [
1321
+ {
1322
+ "messageId": "suggestUnknown",
1323
+ "fix": {
1324
+ "range": [
1325
+ 3492,
1326
+ 3495
1327
+ ],
1328
+ "text": "unknown"
1329
+ },
1330
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1331
+ },
1332
+ {
1333
+ "messageId": "suggestNever",
1334
+ "fix": {
1335
+ "range": [
1336
+ 3492,
1337
+ 3495
1338
+ ],
1339
+ "text": "never"
1340
+ },
1341
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1342
+ }
1343
+ ],
1344
+ "suppressions": [
1345
+ {
1346
+ "kind": "directive",
1347
+ "justification": ""
1348
+ }
1349
+ ]
1350
+ },
1351
+ {
1352
+ "ruleId": "@typescript-eslint/no-explicit-any",
1353
+ "severity": 2,
1354
+ "message": "Unexpected any. Specify a different type.",
1355
+ "line": 144,
1356
+ "column": 25,
1357
+ "nodeType": "TSAnyKeyword",
1358
+ "messageId": "unexpectedAny",
1359
+ "endLine": 144,
1360
+ "endColumn": 28,
1361
+ "suggestions": [
1362
+ {
1363
+ "messageId": "suggestUnknown",
1364
+ "fix": {
1365
+ "range": [
1366
+ 3539,
1367
+ 3542
1368
+ ],
1369
+ "text": "unknown"
1370
+ },
1371
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1372
+ },
1373
+ {
1374
+ "messageId": "suggestNever",
1375
+ "fix": {
1376
+ "range": [
1377
+ 3539,
1378
+ 3542
1379
+ ],
1380
+ "text": "never"
1381
+ },
1382
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1383
+ }
1384
+ ],
1385
+ "suppressions": [
1386
+ {
1387
+ "kind": "directive",
1388
+ "justification": ""
1389
+ }
1390
+ ]
1391
+ },
1392
+ {
1393
+ "ruleId": "@typescript-eslint/no-explicit-any",
1394
+ "severity": 2,
1395
+ "message": "Unexpected any. Specify a different type.",
1396
+ "line": 154,
1397
+ "column": 12,
1398
+ "nodeType": "TSAnyKeyword",
1399
+ "messageId": "unexpectedAny",
1400
+ "endLine": 154,
1401
+ "endColumn": 15,
1402
+ "suggestions": [
1403
+ {
1404
+ "messageId": "suggestUnknown",
1405
+ "fix": {
1406
+ "range": [
1407
+ 3764,
1408
+ 3767
1409
+ ],
1410
+ "text": "unknown"
1411
+ },
1412
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1413
+ },
1414
+ {
1415
+ "messageId": "suggestNever",
1416
+ "fix": {
1417
+ "range": [
1418
+ 3764,
1419
+ 3767
1420
+ ],
1421
+ "text": "never"
1422
+ },
1423
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1424
+ }
1425
+ ],
1426
+ "suppressions": [
1427
+ {
1428
+ "kind": "directive",
1429
+ "justification": ""
1430
+ }
1431
+ ]
1432
+ },
1433
+ {
1434
+ "ruleId": "@typescript-eslint/no-explicit-any",
1435
+ "severity": 2,
1436
+ "message": "Unexpected any. Specify a different type.",
1437
+ "line": 157,
1438
+ "column": 24,
1439
+ "nodeType": "TSAnyKeyword",
1440
+ "messageId": "unexpectedAny",
1441
+ "endLine": 157,
1442
+ "endColumn": 27,
1443
+ "suggestions": [
1444
+ {
1445
+ "messageId": "suggestUnknown",
1446
+ "fix": {
1447
+ "range": [
1448
+ 3834,
1449
+ 3837
1450
+ ],
1451
+ "text": "unknown"
1452
+ },
1453
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1454
+ },
1455
+ {
1456
+ "messageId": "suggestNever",
1457
+ "fix": {
1458
+ "range": [
1459
+ 3834,
1460
+ 3837
1461
+ ],
1462
+ "text": "never"
1463
+ },
1464
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1465
+ }
1466
+ ],
1467
+ "suppressions": [
1468
+ {
1469
+ "kind": "directive",
1470
+ "justification": ""
1471
+ }
1472
+ ]
1473
+ },
1474
+ {
1475
+ "ruleId": "@typescript-eslint/no-explicit-any",
1476
+ "severity": 2,
1477
+ "message": "Unexpected any. Specify a different type.",
1478
+ "line": 162,
1479
+ "column": 55,
1480
+ "nodeType": "TSAnyKeyword",
1481
+ "messageId": "unexpectedAny",
1482
+ "endLine": 162,
1483
+ "endColumn": 58,
1484
+ "suggestions": [
1485
+ {
1486
+ "messageId": "suggestUnknown",
1487
+ "fix": {
1488
+ "range": [
1489
+ 3969,
1490
+ 3972
1491
+ ],
1492
+ "text": "unknown"
1493
+ },
1494
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1495
+ },
1496
+ {
1497
+ "messageId": "suggestNever",
1498
+ "fix": {
1499
+ "range": [
1500
+ 3969,
1501
+ 3972
1502
+ ],
1503
+ "text": "never"
1504
+ },
1505
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1506
+ }
1507
+ ],
1508
+ "suppressions": [
1509
+ {
1510
+ "kind": "directive",
1511
+ "justification": ""
1512
+ }
1513
+ ]
1514
+ },
1515
+ {
1516
+ "ruleId": "@typescript-eslint/no-explicit-any",
1517
+ "severity": 2,
1518
+ "message": "Unexpected any. Specify a different type.",
1519
+ "line": 198,
1520
+ "column": 12,
1521
+ "nodeType": "TSAnyKeyword",
1522
+ "messageId": "unexpectedAny",
1523
+ "endLine": 198,
1524
+ "endColumn": 15,
1525
+ "suggestions": [
1526
+ {
1527
+ "messageId": "suggestUnknown",
1528
+ "fix": {
1529
+ "range": [
1530
+ 4769,
1531
+ 4772
1532
+ ],
1533
+ "text": "unknown"
1534
+ },
1535
+ "desc": "Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct."
1536
+ },
1537
+ {
1538
+ "messageId": "suggestNever",
1539
+ "fix": {
1540
+ "range": [
1541
+ 4769,
1542
+ 4772
1543
+ ],
1544
+ "text": "never"
1545
+ },
1546
+ "desc": "Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of."
1547
+ }
1548
+ ],
1549
+ "suppressions": [
1550
+ {
1551
+ "kind": "directive",
1552
+ "justification": ""
1553
+ }
1554
+ ]
1555
+ }
1556
+ ],
1557
+ "errorCount": 3,
1558
+ "fatalErrorCount": 0,
1559
+ "warningCount": 0,
1560
+ "fixableErrorCount": 0,
1561
+ "fixableWarningCount": 0,
1562
+ "usedDeprecatedRules": []
1563
+ }
1564
+ ]