xo 0.52.3 → 0.53.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 (1089) hide show
  1. package/cli.js +1 -0
  2. package/lib/options-manager.js +1 -1
  3. package/node_modules/@types/semver/LICENSE +21 -0
  4. package/node_modules/@types/semver/README.md +16 -0
  5. package/node_modules/@types/semver/classes/comparator.d.ts +17 -0
  6. package/node_modules/@types/semver/classes/range.d.ts +21 -0
  7. package/node_modules/@types/semver/classes/semver.d.ts +62 -0
  8. package/node_modules/@types/semver/functions/clean.d.ts +8 -0
  9. package/node_modules/@types/semver/functions/cmp.d.ts +16 -0
  10. package/node_modules/@types/semver/functions/coerce.d.ts +12 -0
  11. package/node_modules/@types/semver/functions/compare-build.d.ts +21 -0
  12. package/node_modules/@types/semver/functions/compare-loose.d.ts +5 -0
  13. package/node_modules/@types/semver/functions/compare.d.ts +20 -0
  14. package/node_modules/@types/semver/functions/diff.d.ts +9 -0
  15. package/node_modules/@types/semver/functions/eq.d.ts +9 -0
  16. package/node_modules/@types/semver/functions/gt.d.ts +9 -0
  17. package/node_modules/@types/semver/functions/gte.d.ts +9 -0
  18. package/node_modules/@types/semver/functions/inc.d.ts +15 -0
  19. package/node_modules/@types/semver/functions/lt.d.ts +9 -0
  20. package/node_modules/@types/semver/functions/lte.d.ts +8 -0
  21. package/node_modules/@types/semver/functions/major.d.ts +9 -0
  22. package/node_modules/@types/semver/functions/minor.d.ts +9 -0
  23. package/node_modules/@types/semver/functions/neq.d.ts +9 -0
  24. package/node_modules/@types/semver/functions/parse.d.ts +12 -0
  25. package/node_modules/@types/semver/functions/patch.d.ts +9 -0
  26. package/node_modules/@types/semver/functions/prerelease.d.ts +12 -0
  27. package/node_modules/@types/semver/functions/rcompare.d.ts +15 -0
  28. package/node_modules/@types/semver/functions/rsort.d.ts +9 -0
  29. package/node_modules/@types/semver/functions/satisfies.d.ts +14 -0
  30. package/node_modules/@types/semver/functions/sort.d.ts +9 -0
  31. package/node_modules/@types/semver/functions/valid.d.ts +11 -0
  32. package/node_modules/@types/semver/index.d.ts +136 -0
  33. package/node_modules/@types/semver/internals/identifiers.d.ts +13 -0
  34. package/node_modules/@types/semver/package.json +50 -0
  35. package/node_modules/@types/semver/preload.d.ts +2 -0
  36. package/node_modules/@types/semver/ranges/gtr.d.ts +14 -0
  37. package/node_modules/@types/semver/ranges/intersects.d.ts +13 -0
  38. package/node_modules/@types/semver/ranges/ltr.d.ts +14 -0
  39. package/node_modules/@types/semver/ranges/max-satisfying.d.ts +14 -0
  40. package/node_modules/@types/semver/ranges/min-satisfying.d.ts +14 -0
  41. package/node_modules/@types/semver/ranges/min-version.d.ts +10 -0
  42. package/node_modules/@types/semver/ranges/outside.d.ts +15 -0
  43. package/node_modules/@types/semver/ranges/simplify.d.ts +14 -0
  44. package/node_modules/@types/semver/ranges/subset.d.ts +9 -0
  45. package/node_modules/@types/semver/ranges/to-comparators.d.ts +9 -0
  46. package/node_modules/@types/semver/ranges/valid.d.ts +12 -0
  47. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js +2 -1
  48. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js.map +1 -1
  49. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js +1 -0
  50. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js.map +1 -1
  51. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +1 -1
  52. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js.map +1 -1
  53. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +1 -1
  54. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js.map +1 -1
  55. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +1 -1
  56. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js.map +1 -1
  57. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +1 -1
  58. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js.map +1 -1
  59. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js.map +1 -1
  60. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js.map +1 -1
  61. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js +1 -1
  62. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js.map +1 -1
  63. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js.map +1 -1
  64. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js +1 -1
  65. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js.map +1 -1
  66. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js +1 -1
  67. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js.map +1 -1
  68. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js.map +1 -1
  69. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +1 -1
  70. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js.map +1 -1
  71. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +1 -1
  72. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js.map +1 -1
  73. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js.map +1 -1
  74. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js.map +1 -1
  75. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +99 -24
  76. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js.map +1 -1
  77. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +1 -1
  78. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js.map +1 -1
  79. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +2 -2
  80. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js.map +1 -1
  81. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js.map +1 -1
  82. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js.map +1 -1
  83. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +1 -1
  84. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js.map +1 -1
  85. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js.map +1 -1
  86. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js +1 -1
  87. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js.map +1 -1
  88. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +4 -0
  89. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js.map +1 -1
  90. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +1 -1
  91. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js.map +1 -1
  92. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js +1 -1
  93. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js.map +1 -1
  94. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js +1 -1
  95. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js.map +1 -1
  96. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js +2 -2
  97. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js.map +1 -1
  98. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +29 -10
  99. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js.map +1 -1
  100. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js.map +1 -1
  101. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +4 -0
  102. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js.map +1 -1
  103. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +20 -3
  104. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js.map +1 -1
  105. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js.map +1 -1
  106. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +1 -1
  107. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js.map +1 -1
  108. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +30 -1
  109. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js.map +1 -1
  110. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js.map +1 -1
  111. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +1 -1
  112. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js.map +1 -1
  113. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js.map +1 -1
  114. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js.map +1 -1
  115. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +1 -1
  116. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js.map +1 -1
  117. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js.map +1 -1
  118. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-imports.js +1 -1
  119. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-imports.js.map +1 -1
  120. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js.map +1 -1
  121. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +1 -1
  122. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js.map +1 -1
  123. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js.map +1 -1
  124. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js.map +1 -1
  125. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +1 -1
  126. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js.map +1 -1
  127. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js +17 -4
  128. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js.map +1 -1
  129. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js +1 -1
  130. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js.map +1 -1
  131. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js.map +1 -1
  132. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +1 -1
  133. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js.map +1 -1
  134. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js.map +1 -1
  135. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implicit-any-catch.js +1 -1
  136. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implicit-any-catch.js.map +1 -1
  137. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +1 -1
  138. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js.map +1 -1
  139. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +0 -1
  140. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js.map +1 -1
  141. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +1 -1
  142. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js.map +1 -1
  143. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +29 -5
  144. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js.map +1 -1
  145. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +1 -1
  146. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js.map +1 -1
  147. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js.map +1 -1
  148. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js.map +1 -1
  149. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +1 -1
  150. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js.map +1 -1
  151. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js.map +1 -1
  152. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +51 -11
  153. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js.map +1 -1
  154. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +2 -2
  155. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js.map +1 -1
  156. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +1 -1
  157. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js.map +1 -1
  158. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +1 -1
  159. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js.map +1 -1
  160. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js.map +1 -1
  161. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-parameter-properties.js.map +1 -1
  162. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js.map +1 -1
  163. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js.map +1 -1
  164. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js.map +1 -1
  165. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js.map +1 -1
  166. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +2 -3
  167. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js.map +1 -1
  168. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js.map +1 -1
  169. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js +1 -1
  170. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js.map +1 -1
  171. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js.map +1 -1
  172. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js.map +1 -1
  173. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +5 -4
  174. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js.map +1 -1
  175. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +1 -1
  176. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js.map +1 -1
  177. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js.map +1 -1
  178. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js.map +1 -1
  179. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js.map +1 -1
  180. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js.map +1 -1
  181. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js.map +1 -1
  182. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js.map +1 -1
  183. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +78 -0
  184. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js.map +1 -0
  185. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js.map +1 -1
  186. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js.map +1 -1
  187. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +1 -1
  188. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js.map +1 -1
  189. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +1 -1
  190. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js.map +1 -1
  191. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +1 -1
  192. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js.map +1 -1
  193. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +1 -1
  194. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js.map +1 -1
  195. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js.map +1 -1
  196. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js.map +1 -1
  197. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js.map +1 -1
  198. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js +1 -1
  199. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js.map +1 -1
  200. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js.map +1 -1
  201. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js.map +1 -1
  202. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js.map +1 -1
  203. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js.map +1 -1
  204. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js.map +1 -1
  205. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js.map +1 -1
  206. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js.map +1 -1
  207. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js.map +1 -1
  208. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js.map +1 -1
  209. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +1 -4
  210. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js.map +1 -1
  211. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +169 -70
  212. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js.map +1 -1
  213. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js.map +1 -1
  214. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +1 -1
  215. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js.map +1 -1
  216. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js.map +1 -1
  217. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js.map +1 -1
  218. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js.map +1 -1
  219. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js.map +1 -1
  220. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +1 -1
  221. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js.map +1 -1
  222. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +2 -1
  223. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js.map +1 -1
  224. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js +1 -1
  225. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js.map +1 -1
  226. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js.map +1 -1
  227. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js.map +1 -1
  228. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +1 -1
  229. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js.map +1 -1
  230. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js.map +1 -1
  231. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js.map +1 -1
  232. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js +1 -1
  233. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js.map +1 -1
  234. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +245 -0
  235. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js.map +1 -0
  236. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-union-intersection-members.js +3 -0
  237. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-union-intersection-members.js.map +1 -1
  238. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js +1 -1
  239. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js.map +1 -1
  240. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js.map +1 -1
  241. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js +1 -1
  242. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js.map +1 -1
  243. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +54 -25
  244. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js.map +1 -1
  245. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +1 -1
  246. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js.map +1 -1
  247. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js.map +1 -1
  248. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js.map +1 -1
  249. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js.map +1 -1
  250. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js.map +1 -1
  251. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js.map +1 -1
  252. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +1 -1
  253. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js.map +1 -1
  254. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +1 -1
  255. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js.map +1 -1
  256. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js.map +1 -1
  257. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js.map +1 -1
  258. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js.map +1 -1
  259. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js.map +1 -1
  260. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js.map +1 -1
  261. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js.map +1 -1
  262. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js.map +1 -1
  263. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js.map +1 -1
  264. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +1 -1
  265. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js.map +1 -1
  266. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/TEMPLATE.md +1 -1
  267. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/adjacent-overload-signatures.md +5 -5
  268. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/array-type.md +4 -6
  269. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/await-thenable.md +5 -4
  270. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-ts-comment.md +3 -4
  271. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-tslint-comment.md +2 -2
  272. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-types.md +2 -2
  273. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/brace-style.md +1 -1
  274. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-literal-property-style.md +4 -4
  275. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-dangle.md +1 -1
  276. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-spacing.md +1 -1
  277. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-generic-constructors.md +3 -3
  278. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-indexed-object-style.md +1 -3
  279. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-assertions.md +12 -5
  280. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-definitions.md +4 -1
  281. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-exports.md +7 -13
  282. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-imports.md +47 -6
  283. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/default-param-last.md +1 -1
  284. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/dot-notation.md +1 -1
  285. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-function-return-type.md +7 -6
  286. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-member-accessibility.md +10 -6
  287. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-module-boundary-types.md +3 -3
  288. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/func-call-spacing.md +1 -1
  289. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/indent.md +1 -1
  290. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/init-declarations.md +1 -1
  291. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/keyword-spacing.md +1 -1
  292. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-between-class-members.md +1 -1
  293. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-delimiter-style.md +7 -60
  294. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-ordering.md +19 -6
  295. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/method-signature-style.md +6 -6
  296. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/naming-convention.md +29 -30
  297. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-constructor.md +1 -1
  298. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-base-to-string.md +12 -11
  299. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md +4 -2
  300. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-void-expression.md +4 -5
  301. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dupe-class-members.md +1 -1
  302. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-enum-values.md +5 -2
  303. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dynamic-delete.md +4 -4
  304. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-function.md +1 -1
  305. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-interface.md +5 -5
  306. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-explicit-any.md +13 -8
  307. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +4 -3
  308. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-parens.md +1 -1
  309. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-semi.md +1 -1
  310. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extraneous-class.md +4 -6
  311. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-floating-promises.md +2 -4
  312. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-for-in-array.md +26 -18
  313. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implicit-any-catch.md +1 -3
  314. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implied-eval.md +1 -3
  315. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-inferrable-types.md +12 -43
  316. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-this.md +1 -1
  317. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-void-type.md +6 -13
  318. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loop-func.md +1 -1
  319. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loss-of-precision.md +1 -1
  320. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-magic-numbers.md +1 -1
  321. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-meaningless-void-operator.md +8 -21
  322. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-new.md +13 -6
  323. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-promises.md +53 -91
  324. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-namespace.md +6 -7
  325. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +3 -13
  326. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +4 -27
  327. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-assertion.md +14 -13
  328. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-parameter-properties.md +2 -2
  329. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redeclare.md +1 -1
  330. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redundant-type-constituents.md +1 -6
  331. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-require-imports.md +12 -15
  332. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-restricted-imports.md +1 -1
  333. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-shadow.md +1 -1
  334. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-this-alias.md +9 -15
  335. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-throw-literal.md +2 -5
  336. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-type-alias.md +1 -1
  337. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +15 -14
  338. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-condition.md +3 -4
  339. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +12 -46
  340. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +22 -8
  341. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md +4 -6
  342. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md +6 -20
  343. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-argument.md +10 -7
  344. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-assignment.md +9 -6
  345. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-call.md +6 -5
  346. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md +54 -0
  347. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-member-access.md +5 -4
  348. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-return.md +9 -6
  349. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-expressions.md +1 -1
  350. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-vars.md +1 -1
  351. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-use-before-define.md +1 -1
  352. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-constructor.md +1 -1
  353. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-empty-export.md +4 -4
  354. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-var-requires.md +6 -4
  355. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +7 -3
  356. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/object-curly-spacing.md +1 -1
  357. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/padding-line-between-statements.md +1 -1
  358. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/parameter-properties.md +3 -6
  359. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-as-const.md +7 -3
  360. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-enum-initializers.md +5 -23
  361. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-for-of.md +15 -16
  362. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-function-type.md +22 -22
  363. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-includes.md +28 -30
  364. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-literal-enum-member.md +12 -13
  365. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-namespace-keyword.md +27 -4
  366. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-nullish-coalescing.md +6 -54
  367. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-optional-chain.md +21 -49
  368. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +1 -3
  369. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly.md +3 -5
  370. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +6 -8
  371. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-regexp-exec.md +6 -11
  372. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-return-this-type.md +10 -25
  373. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +10 -6
  374. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-ts-expect-error.md +5 -11
  375. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/promise-function-async.md +1 -1
  376. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/quotes.md +1 -1
  377. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-array-sort-compare.md +5 -14
  378. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-await.md +1 -1
  379. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-plus-operands.md +18 -4
  380. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-template-expressions.md +9 -2
  381. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/return-await.md +1 -1
  382. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/semi.md +1 -1
  383. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-constituents.md +101 -0
  384. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-union-intersection-members.md +8 -16
  385. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-blocks.md +1 -1
  386. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-function-paren.md +1 -1
  387. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/strict-boolean-expressions.md +0 -2
  388. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +15 -24
  389. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/triple-slash-reference.md +4 -2
  390. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/type-annotation-spacing.md +1 -1
  391. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/typedef.md +5 -7
  392. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unbound-method.md +7 -4
  393. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unified-signatures.md +5 -3
  394. package/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +1 -1
  395. package/node_modules/@typescript-eslint/eslint-plugin/package.json +7 -6
  396. package/node_modules/@typescript-eslint/parser/README.md +2 -0
  397. package/node_modules/@typescript-eslint/parser/_ts3.4/dist/parser.d.ts +4 -2
  398. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +5 -3
  399. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +1 -1
  400. package/node_modules/@typescript-eslint/parser/dist/parser.js +1 -1
  401. package/node_modules/@typescript-eslint/parser/dist/parser.js.map +1 -1
  402. package/node_modules/@typescript-eslint/parser/package.json +5 -5
  403. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +4 -3
  404. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -1
  405. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -1
  406. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +2 -2
  407. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -1
  408. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +1 -1
  409. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -1
  410. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +2 -2
  411. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -1
  412. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +1 -1
  413. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -1
  414. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +2 -2
  415. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -1
  416. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +1 -1
  417. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -1
  418. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +11 -11
  419. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -1
  420. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +2 -2
  421. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -1
  422. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -1
  423. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +2 -2
  424. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -1
  425. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +1 -1
  426. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -1
  427. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +2 -2
  428. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -1
  429. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +1 -1
  430. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -1
  431. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +2 -2
  432. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -1
  433. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +1 -1
  434. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -1
  435. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +2 -2
  436. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -1
  437. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +1 -1
  438. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -1
  439. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +2 -2
  440. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -1
  441. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +1 -1
  442. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -1
  443. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +2 -2
  444. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -1
  445. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +1 -1
  446. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -1
  447. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +2 -2
  448. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -1
  449. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +1 -1
  450. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -1
  451. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +2 -2
  452. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -1
  453. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +1 -1
  454. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -1
  455. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +2 -2
  456. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -1
  457. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +1 -1
  458. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -1
  459. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +1 -1
  460. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -1
  461. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +1 -1
  462. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -1
  463. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +1 -1
  464. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -1
  465. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +1 -1
  466. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -1
  467. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +1 -1
  468. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -1
  469. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +1 -1
  470. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -1
  471. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +1 -1
  472. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -1
  473. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +1 -1
  474. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -1
  475. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +1 -1
  476. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -1
  477. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +2 -2
  478. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -1
  479. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +1 -1
  480. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -1
  481. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +1 -1
  482. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -1
  483. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +1 -1
  484. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -1
  485. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +1 -1
  486. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -1
  487. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +1 -1
  488. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -1
  489. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +1 -1
  490. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -1
  491. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +1 -1
  492. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -1
  493. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +1 -1
  494. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -1
  495. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +1 -1
  496. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -1
  497. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +3 -3
  498. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -1
  499. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +1 -1
  500. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -1
  501. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +1 -1
  502. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -1
  503. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +3 -3
  504. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -1
  505. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +1 -1
  506. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -1
  507. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +1 -1
  508. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -1
  509. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +1 -1
  510. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -1
  511. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +1 -1
  512. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -1
  513. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +1 -1
  514. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -1
  515. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +1 -1
  516. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -1
  517. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +1 -1
  518. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -1
  519. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +1 -1
  520. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -1
  521. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +1 -1
  522. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -1
  523. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +1 -1
  524. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -1
  525. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +2 -2
  526. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -1
  527. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +1 -1
  528. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -1
  529. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +1 -1
  530. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -1
  531. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +3 -3
  532. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -1
  533. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +1 -1
  534. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -1
  535. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +2 -2
  536. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -1
  537. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +1 -1
  538. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -1
  539. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +1 -1
  540. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -1
  541. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +1 -1
  542. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -1
  543. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +1 -1
  544. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -1
  545. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +1 -1
  546. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -1
  547. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +3 -3
  548. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -1
  549. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +1 -1
  550. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -1
  551. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +1 -1
  552. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -1
  553. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +1 -1
  554. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -1
  555. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +1 -1
  556. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -1
  557. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +1 -1
  558. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -1
  559. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +1 -1
  560. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -1
  561. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +1 -1
  562. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -1
  563. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +1 -1
  564. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +1 -1
  565. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +1 -1
  566. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +1 -1
  567. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +1 -1
  568. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -1
  569. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +3 -3
  570. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -1
  571. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +1 -1
  572. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -1
  573. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +1 -1
  574. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -1
  575. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +1 -1
  576. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -1
  577. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +1 -1
  578. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +1 -1
  579. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +1 -1
  580. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +1 -1
  581. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +1 -1
  582. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -1
  583. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +1 -1
  584. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -1
  585. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +1 -1
  586. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -1
  587. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +1 -1
  588. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -1
  589. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +1 -1
  590. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -1
  591. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +1 -1
  592. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -1
  593. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +1 -1
  594. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -1
  595. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +1 -1
  596. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -1
  597. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +3 -3
  598. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -1
  599. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +1 -1
  600. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +1 -1
  601. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +1 -1
  602. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -1
  603. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +1 -1
  604. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -1
  605. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +1 -1
  606. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -1
  607. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +1 -1
  608. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -1
  609. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +1 -1
  610. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +1 -1
  611. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +1 -1
  612. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +1 -1
  613. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +1 -1
  614. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +1 -1
  615. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +1 -1
  616. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +1 -1
  617. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +3 -3
  618. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +1 -1
  619. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +1 -1
  620. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts.map +1 -1
  621. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +1 -1
  622. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +1 -1
  623. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts +1 -1
  624. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts.map +1 -1
  625. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +1 -1
  626. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +1 -1
  627. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +1 -1
  628. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -1
  629. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +1 -1
  630. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -1
  631. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +2 -2
  632. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -1
  633. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +1 -1
  634. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -1
  635. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +1 -1
  636. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -1
  637. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +1 -1
  638. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -1
  639. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +2 -2
  640. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -1
  641. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +1 -1
  642. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -1
  643. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +1 -1
  644. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -1
  645. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +1 -1
  646. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -1
  647. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +1 -1
  648. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -1
  649. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +3 -3
  650. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -1
  651. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +1 -1
  652. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -1
  653. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +1 -1
  654. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -1
  655. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +1 -1
  656. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -1
  657. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +1 -1
  658. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -1
  659. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +1 -1
  660. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -1
  661. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +31 -31
  662. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -1
  663. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +1 -1
  664. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -1
  665. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +2 -2
  666. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -1
  667. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +1 -1
  668. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -1
  669. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +1 -1
  670. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -1
  671. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +1 -1
  672. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -1
  673. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +1 -1
  674. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -1
  675. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +2 -3
  676. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -1
  677. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +3 -4
  678. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -1
  679. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +2 -2
  680. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -1
  681. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -1
  682. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +2 -2
  683. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -1
  684. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -1
  685. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +3 -2
  686. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -1
  687. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -1
  688. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +3 -3
  689. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -1
  690. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -1
  691. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +6 -5
  692. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -1
  693. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +3 -3
  694. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -1
  695. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +2 -2
  696. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -1
  697. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +1 -1
  698. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -1
  699. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +2 -2
  700. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -1
  701. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +1 -1
  702. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -1
  703. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +1 -1
  704. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -1
  705. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +3 -3
  706. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -1
  707. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -1
  708. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +3 -3
  709. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -1
  710. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -1
  711. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +3 -3
  712. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -1
  713. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -1
  714. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +3 -3
  715. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -1
  716. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -1
  717. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +3 -3
  718. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +1 -1
  719. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +1 -1
  720. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +3 -3
  721. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -1
  722. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -1
  723. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +3 -3
  724. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -1
  725. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -1
  726. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +3 -3
  727. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -1
  728. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +1 -1
  729. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -1
  730. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +5 -5
  731. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -1
  732. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -1
  733. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +3 -3
  734. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -1
  735. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -1
  736. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +4 -4
  737. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -1
  738. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +2 -2
  739. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -1
  740. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +3 -3
  741. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -1
  742. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -1
  743. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +3 -3
  744. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -1
  745. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -1
  746. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +18 -18
  747. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -1
  748. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +11 -10
  749. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -1
  750. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +1 -1
  751. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -1
  752. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +3 -3
  753. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -1
  754. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -1
  755. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +3 -3
  756. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -1
  757. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -1
  758. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +3 -3
  759. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -1
  760. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -1
  761. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +3 -3
  762. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -1
  763. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -1
  764. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +3 -3
  765. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -1
  766. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +1 -1
  767. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -1
  768. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +1 -1
  769. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -1
  770. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -1
  771. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +2 -2
  772. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -1
  773. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -1
  774. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +4 -4
  775. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -1
  776. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -1
  777. package/node_modules/@typescript-eslint/scope-manager/package.json +5 -5
  778. package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts.map +1 -1
  779. package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js.map +1 -1
  780. package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +1 -1
  781. package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts.map +1 -1
  782. package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +1 -1
  783. package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts.map +1 -1
  784. package/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts +1 -1
  785. package/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts.map +1 -1
  786. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts.map +1 -1
  787. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +3 -0
  788. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js.map +1 -1
  789. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +2 -2
  790. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts.map +1 -1
  791. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js.map +1 -1
  792. package/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts.map +1 -1
  793. package/node_modules/@typescript-eslint/type-utils/dist/predicates.js.map +1 -1
  794. package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +1 -1
  795. package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts.map +1 -1
  796. package/node_modules/@typescript-eslint/type-utils/package.json +5 -5
  797. package/node_modules/@typescript-eslint/types/_ts3.4/dist/generated/ast-spec.d.ts +3 -3
  798. package/node_modules/@typescript-eslint/types/_ts3.4/dist/parser-options.d.ts +1 -1
  799. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +3 -3
  800. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts.map +1 -1
  801. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +1 -1
  802. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts.map +1 -1
  803. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +1 -1
  804. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts.map +1 -1
  805. package/node_modules/@typescript-eslint/types/package.json +2 -2
  806. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ast-converter.d.ts +2 -2
  807. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createDefaultProgram.d.ts +3 -6
  808. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createIsolatedProgram.d.ts +2 -2
  809. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createProjectProgram.d.ts +4 -6
  810. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createSourceFile.d.ts +2 -2
  811. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createWatchProgram.d.ts +4 -7
  812. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/shared.d.ts +6 -5
  813. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/useProvidedPrograms.d.ts +2 -2
  814. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/node-utils.d.ts +2 -1
  815. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parseSettings/createParseSettings.d.ts +4 -0
  816. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parseSettings/index.d.ts +102 -0
  817. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parseSettings/inferSingleRun.d.ts +15 -0
  818. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parseSettings/warnAboutTSVersion.d.ts +3 -0
  819. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parser-options.d.ts +0 -26
  820. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parser.d.ts +1 -1
  821. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +3 -3
  822. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts.map +1 -1
  823. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +8 -8
  824. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js.map +1 -1
  825. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +1 -1
  826. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts.map +1 -1
  827. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +1 -1
  828. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js.map +1 -1
  829. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +2 -2
  830. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts.map +1 -1
  831. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +0 -4
  832. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js.map +1 -1
  833. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +1 -1
  834. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts.map +1 -1
  835. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts +4 -7
  836. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts.map +1 -1
  837. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js +13 -15
  838. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js.map +1 -1
  839. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +3 -3
  840. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts.map +1 -1
  841. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +8 -8
  842. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js.map +1 -1
  843. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +5 -7
  844. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts.map +1 -1
  845. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +52 -39
  846. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js.map +1 -1
  847. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +2 -2
  848. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts.map +1 -1
  849. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +4 -4
  850. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js.map +1 -1
  851. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts +4 -7
  852. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts.map +1 -1
  853. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js +21 -22
  854. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js.map +1 -1
  855. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +6 -5
  856. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts.map +1 -1
  857. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +7 -7
  858. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js.map +1 -1
  859. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +3 -3
  860. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts.map +1 -1
  861. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +4 -4
  862. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js.map +1 -1
  863. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts.map +1 -1
  864. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.js.map +1 -1
  865. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +2 -1
  866. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts.map +1 -1
  867. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +2 -2
  868. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js.map +1 -1
  869. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.d.ts +4 -0
  870. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.d.ts.map +1 -0
  871. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.js +145 -0
  872. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.js.map +1 -0
  873. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts +102 -0
  874. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts.map +1 -0
  875. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.js +3 -0
  876. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.js.map +1 -0
  877. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.d.ts +15 -0
  878. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.d.ts.map +1 -0
  879. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.js +53 -0
  880. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.js.map +1 -0
  881. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.d.ts +3 -0
  882. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.d.ts.map +1 -0
  883. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js +68 -0
  884. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js.map +1 -0
  885. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +3 -29
  886. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts.map +1 -1
  887. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +2 -2
  888. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts.map +1 -1
  889. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +33 -389
  890. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js.map +1 -1
  891. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +1 -1
  892. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts.map +1 -1
  893. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js.map +1 -1
  894. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +3 -3
  895. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts.map +1 -1
  896. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +0 -1
  897. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js.map +1 -1
  898. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +1 -1
  899. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts.map +1 -1
  900. package/node_modules/@typescript-eslint/typescript-estree/package.json +5 -5
  901. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +1 -1
  902. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +1 -1
  903. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/eslint-utils/RuleCreator.d.ts +1 -1
  904. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/eslint-utils/batchedSingleLineTests.d.ts +1 -1
  905. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/eslint-utils/index.d.ts +1 -1
  906. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/eslint-utils/rule-tester/RuleTester.d.ts +48 -0
  907. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/eslint-utils/rule-tester/dependencyConstraints.d.ts +17 -0
  908. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ts-eslint/AST.d.ts +1 -1
  909. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ts-eslint/Linter.d.ts +1 -1
  910. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ts-eslint/RuleTester.d.ts +21 -17
  911. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ts-eslint-scope/PatternVisitor.d.ts +1 -1
  912. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ts-eslint-scope/ScopeManager.d.ts +1 -1
  913. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/ts-eslint-scope/Variable.d.ts +1 -1
  914. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +2 -2
  915. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts.map +1 -1
  916. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js.map +1 -1
  917. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +2 -2
  918. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts.map +1 -1
  919. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js.map +1 -1
  920. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +1 -1
  921. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts.map +1 -1
  922. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js.map +1 -1
  923. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +2 -2
  924. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts.map +1 -1
  925. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js.map +1 -1
  926. package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +1 -1
  927. package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts.map +1 -1
  928. package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +1 -1
  929. package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts.map +1 -1
  930. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +1 -1
  931. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts.map +1 -1
  932. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js.map +1 -1
  933. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +1 -1
  934. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts.map +1 -1
  935. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +1 -1
  936. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts.map +1 -1
  937. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.d.ts +1 -1
  938. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.d.ts.map +1 -1
  939. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/batchedSingleLineTests.js.map +1 -1
  940. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +2 -2
  941. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts.map +1 -1
  942. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +1 -1
  943. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts.map +1 -1
  944. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +1 -1
  945. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js.map +1 -1
  946. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/RuleTester.d.ts +49 -0
  947. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/RuleTester.d.ts.map +1 -0
  948. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/RuleTester.js +238 -0
  949. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/RuleTester.js.map +1 -0
  950. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/dependencyConstraints.d.ts +17 -0
  951. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/dependencyConstraints.d.ts.map +1 -0
  952. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/dependencyConstraints.js +52 -0
  953. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/rule-tester/dependencyConstraints.js.map +1 -0
  954. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +1 -1
  955. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts.map +1 -1
  956. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts +2 -2
  957. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts.map +1 -1
  958. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js.map +1 -1
  959. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +1 -1
  960. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts.map +1 -1
  961. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js.map +1 -1
  962. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +5 -5
  963. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts.map +1 -1
  964. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js.map +1 -1
  965. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +20 -13
  966. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts.map +1 -1
  967. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js.map +1 -1
  968. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +2 -2
  969. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts.map +1 -1
  970. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js.map +1 -1
  971. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.d.ts +1 -1
  972. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.d.ts.map +1 -1
  973. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Definition.js.map +1 -1
  974. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Options.d.ts +1 -1
  975. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Options.d.ts.map +1 -1
  976. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.d.ts +3 -3
  977. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.d.ts.map +1 -1
  978. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/PatternVisitor.js.map +1 -1
  979. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.d.ts +3 -3
  980. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.d.ts.map +1 -1
  981. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Reference.js.map +1 -1
  982. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.d.ts +4 -4
  983. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.d.ts.map +1 -1
  984. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Referencer.js.map +1 -1
  985. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.d.ts +5 -5
  986. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.d.ts.map +1 -1
  987. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Scope.js.map +1 -1
  988. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.d.ts +4 -4
  989. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.d.ts.map +1 -1
  990. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/ScopeManager.js.map +1 -1
  991. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.d.ts +4 -4
  992. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.d.ts.map +1 -1
  993. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/Variable.js.map +1 -1
  994. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.d.ts +3 -3
  995. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.d.ts.map +1 -1
  996. package/node_modules/@typescript-eslint/utils/dist/ts-eslint-scope/analyze.js.map +1 -1
  997. package/node_modules/@typescript-eslint/utils/package.json +9 -6
  998. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +1 -1
  999. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -1
  1000. package/node_modules/@typescript-eslint/visitor-keys/package.json +3 -3
  1001. package/node_modules/eslint-config-xo-typescript/index.js +7 -1
  1002. package/node_modules/eslint-config-xo-typescript/package.json +5 -5
  1003. package/node_modules/fast-glob/out/index.d.ts +27 -27
  1004. package/node_modules/fast-glob/out/index.js +68 -68
  1005. package/node_modules/fast-glob/out/managers/patterns.d.ts +6 -6
  1006. package/node_modules/fast-glob/out/managers/patterns.js +21 -21
  1007. package/node_modules/fast-glob/out/managers/tasks.d.ts +22 -22
  1008. package/node_modules/fast-glob/out/managers/tasks.js +80 -80
  1009. package/node_modules/fast-glob/out/providers/async.d.ts +9 -11
  1010. package/node_modules/fast-glob/out/providers/async.js +23 -28
  1011. package/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -16
  1012. package/node_modules/fast-glob/out/providers/filters/deep.js +62 -62
  1013. package/node_modules/fast-glob/out/providers/filters/entry.d.ts +16 -20
  1014. package/node_modules/fast-glob/out/providers/filters/entry.js +64 -60
  1015. package/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -8
  1016. package/node_modules/fast-glob/out/providers/filters/error.js +15 -15
  1017. package/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -33
  1018. package/node_modules/fast-glob/out/providers/matchers/matcher.js +50 -50
  1019. package/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -4
  1020. package/node_modules/fast-glob/out/providers/matchers/partial.js +38 -38
  1021. package/node_modules/fast-glob/out/providers/provider.d.ts +19 -19
  1022. package/node_modules/fast-glob/out/providers/provider.js +48 -48
  1023. package/node_modules/fast-glob/out/providers/stream.d.ts +11 -11
  1024. package/node_modules/fast-glob/out/providers/stream.js +31 -31
  1025. package/node_modules/fast-glob/out/providers/sync.d.ts +9 -9
  1026. package/node_modules/fast-glob/out/providers/sync.js +23 -23
  1027. package/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -8
  1028. package/node_modules/fast-glob/out/providers/transformers/entry.js +26 -26
  1029. package/node_modules/fast-glob/out/readers/async.d.ts +10 -0
  1030. package/node_modules/fast-glob/out/readers/async.js +35 -0
  1031. package/node_modules/fast-glob/out/readers/reader.d.ts +15 -15
  1032. package/node_modules/fast-glob/out/readers/reader.js +33 -33
  1033. package/node_modules/fast-glob/out/readers/stream.d.ts +14 -14
  1034. package/node_modules/fast-glob/out/readers/stream.js +55 -55
  1035. package/node_modules/fast-glob/out/readers/sync.d.ts +12 -12
  1036. package/node_modules/fast-glob/out/readers/sync.js +43 -43
  1037. package/node_modules/fast-glob/out/settings.d.ts +164 -164
  1038. package/node_modules/fast-glob/out/settings.js +57 -57
  1039. package/node_modules/fast-glob/out/types/index.d.ts +31 -31
  1040. package/node_modules/fast-glob/out/types/index.js +2 -2
  1041. package/node_modules/fast-glob/out/utils/array.d.ts +2 -2
  1042. package/node_modules/fast-glob/out/utils/array.js +22 -22
  1043. package/node_modules/fast-glob/out/utils/errno.d.ts +2 -2
  1044. package/node_modules/fast-glob/out/utils/errno.js +7 -7
  1045. package/node_modules/fast-glob/out/utils/fs.d.ts +4 -4
  1046. package/node_modules/fast-glob/out/utils/fs.js +19 -19
  1047. package/node_modules/fast-glob/out/utils/index.d.ts +8 -8
  1048. package/node_modules/fast-glob/out/utils/index.js +17 -17
  1049. package/node_modules/fast-glob/out/utils/path.d.ts +8 -8
  1050. package/node_modules/fast-glob/out/utils/path.js +33 -33
  1051. package/node_modules/fast-glob/out/utils/pattern.d.ts +42 -42
  1052. package/node_modules/fast-glob/out/utils/pattern.js +169 -169
  1053. package/node_modules/fast-glob/out/utils/stream.d.ts +3 -3
  1054. package/node_modules/fast-glob/out/utils/stream.js +17 -17
  1055. package/node_modules/fast-glob/out/utils/string.d.ts +2 -2
  1056. package/node_modules/fast-glob/out/utils/string.js +11 -11
  1057. package/node_modules/fast-glob/package.json +1 -1
  1058. package/node_modules/natural-compare-lite/README.md +126 -0
  1059. package/node_modules/natural-compare-lite/index.js +57 -0
  1060. package/node_modules/natural-compare-lite/package.json +42 -0
  1061. package/node_modules/semver/classes/range.js +3 -0
  1062. package/node_modules/semver/index.js +81 -41
  1063. package/node_modules/{lru-cache → semver/node_modules/lru-cache}/LICENSE +0 -0
  1064. package/node_modules/{lru-cache → semver/node_modules/lru-cache}/README.md +0 -0
  1065. package/node_modules/{lru-cache → semver/node_modules/lru-cache}/index.js +0 -0
  1066. package/node_modules/{lru-cache → semver/node_modules/lru-cache}/package.json +0 -0
  1067. package/node_modules/semver/package.json +21 -10
  1068. package/package.json +24 -24
  1069. package/readme.md +6 -4
  1070. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/BinarySearchTree.js +0 -55
  1071. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/BinarySearchTree.js.map +0 -1
  1072. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/OffsetStorage.js +0 -221
  1073. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/OffsetStorage.js.map +0 -1
  1074. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/TokenInfo.js +0 -49
  1075. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/TokenInfo.js.map +0 -1
  1076. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/index.js +0 -1140
  1077. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/index.js.map +0 -1
  1078. package/node_modules/@typescript-eslint/utils/_ts3.4/dist/eslint-utils/RuleTester.d.ts +0 -18
  1079. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.d.ts +0 -18
  1080. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.d.ts.map +0 -1
  1081. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.js +0 -133
  1082. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleTester.js.map +0 -1
  1083. package/node_modules/functional-red-black-tree/.npmignore +0 -16
  1084. package/node_modules/functional-red-black-tree/LICENSE +0 -22
  1085. package/node_modules/functional-red-black-tree/README.md +0 -237
  1086. package/node_modules/functional-red-black-tree/bench/test.js +0 -11
  1087. package/node_modules/functional-red-black-tree/package.json +0 -40
  1088. package/node_modules/functional-red-black-tree/rbtree.js +0 -996
  1089. package/node_modules/functional-red-black-tree/test/test.js +0 -479
@@ -6,14 +6,15 @@ description: 'Disallow calling a value with type `any`.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-unsafe-call** for documentation.
8
8
 
9
- Despite your best intentions, the `any` type can sometimes leak into your codebase.
10
- The arguments to, and return value of calling an `any` typed variable are not checked at all by TypeScript, so it creates a potential safety hole, and source of bugs in your codebase.
9
+ The `any` type in TypeScript is a dangerous "escape hatch" from the type system.
10
+ Using `any` disables many type checking rules and is generally best used only as a last resort or when prototyping code.
11
11
 
12
- ## Rule Details
12
+ Despite your best intentions, the `any` type can sometimes leak into your codebase.
13
+ Calling an `any`-typed value as a function creates a potential type safety hole and source of bugs in your codebase.
13
14
 
14
- This rule disallows calling any variable that is typed as `any`.
15
+ This rule disallows calling any value that is typed as `any`.
15
16
 
16
- Examples of code for this rule:
17
+ ## Examples
17
18
 
18
19
  <!--tabs-->
19
20
 
@@ -0,0 +1,54 @@
1
+ ---
2
+ description: 'Disallow unsafe declaration merging.'
3
+ ---
4
+
5
+ > 🛑 This file is source code, not the primary documentation location! 🛑
6
+ >
7
+ > See **https://typescript-eslint.io/rules/no-unsafe-declaration-merging** for documentation.
8
+
9
+ TypeScript's "declaration merging" supports merging separate declarations with the same name.
10
+
11
+ Declaration merging between classes and interfaces is unsafe.
12
+ The TypeScript compiler doesn't check whether properties are initialized, which can cause lead to TypeScript not detecting code that will cause runtime errors.
13
+
14
+ ```ts
15
+ interface Foo {
16
+ nums: number[];
17
+ }
18
+
19
+ class Foo {}
20
+
21
+ const foo = new Foo();
22
+
23
+ foo.nums.push(1); // Runtime Error: Cannot read properties of undefined.
24
+ ```
25
+
26
+ ## Examples
27
+
28
+ <!--tabs-->
29
+
30
+ ### ❌ Incorrect
31
+
32
+ ```ts
33
+ interface Foo {}
34
+
35
+ class Foo {}
36
+ ```
37
+
38
+ ### ✅ Correct
39
+
40
+ ```ts
41
+ interface Foo {}
42
+ class Bar implements Foo {}
43
+
44
+ namespace Baz {}
45
+ namespace Baz {}
46
+ enum Baz {}
47
+
48
+ namespace Qux {}
49
+ function Qux() {}
50
+ ```
51
+
52
+ ## Further Reading
53
+
54
+ - [Declaration Merging](https://www.typescriptlang.org/docs/handbook/declaration-merging.html)
@@ -6,14 +6,15 @@ description: 'Disallow member access on a value with type `any`.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-unsafe-member-access** for documentation.
8
8
 
9
- Despite your best intentions, the `any` type can sometimes leak into your codebase.
10
- Member access on `any` typed variables is not checked at all by TypeScript, so it creates a potential safety hole, and source of bugs in your codebase.
9
+ The `any` type in TypeScript is a dangerous "escape hatch" from the type system.
10
+ Using `any` disables many type checking rules and is generally best used only as a last resort or when prototyping code.
11
11
 
12
- ## Rule Details
12
+ Despite your best intentions, the `any` type can sometimes leak into your codebase.
13
+ Accessing a member of an `any`-typed value creates a potential type safety hole and source of bugs in your codebase.
13
14
 
14
15
  This rule disallows member access on any variable that is typed as `any`.
15
16
 
16
- Examples of code for this rule:
17
+ ## Examples
17
18
 
18
19
  <!--tabs-->
19
20
 
@@ -6,15 +6,18 @@ description: 'Disallow returning a value with type `any` from a function.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-unsafe-return** for documentation.
8
8
 
9
- Despite your best intentions, the `any` type can sometimes leak into your codebase.
10
- Returned `any` typed values are not checked at all by TypeScript, so it creates a potential safety hole, and source of bugs in your codebase.
9
+ The `any` type in TypeScript is a dangerous "escape hatch" from the type system.
10
+ Using `any` disables many type checking rules and is generally best used only as a last resort or when prototyping code.
11
11
 
12
- ## Rule Details
12
+ Despite your best intentions, the `any` type can sometimes leak into your codebase.
13
+ Returning an an `any`-typed value from a function creates a potential type safety hole and source of bugs in your codebase.
13
14
 
14
15
  This rule disallows returning `any` or `any[]` from a function.
15
- This rule also compares the return type to the function's declared/inferred return type to ensure you don't return an unsafe `any` in a generic position to a receiver that's expecting a specific type. For example, it will error if you return `Set<any>` from a function declared as returning `Set<string>`.
16
16
 
17
- Examples of code for this rule:
17
+ This rule also compares generic type argument types to ensure you don't return an unsafe `any` in a generic position to a function that's expecting a specific type.
18
+ For example, it will error if you return `Set<any>` from a function declared as returning `Set<string>`.
19
+
20
+ ## Examples
18
21
 
19
22
  <!--tabs-->
20
23
 
@@ -83,7 +86,7 @@ const assignability2: TAssign = () => new Set(['foo']);
83
86
 
84
87
  There are cases where the rule allows to return `any` to `unknown`.
85
88
 
86
- Examples of `any` to `unknown` return that are allowed.
89
+ Examples of `any` to `unknown` return that are allowed:
87
90
 
88
91
  ```ts
89
92
  function foo1(): unknown {
@@ -6,7 +6,7 @@ description: 'Disallow unused expressions.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-unused-expressions** for documentation.
8
8
 
9
- ## Rule Details
9
+ ## Examples
10
10
 
11
11
  This rule extends the base [`eslint/no-unused-expressions`](https://eslint.org/docs/rules/no-unused-expressions) rule.
12
12
  It adds support for optional call expressions `x?.()`, and directive in module declarations.
@@ -6,7 +6,7 @@ description: 'Disallow unused variables.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-unused-vars** for documentation.
8
8
 
9
- ## Rule Details
9
+ ## Examples
10
10
 
11
11
  This rule extends the base [`eslint/no-unused-vars`](https://eslint.org/docs/rules/no-unused-vars) rule.
12
12
  It adds support for TypeScript features, such as types.
@@ -6,7 +6,7 @@ description: 'Disallow the use of variables before they are defined.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-use-before-define** for documentation.
8
8
 
9
- ## Rule Details
9
+ ## Examples
10
10
 
11
11
  This rule extends the base [`eslint/no-use-before-define`](https://eslint.org/docs/rules/no-use-before-define) rule.
12
12
  It adds support for `type`, `interface` and `enum` declarations.
@@ -6,7 +6,7 @@ description: 'Disallow unnecessary constructors.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-useless-constructor** for documentation.
8
8
 
9
- ## Rule Details
9
+ ## Examples
10
10
 
11
11
  This rule extends the base [`eslint/no-useless-constructor`](https://eslint.org/docs/rules/no-useless-constructor) rule.
12
12
  It adds support for:
@@ -6,17 +6,17 @@ description: "Disallow empty exports that don't change anything in a module file
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/no-useless-empty-export** for documentation.
8
8
 
9
- ## Rule Details
10
-
11
9
  An empty `export {}` statement is sometimes useful in TypeScript code to turn a file that would otherwise be a script file into a module file.
12
- Per the TypeScript Handbook [Modules](https://www.typescriptlang.org/docs/handbook/modules.html) page:
10
+ Per the [TypeScript Handbook Modules page](https://www.typescriptlang.org/docs/handbook/modules.html):
13
11
 
14
12
  > In TypeScript, just as in ECMAScript 2015, any file containing a top-level import or export is considered a module.
15
13
  > Conversely, a file without any top-level import or export declarations is treated as a script whose contents are available in the global scope (and therefore to modules as well).
16
14
 
17
15
  However, an `export {}` statement does nothing if there are any other top-level import or export statements in a file.
18
16
 
19
- Examples of code for this rule:
17
+ This rule reports an `export {}` that doesn't do anything in a file already using ES modules.
18
+
19
+ ## Examples
20
20
 
21
21
  <!--tabs-->
22
22
 
@@ -8,9 +8,7 @@ description: 'Disallow `require` statements except in import statements.'
8
8
 
9
9
  In other words, the use of forms such as `var foo = require("foo")` are banned. Instead use ES6 style imports or `import foo = require("foo")` imports.
10
10
 
11
- ## Rule Details
12
-
13
- Examples of code for this rule:
11
+ ## Examples
14
12
 
15
13
  <!--tabs-->
16
14
 
@@ -32,4 +30,8 @@ import foo from 'foo';
32
30
 
33
31
  ## When Not To Use It
34
32
 
35
- If you don't care about TypeScript module syntax, then you will not need this rule.
33
+ If you don't care about using newer module syntax, then you will not need this rule.
34
+
35
+ ## Related To
36
+
37
+ - [`no-require-imports`](./no-require-imports.md)
@@ -6,11 +6,15 @@ description: 'Enforce non-null assertions over explicit type casts.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/non-nullable-type-assertion-style** for documentation.
8
8
 
9
- This rule detects when an `as` cast is doing the same job as a `!` would, and suggests fixing the code to be an `!`.
9
+ There are two common ways to assert to TypeScript that a value is its type without `null` or `undefined`:
10
10
 
11
- ## Rule Details
11
+ - `!`: Non-null assertion
12
+ - `as`: Traditional type assertion with a coincidentally equivalent type
12
13
 
13
- Examples of code for this rule:
14
+ `!` non-null assertions are generally preferred for requiring less code and being harder to fall out of sync as types change.
15
+ This rule reports when an `as` cast is doing the same job as a `!` would, and suggests fixing the code to be an `!`.
16
+
17
+ ## Examples
14
18
 
15
19
  <!--tabs-->
16
20
 
@@ -6,7 +6,7 @@ description: 'Enforce consistent spacing inside braces.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/object-curly-spacing** for documentation.
8
8
 
9
- ## Rule Details
9
+ ## Examples
10
10
 
11
11
  This rule extends the base [`eslint/object-curly-spacing`](https://eslint.org/docs/rules/object-curly-spacing) rule.
12
12
  It adds support for TypeScript's object types.
@@ -6,7 +6,7 @@ description: 'Require or disallow padding lines between statements.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/padding-line-between-statements** for documentation.
8
8
 
9
- ## Rule Details
9
+ ## Examples
10
10
 
11
11
  This rule extends the base [`eslint/padding-line-between-statements`](https://eslint.org/docs/rules/padding-line-between-statements) rule.
12
12
  It adds support for TypeScript constructs such as `interface` and `type`.
@@ -6,13 +6,10 @@ description: 'Require or disallow parameter properties in class constructors.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/parameter-properties** for documentation.
8
8
 
9
- Parameter properties can be confusing to those new to TypeScript as they are less explicit than other ways
10
- of declaring and initializing class members.
9
+ TypeScript includes a "parameter properties" shorthand for declaring a class constructor parameter and class property in one location.
10
+ Parameter properties can be confusing to those new to TypeScript as they are less explicit than other ways of declaring and initializing class members.
11
11
 
12
- ## Rule Details
13
-
14
- This rule disallows the use of parameter properties in constructors, forcing the user to explicitly
15
- declare all properties in the class.
12
+ This rule can be configured to always disallow the use of parameter properties or enforce their usage when possible.
16
13
 
17
14
  ## Options
18
15
 
@@ -6,11 +6,15 @@ description: 'Enforce the use of `as const` over literal type.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/prefer-as-const** for documentation.
8
8
 
9
- This rule recommends usage of `const` assertion when type primitive value is equal to type.
9
+ There are two common ways to tell TypeScript that a literal value should be interpreted as its literal type (e.g. `2`) rather than general primitive type (e.g. `number`);
10
10
 
11
- ## Rule Details
11
+ - `as const`: telling TypeScript to infer the literal type automatically
12
+ - `as` with the literal type: explicitly telling the literal type to TypeScript
12
13
 
13
- Examples of code for this rule:
14
+ `as const` is generally preferred, as it doesn't require re-typing the literal value.
15
+ This rule reports when an `as` with an explicit literal type can be replaced with an `as const`.
16
+
17
+ ## Examples
14
18
 
15
19
  <!--tabs-->
16
20
 
@@ -6,32 +6,14 @@ description: 'Require each enum member value to be explicitly initialized.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/prefer-enum-initializers** for documentation.
8
8
 
9
- This rule recommends having each `enum`s member value explicitly initialized.
9
+ TypeScript `enum`s are a practical way to organize semantically related constant values.
10
+ Members of `enum`s that don't have explicit values are by default given sequentially increasing numbers.
10
11
 
11
- `enum`s are a practical way to organize semantically related constant values. However, by implicitly defining values, `enum`s can lead to unexpected bugs if it's modified without paying attention to the order of its items.
12
+ In projects where the value of `enum` members are important, allowing implicit values for enums can cause bugs if `enum`s are modified over time.
12
13
 
13
- ## Rule Details
14
+ This rule recommends having each `enum` member value explicitly initialized.
14
15
 
15
- `enum`s infers sequential numbers automatically when initializers are omitted:
16
-
17
- ```ts
18
- enum Status {
19
- Open, // infer 0
20
- Closed, // infer 1
21
- }
22
- ```
23
-
24
- If a new member is added to the top of `Status`, both `Open` and `Closed` would have its values altered:
25
-
26
- ```ts
27
- enum Status {
28
- Pending, // infer 0
29
- Open, // infer 1
30
- Closed, // infer 2
31
- }
32
- ```
33
-
34
- Examples of code for this rule:
16
+ ## Examples
35
17
 
36
18
  <!--tabs-->
37
19
 
@@ -6,39 +6,38 @@ description: 'Enforce the use of `for-of` loop over the standard `for` loop wher
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/prefer-for-of** for documentation.
8
8
 
9
- This rule recommends a for-of loop when the loop index is only used to read from an array that is being iterated.
10
-
11
- ## Rule Details
9
+ Many developers default to writing `for (let i = 0; i < ...` loops to iterate over arrays.
10
+ However, in many of those arrays, the loop iterator variable (e.g. `i`) is only used to access the respective element of the array.
11
+ In those cases, a `for-of` loop is easier to read and write.
12
12
 
13
- For cases where the index is only used to read from the array being iterated, a for-of loop is easier to read and write.
13
+ This rule recommends a for-of loop when the loop index is only used to read from an array that is being iterated.
14
14
 
15
- Examples of code for this rule:
15
+ ## Examples
16
16
 
17
17
  <!--tabs-->
18
18
 
19
19
  ### ❌ Incorrect
20
20
 
21
21
  ```js
22
- for (let i = 0; i < arr.length; i++) {
23
- console.log(arr[i]);
22
+ declare const array: string[];
23
+
24
+ for (let i = 0; i < array.length; i++) {
25
+ console.log(array[i]);
24
26
  }
25
27
  ```
26
28
 
27
29
  ### ✅ Correct
28
30
 
29
31
  ```js
30
- for (const x of arr) {
31
- console.log(x);
32
- }
32
+ declare const array: string[];
33
33
 
34
- for (let i = 0; i < arr.length; i++) {
35
- // i is used to write to arr, so for-of could not be used.
36
- arr[i] = 0;
34
+ for (const x of array) {
35
+ console.log(x);
37
36
  }
38
37
 
39
- for (let i = 0; i < arr.length; i++) {
40
- // i is used independent of arr, so for-of could not be used.
41
- console.log(i, arr[i]);
38
+ for (let i = 0; i < array.length; i++) {
39
+ // i is used, so for-of could not be used.
40
+ console.log(i, array[i]);
42
41
  }
43
42
  ```
44
43
 
@@ -6,36 +6,35 @@ description: 'Enforce using function types instead of interfaces with call signa
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/prefer-function-type** for documentation.
8
8
 
9
- ## Rule Details
9
+ TypeScript allows for two common ways to declare a type for a function:
10
+
11
+ - Function type: `() => string`
12
+ - Object type with a signature: `{ (): string }`
13
+
14
+ The function type form is generally preferred when possible for being more succinct.
10
15
 
11
16
  This rule suggests using a function type instead of an interface or object type literal with a single call signature.
12
17
 
13
- Examples of code for this rule:
18
+ ## Examples
14
19
 
15
20
  <!--tabs-->
16
21
 
17
22
  ### ❌ Incorrect
18
23
 
19
24
  ```ts
20
- interface Foo {
25
+ interface Example {
21
26
  (): string;
22
27
  }
23
28
  ```
24
29
 
25
30
  ```ts
26
- function foo(bar: { (): number }): number {
27
- return bar();
28
- }
29
- ```
30
-
31
- ```ts
32
- interface Foo extends Function {
33
- (): void;
31
+ function foo(example: { (): number }): number {
32
+ return example();
34
33
  }
35
34
  ```
36
35
 
37
36
  ```ts
38
- interface MixinMethod {
37
+ interface ReturnsSelf {
39
38
  // returns the function itself, not the `this` argument.
40
39
  (arg: string): this;
41
40
  }
@@ -44,12 +43,20 @@ interface MixinMethod {
44
43
  ### ✅ Correct
45
44
 
46
45
  ```ts
47
- interface Foo {
48
- (): void;
49
- bar: number;
46
+ type Example = () => string;
47
+ ```
48
+
49
+ ```ts
50
+ function foo(example: () => number): number {
51
+ return bar();
50
52
  }
51
53
  ```
52
54
 
55
+ ```ts
56
+ // returns the function itself, not the `this` argument.
57
+ type ReturnsSelf = (arg: string) => ReturnsSelf;
58
+ ```
59
+
53
60
  ```ts
54
61
  function foo(bar: { (): string; baz: number }): string {
55
62
  return bar();
@@ -65,13 +72,6 @@ interface Bar extends Foo {
65
72
  }
66
73
  ```
67
74
 
68
- ```ts
69
- // returns the `this` argument of function, retaining it's type.
70
- type MixinMethod = <TSelf>(this: TSelf, arg: string) => TSelf;
71
- // a function that returns itself is much clearer in this form.
72
- type ReturnsSelf = (arg: string) => ReturnsSelf;
73
- ```
74
-
75
75
  ```ts
76
76
  // multiple call signatures (overloads) is allowed:
77
77
  interface Overloaded {
@@ -6,34 +6,28 @@ description: 'Enforce `includes` method over `indexOf` method.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/prefer-includes** for documentation.
8
8
 
9
- Until ES5, we were using `String#indexOf` method to check whether a string contains an arbitrary substring or not.
10
- Until ES2015, we were using `Array#indexOf` method to check whether an array contains an arbitrary value or not.
11
-
12
- ES2015 has added `String#includes` and ES2016 has added `Array#includes`.
13
- It makes code more understandable if we use those `includes` methods for the purpose.
14
-
15
- ## Rule Details
16
-
17
- This rule is aimed at suggesting `includes` method if `indexOf` method was used to check whether an object contains an arbitrary value or not.
18
-
19
- If the receiver object of the `indexOf` method call has `includes` method and the two methods have the same parameters, this rule does suggestion.
20
- There are such types: `String`, `Array`, `ReadonlyArray`, and typed arrays.
9
+ Prior to ES2015, `Array#indexOf` and `String#indexOf` comparisons against `-1` were the standard ways to check whether a value exists in an array or string, respectively.
10
+ Alternatives that are easier to read and write now exist: ES2015 added `String#includes` and ES2016 added `Array#includes`.
21
11
 
12
+ This rule reports when an `.indexOf` call can be replaced with an `.includes`.
22
13
  Additionally, this rule reports the tests of simple regular expressions in favor of `String#includes`.
23
14
 
24
- Examples of code for this rule:
15
+ > This rule will report on any receiver object of an `indexOf` method call that has an `includes` method where the two methods have the same parameters.
16
+ > Matching types include: `String`, `Array`, `ReadonlyArray`, and typed arrays.
17
+
18
+ ## Examples
25
19
 
26
20
  <!--tabs-->
27
21
 
28
22
  ### ❌ Incorrect
29
23
 
30
24
  ```ts
31
- let str: string;
32
- let array: any[];
33
- let readonlyArray: ReadonlyArray<any>;
34
- let typedArray: UInt8Array;
35
- let maybe: string;
36
- let userDefined: {
25
+ const str: string;
26
+ const array: any[];
27
+ const readonlyArray: ReadonlyArray<any>;
28
+ const typedArray: UInt8Array;
29
+ const maybe: string;
30
+ const userDefined: {
37
31
  indexOf(x: any): number;
38
32
  includes(x: any): boolean;
39
33
  };
@@ -45,32 +39,36 @@ typedArray.indexOf(value) > -1;
45
39
  maybe?.indexOf('') !== -1;
46
40
  userDefined.indexOf(value) >= 0;
47
41
 
48
- // simple RegExp test
49
- /foo/.test(str);
42
+ /example/.test(str);
50
43
  ```
51
44
 
52
45
  ### ✅ Correct
53
46
 
54
47
  ```ts
55
- let array: any[];
56
- let readonlyArray: ReadonlyArray<any>;
57
- let typedArray: UInt8Array;
58
- let userDefined: {
48
+ const str: string;
49
+ const array: any[];
50
+ const readonlyArray: ReadonlyArray<any>;
51
+ const typedArray: UInt8Array;
52
+ const maybe: string;
53
+ const userDefined: {
59
54
  indexOf(x: any): number;
60
55
  includes(x: any): boolean;
61
56
  };
62
- let mismatchExample: {
63
- indexOf(x: any, fromIndex?: number): number;
64
- includes(x: any): boolean;
65
- };
66
57
 
67
58
  str.includes(value);
68
59
  array.includes(value);
69
60
  readonlyArray.includes(value);
70
61
  typedArray.includes(value);
62
+ maybe?.includes('');
71
63
  userDefined.includes(value);
72
64
 
73
- // the two methods have different parameters.
65
+ str.includes('example');
66
+
67
+ // The two methods have different parameters.
68
+ declare const mismatchExample: {
69
+ indexOf(x: unknown, fromIndex?: number): number;
70
+ includes(x: unknown): boolean;
71
+ };
74
72
  mismatchExample.indexOf(value) >= 0;
75
73
  ```
76
74
 
@@ -6,7 +6,9 @@ description: 'Require all enum members to be literal values.'
6
6
  >
7
7
  > See **https://typescript-eslint.io/rules/prefer-literal-enum-member** for documentation.
8
8
 
9
- TypeScript allows the value of an enum member to be many different kinds of valid JavaScript expressions. However, because enums create their own scope whereby each enum member becomes a variable in that scope, unexpected values could be used at runtime. Example:
9
+ TypeScript allows the value of an enum member to be many different kinds of valid JavaScript expressions.
10
+ However, because enums create their own scope whereby each enum member becomes a variable in that scope, developers are often surprised at the resultant values.
11
+ For example:
10
12
 
11
13
  ```ts
12
14
  const imOutside = 2;
@@ -21,17 +23,12 @@ enum Foo {
21
23
  }
22
24
  ```
23
25
 
24
- The answer is that `Foo.c` will be `1` at runtime. The [playground](https://www.typescriptlang.org/play/#src=const%20imOutside%20%3D%202%3B%0D%0Aconst%20b%20%3D%202%3B%0D%0Aenum%20Foo%20%7B%0D%0A%20%20%20%20outer%20%3D%20imOutside%2C%0D%0A%20%20%20%20a%20%3D%201%2C%0D%0A%20%20%20%20b%20%3D%20a%2C%0D%0A%20%20%20%20c%20%3D%20b%2C%0D%0A%20%20%20%20%2F%2F%20does%20c%20%3D%3D%20Foo.b%20%3D%3D%20Foo.c%20%3D%3D%201%3F%0D%0A%20%20%20%20%2F%2F%20or%20does%20c%20%3D%3D%20b%20%3D%3D%202%3F%0D%0A%7D) illustrates this quite nicely.
26
+ > The answer is that `Foo.c` will be `1` at runtime [[TypeScript playground](https://www.typescriptlang.org/play/#src=const%20imOutside%20%3D%202%3B%0D%0Aconst%20b%20%3D%202%3B%0D%0Aenum%20Foo%20%7B%0D%0A%20%20%20%20outer%20%3D%20imOutside%2C%0D%0A%20%20%20%20a%20%3D%201%2C%0D%0A%20%20%20%20b%20%3D%20a%2C%0D%0A%20%20%20%20c%20%3D%20b%2C%0D%0A%20%20%20%20%2F%2F%20does%20c%20%3D%3D%20Foo.b%20%3D%3D%20Foo.c%20%3D%3D%201%3F%0D%0A%20%20%20%20%2F%2F%20or%20does%20c%20%3D%3D%20b%20%3D%3D%202%3F%0D%0A%7D)].
25
27
 
26
- ## Rule Details
28
+ Therefore, it's often better to prevent unexpected results in code by requiring the use of literal values as enum members.
29
+ This rule reports when an enum member is given a value that is not a literal.
27
30
 
28
- This rule is meant to prevent unexpected results in code by requiring the use of literal values as enum members to prevent unexpected runtime behavior. Template literals, arrays, objects, constructors, and all other expression types can end up using a variable from its scope or the parent scope, which can result in the same unexpected behavior at runtime.
29
-
30
- ## Options
31
-
32
- - `allowBitwiseExpressions` set to `true` will allow you to use bitwise expressions in enum initializer (Default: `false`).
33
-
34
- Examples of code for this rule:
31
+ ## Examples
35
32
 
36
33
  <!--tabs-->
37
34
 
@@ -62,13 +59,15 @@ enum Valid {
62
59
 
63
60
  <!--/tabs-->
64
61
 
65
- ### `allowBitwiseExpressions`
62
+ ## Options
63
+
64
+ - `allowBitwiseExpressions` set to `true` will allow you to use bitwise expressions in enum initializer (Default: `false`).
66
65
 
67
66
  Examples of code for the `{ "allowBitwiseExpressions": true }` option:
68
67
 
69
68
  <!--tabs-->
70
69
 
71
- #### ❌ Incorrect
70
+ ### ❌ Incorrect
72
71
 
73
72
  ```ts
74
73
  const x = 1;
@@ -83,7 +82,7 @@ enum Foo {
83
82
  }
84
83
  ```
85
84
 
86
- #### ✅ Correct
85
+ ### ✅ Correct
87
86
 
88
87
  ```ts
89
88
  enum Foo {