create-packer 1.34.9 → 1.35.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 (1674) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
  3. package/template/web-app/react-rspack/.env +2 -0
  4. package/template/web-app/react-rspack/.env.development +2 -0
  5. package/template/web-app/react-rspack/.eslintrc +120 -0
  6. package/template/web-app/react-rspack/README.md +14 -0
  7. package/template/web-app/react-rspack/domain/router/router.tsx +28 -0
  8. package/template/web-app/react-rspack/env.d.ts +17 -0
  9. package/template/web-app/react-rspack/index.html +12 -0
  10. package/template/web-app/react-rspack/package.json +83 -0
  11. package/template/web-app/react-rspack/public/rsbuild-logo.svg +1 -0
  12. package/template/web-app/react-rspack/rsbuild.config.ts +78 -0
  13. package/template/web-app/react-rspack/shared/service/home.ts +8 -0
  14. package/template/web-app/react-rspack/shared/service/request.ts +5 -0
  15. package/template/web-app/react-rspack/tsconfig.node.json +14 -0
  16. package/template/web-app/react-vite/.editorconfig +14 -0
  17. package/template/web-app/react-vite/.eslintignore +4 -0
  18. package/template/web-app/react-vite/.gitignore +28 -0
  19. package/template/web-app/react-vite/.husky/commit-msg +4 -0
  20. package/template/web-app/react-vite/.husky/pre-commit +4 -0
  21. package/template/web-app/react-vite/.prettierignore +6 -0
  22. package/template/web-app/react-vite/.prettierrc +12 -0
  23. package/template/web-app/react-vite/.stylelintignore +4 -0
  24. package/template/web-app/react-vite/.stylelintrc +24 -0
  25. package/template/web-app/react-vite/.vscode/extensions.json +8 -0
  26. package/template/web-app/react-vite/.vscode/settings.json +18 -0
  27. package/template/web-app/react-vite/commitlint.config.cjs +1 -0
  28. package/template/web-app/react-vite/domain/app/app.model.ts +7 -0
  29. package/template/web-app/react-vite/domain/app/app.styled.ts +3 -0
  30. package/template/web-app/react-vite/domain/app/components/app-context.tsx +17 -0
  31. package/template/web-app/react-vite/domain/app/components/app.tsx +24 -0
  32. package/template/web-app/react-vite/domain/app/components/index.ts +1 -0
  33. package/template/web-app/react-vite/domain/app/index.ts +2 -0
  34. package/template/web-app/react-vite/domain/router/home/ids.ts +3 -0
  35. package/template/web-app/react-vite/domain/router/home/index.ts +2 -0
  36. package/template/web-app/react-vite/domain/router/home/routes.tsx +13 -0
  37. package/template/web-app/react-vite/domain/router/ids.ts +6 -0
  38. package/template/web-app/react-vite/domain/router/index.ts +3 -0
  39. package/template/web-app/react-vite/domain/router/router.types.ts +3 -0
  40. package/template/web-app/react-vite/main.tsx +4 -0
  41. package/template/web-app/react-vite/pages/home/home.styled.ts +7 -0
  42. package/template/web-app/react-vite/pages/home/home.tsx +10 -0
  43. package/template/web-app/react-vite/pages/home/index.ts +1 -0
  44. package/template/web-app/react-vite/pages/index.tsx +18 -0
  45. package/template/web-app/react-vite/pages/not-found.tsx +3 -0
  46. package/template/web-app/react-vite/postcss.config.cjs +7 -0
  47. package/template/web-app/react-vite/scripts/createChunks.ts +26 -0
  48. package/template/web-app/react-vite/scripts/index.ts +1 -0
  49. package/template/web-app/react-vite/shared/assets/react.svg +1 -0
  50. package/template/web-app/react-vite/shared/components/index.ts +0 -0
  51. package/template/web-app/react-vite/shared/constant/index.ts +0 -0
  52. package/template/web-app/react-vite/shared/hooks/defineRouter/defineRouter.types.ts +33 -0
  53. package/template/web-app/react-vite/shared/hooks/defineRouter/deineRouter.tsx +160 -0
  54. package/template/web-app/react-vite/shared/hooks/defineRouter/index.ts +2 -0
  55. package/template/web-app/react-vite/shared/hooks/index.ts +6 -0
  56. package/template/web-app/react-vite/shared/hooks/useInterval.ts +26 -0
  57. package/template/web-app/react-vite/shared/hooks/useLoadingAction.ts +27 -0
  58. package/template/web-app/react-vite/shared/hooks/useLowPriorityState.ts +26 -0
  59. package/template/web-app/react-vite/shared/hooks/useSyncState.ts +15 -0
  60. package/template/web-app/react-vite/shared/hooks/useVisible.ts +27 -0
  61. package/template/web-app/react-vite/shared/service/api.ts +1 -0
  62. package/template/web-app/react-vite/shared/service/index.ts +3 -0
  63. package/template/web-app/react-vite/shared/theme/index.ts +1 -0
  64. package/template/web-app/react-vite/shared/theme/theme.styled.ts +56 -0
  65. package/template/web-app/react-vite/shared/tools/componentInstance.tsx +80 -0
  66. package/template/web-app/react-vite/shared/tools/index.ts +1 -0
  67. package/template/web-app/react-vite/shared/types/index.ts +1 -0
  68. package/template/web-app/react-vite/shared/types/utils.ts +2 -0
  69. package/template/web-app/react-vite/tsconfig.json +44 -0
  70. package/template/web-app/react-webpack/webpack.config.mjs +4 -5
  71. package/template/lib/react/node_modules/.bin/acorn +0 -17
  72. package/template/lib/react/node_modules/.bin/acorn.CMD +0 -12
  73. package/template/lib/react/node_modules/.bin/acorn.ps1 +0 -41
  74. package/template/lib/react/node_modules/.bin/browserslist +0 -17
  75. package/template/lib/react/node_modules/.bin/browserslist.CMD +0 -12
  76. package/template/lib/react/node_modules/.bin/browserslist.ps1 +0 -41
  77. package/template/lib/react/node_modules/.bin/esbuild +0 -17
  78. package/template/lib/react/node_modules/.bin/esbuild.CMD +0 -12
  79. package/template/lib/react/node_modules/.bin/esbuild.ps1 +0 -41
  80. package/template/lib/react/node_modules/.bin/eslint +0 -17
  81. package/template/lib/react/node_modules/.bin/eslint.CMD +0 -12
  82. package/template/lib/react/node_modules/.bin/eslint.ps1 +0 -41
  83. package/template/lib/react/node_modules/.bin/prettier +0 -17
  84. package/template/lib/react/node_modules/.bin/prettier.CMD +0 -12
  85. package/template/lib/react/node_modules/.bin/prettier.ps1 +0 -41
  86. package/template/lib/react/node_modules/.bin/sb +0 -17
  87. package/template/lib/react/node_modules/.bin/sb.CMD +0 -12
  88. package/template/lib/react/node_modules/.bin/sb.ps1 +0 -41
  89. package/template/lib/react/node_modules/.bin/storybook +0 -17
  90. package/template/lib/react/node_modules/.bin/storybook.CMD +0 -12
  91. package/template/lib/react/node_modules/.bin/storybook.ps1 +0 -41
  92. package/template/lib/react/node_modules/.bin/stylelint +0 -17
  93. package/template/lib/react/node_modules/.bin/stylelint.CMD +0 -12
  94. package/template/lib/react/node_modules/.bin/stylelint.ps1 +0 -41
  95. package/template/lib/react/node_modules/.bin/tsc +0 -17
  96. package/template/lib/react/node_modules/.bin/tsc.CMD +0 -12
  97. package/template/lib/react/node_modules/.bin/tsc.ps1 +0 -41
  98. package/template/lib/react/node_modules/.bin/tsserver +0 -17
  99. package/template/lib/react/node_modules/.bin/tsserver.CMD +0 -12
  100. package/template/lib/react/node_modules/.bin/tsserver.ps1 +0 -41
  101. package/template/lib/react/node_modules/.bin/vite +0 -17
  102. package/template/lib/react/node_modules/.bin/vite.CMD +0 -12
  103. package/template/lib/react/node_modules/.bin/vite.ps1 +0 -41
  104. package/template/lib/react/node_modules/eslint/LICENSE +0 -19
  105. package/template/lib/react/node_modules/eslint/README.md +0 -304
  106. package/template/lib/react/node_modules/eslint/bin/eslint.js +0 -173
  107. package/template/lib/react/node_modules/eslint/conf/config-schema.js +0 -93
  108. package/template/lib/react/node_modules/eslint/conf/default-cli-options.js +0 -32
  109. package/template/lib/react/node_modules/eslint/conf/globals.js +0 -154
  110. package/template/lib/react/node_modules/eslint/conf/replacements.json +0 -22
  111. package/template/lib/react/node_modules/eslint/conf/rule-type-list.json +0 -28
  112. package/template/lib/react/node_modules/eslint/lib/api.js +0 -26
  113. package/template/lib/react/node_modules/eslint/lib/cli-engine/cli-engine.js +0 -1078
  114. package/template/lib/react/node_modules/eslint/lib/cli-engine/file-enumerator.js +0 -547
  115. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +0 -60
  116. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/compact.js +0 -60
  117. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +0 -46
  118. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/html.js +0 -351
  119. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +0 -41
  120. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +0 -16
  121. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/json.js +0 -13
  122. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/junit.js +0 -82
  123. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/stylish.js +0 -101
  124. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/tap.js +0 -95
  125. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/unix.js +0 -58
  126. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +0 -63
  127. package/template/lib/react/node_modules/eslint/lib/cli-engine/hash.js +0 -35
  128. package/template/lib/react/node_modules/eslint/lib/cli-engine/index.js +0 -7
  129. package/template/lib/react/node_modules/eslint/lib/cli-engine/lint-result-cache.js +0 -203
  130. package/template/lib/react/node_modules/eslint/lib/cli-engine/load-rules.js +0 -46
  131. package/template/lib/react/node_modules/eslint/lib/cli-engine/xml-escape.js +0 -34
  132. package/template/lib/react/node_modules/eslint/lib/cli.js +0 -471
  133. package/template/lib/react/node_modules/eslint/lib/config/default-config.js +0 -67
  134. package/template/lib/react/node_modules/eslint/lib/config/flat-config-array.js +0 -274
  135. package/template/lib/react/node_modules/eslint/lib/config/flat-config-helpers.js +0 -111
  136. package/template/lib/react/node_modules/eslint/lib/config/flat-config-schema.js +0 -583
  137. package/template/lib/react/node_modules/eslint/lib/config/rule-validator.js +0 -158
  138. package/template/lib/react/node_modules/eslint/lib/eslint/eslint-helpers.js +0 -902
  139. package/template/lib/react/node_modules/eslint/lib/eslint/eslint.js +0 -700
  140. package/template/lib/react/node_modules/eslint/lib/eslint/flat-eslint.js +0 -1142
  141. package/template/lib/react/node_modules/eslint/lib/eslint/index.js +0 -9
  142. package/template/lib/react/node_modules/eslint/lib/linter/apply-disable-directives.js +0 -465
  143. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +0 -852
  144. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +0 -263
  145. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +0 -2348
  146. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +0 -342
  147. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +0 -203
  148. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +0 -349
  149. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +0 -45
  150. package/template/lib/react/node_modules/eslint/lib/linter/config-comment-parser.js +0 -185
  151. package/template/lib/react/node_modules/eslint/lib/linter/index.js +0 -13
  152. package/template/lib/react/node_modules/eslint/lib/linter/interpolate.js +0 -28
  153. package/template/lib/react/node_modules/eslint/lib/linter/linter.js +0 -2119
  154. package/template/lib/react/node_modules/eslint/lib/linter/node-event-generator.js +0 -354
  155. package/template/lib/react/node_modules/eslint/lib/linter/report-translator.js +0 -369
  156. package/template/lib/react/node_modules/eslint/lib/linter/rule-fixer.js +0 -140
  157. package/template/lib/react/node_modules/eslint/lib/linter/rules.js +0 -80
  158. package/template/lib/react/node_modules/eslint/lib/linter/safe-emitter.js +0 -52
  159. package/template/lib/react/node_modules/eslint/lib/linter/source-code-fixer.js +0 -152
  160. package/template/lib/react/node_modules/eslint/lib/linter/timing.js +0 -161
  161. package/template/lib/react/node_modules/eslint/lib/options.js +0 -398
  162. package/template/lib/react/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +0 -1122
  163. package/template/lib/react/node_modules/eslint/lib/rule-tester/index.js +0 -5
  164. package/template/lib/react/node_modules/eslint/lib/rule-tester/rule-tester.js +0 -1206
  165. package/template/lib/react/node_modules/eslint/lib/rules/accessor-pairs.js +0 -346
  166. package/template/lib/react/node_modules/eslint/lib/rules/array-bracket-newline.js +0 -261
  167. package/template/lib/react/node_modules/eslint/lib/rules/array-bracket-spacing.js +0 -244
  168. package/template/lib/react/node_modules/eslint/lib/rules/array-callback-return.js +0 -446
  169. package/template/lib/react/node_modules/eslint/lib/rules/array-element-newline.js +0 -311
  170. package/template/lib/react/node_modules/eslint/lib/rules/arrow-body-style.js +0 -296
  171. package/template/lib/react/node_modules/eslint/lib/rules/arrow-parens.js +0 -186
  172. package/template/lib/react/node_modules/eslint/lib/rules/arrow-spacing.js +0 -164
  173. package/template/lib/react/node_modules/eslint/lib/rules/block-scoped-var.js +0 -135
  174. package/template/lib/react/node_modules/eslint/lib/rules/block-spacing.js +0 -174
  175. package/template/lib/react/node_modules/eslint/lib/rules/brace-style.js +0 -197
  176. package/template/lib/react/node_modules/eslint/lib/rules/callback-return.js +0 -187
  177. package/template/lib/react/node_modules/eslint/lib/rules/camelcase.js +0 -399
  178. package/template/lib/react/node_modules/eslint/lib/rules/capitalized-comments.js +0 -300
  179. package/template/lib/react/node_modules/eslint/lib/rules/class-methods-use-this.js +0 -187
  180. package/template/lib/react/node_modules/eslint/lib/rules/comma-dangle.js +0 -373
  181. package/template/lib/react/node_modules/eslint/lib/rules/comma-spacing.js +0 -192
  182. package/template/lib/react/node_modules/eslint/lib/rules/comma-style.js +0 -314
  183. package/template/lib/react/node_modules/eslint/lib/rules/complexity.js +0 -165
  184. package/template/lib/react/node_modules/eslint/lib/rules/computed-property-spacing.js +0 -208
  185. package/template/lib/react/node_modules/eslint/lib/rules/consistent-return.js +0 -210
  186. package/template/lib/react/node_modules/eslint/lib/rules/consistent-this.js +0 -153
  187. package/template/lib/react/node_modules/eslint/lib/rules/constructor-super.js +0 -446
  188. package/template/lib/react/node_modules/eslint/lib/rules/curly.js +0 -486
  189. package/template/lib/react/node_modules/eslint/lib/rules/default-case-last.js +0 -44
  190. package/template/lib/react/node_modules/eslint/lib/rules/default-case.js +0 -97
  191. package/template/lib/react/node_modules/eslint/lib/rules/default-param-last.js +0 -62
  192. package/template/lib/react/node_modules/eslint/lib/rules/dot-location.js +0 -108
  193. package/template/lib/react/node_modules/eslint/lib/rules/dot-notation.js +0 -176
  194. package/template/lib/react/node_modules/eslint/lib/rules/eol-last.js +0 -115
  195. package/template/lib/react/node_modules/eslint/lib/rules/eqeqeq.js +0 -174
  196. package/template/lib/react/node_modules/eslint/lib/rules/for-direction.js +0 -140
  197. package/template/lib/react/node_modules/eslint/lib/rules/func-call-spacing.js +0 -233
  198. package/template/lib/react/node_modules/eslint/lib/rules/func-name-matching.js +0 -253
  199. package/template/lib/react/node_modules/eslint/lib/rules/func-names.js +0 -191
  200. package/template/lib/react/node_modules/eslint/lib/rules/func-style.js +0 -98
  201. package/template/lib/react/node_modules/eslint/lib/rules/function-call-argument-newline.js +0 -125
  202. package/template/lib/react/node_modules/eslint/lib/rules/function-paren-newline.js +0 -292
  203. package/template/lib/react/node_modules/eslint/lib/rules/generator-star-spacing.js +0 -209
  204. package/template/lib/react/node_modules/eslint/lib/rules/getter-return.js +0 -204
  205. package/template/lib/react/node_modules/eslint/lib/rules/global-require.js +0 -90
  206. package/template/lib/react/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +0 -215
  207. package/template/lib/react/node_modules/eslint/lib/rules/guard-for-in.js +0 -76
  208. package/template/lib/react/node_modules/eslint/lib/rules/handle-callback-err.js +0 -101
  209. package/template/lib/react/node_modules/eslint/lib/rules/id-blacklist.js +0 -246
  210. package/template/lib/react/node_modules/eslint/lib/rules/id-denylist.js +0 -228
  211. package/template/lib/react/node_modules/eslint/lib/rules/id-length.js +0 -177
  212. package/template/lib/react/node_modules/eslint/lib/rules/id-match.js +0 -299
  213. package/template/lib/react/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +0 -84
  214. package/template/lib/react/node_modules/eslint/lib/rules/indent-legacy.js +0 -1126
  215. package/template/lib/react/node_modules/eslint/lib/rules/indent.js +0 -1803
  216. package/template/lib/react/node_modules/eslint/lib/rules/index.js +0 -306
  217. package/template/lib/react/node_modules/eslint/lib/rules/init-declarations.js +0 -139
  218. package/template/lib/react/node_modules/eslint/lib/rules/jsx-quotes.js +0 -98
  219. package/template/lib/react/node_modules/eslint/lib/rules/key-spacing.js +0 -687
  220. package/template/lib/react/node_modules/eslint/lib/rules/keyword-spacing.js +0 -640
  221. package/template/lib/react/node_modules/eslint/lib/rules/line-comment-position.js +0 -122
  222. package/template/lib/react/node_modules/eslint/lib/rules/linebreak-style.js +0 -108
  223. package/template/lib/react/node_modules/eslint/lib/rules/lines-around-comment.js +0 -471
  224. package/template/lib/react/node_modules/eslint/lib/rules/lines-around-directive.js +0 -201
  225. package/template/lib/react/node_modules/eslint/lib/rules/lines-between-class-members.js +0 -269
  226. package/template/lib/react/node_modules/eslint/lib/rules/logical-assignment-operators.js +0 -504
  227. package/template/lib/react/node_modules/eslint/lib/rules/max-classes-per-file.js +0 -89
  228. package/template/lib/react/node_modules/eslint/lib/rules/max-depth.js +0 -156
  229. package/template/lib/react/node_modules/eslint/lib/rules/max-len.js +0 -440
  230. package/template/lib/react/node_modules/eslint/lib/rules/max-lines-per-function.js +0 -213
  231. package/template/lib/react/node_modules/eslint/lib/rules/max-lines.js +0 -193
  232. package/template/lib/react/node_modules/eslint/lib/rules/max-nested-callbacks.js +0 -117
  233. package/template/lib/react/node_modules/eslint/lib/rules/max-params.js +0 -102
  234. package/template/lib/react/node_modules/eslint/lib/rules/max-statements-per-line.js +0 -199
  235. package/template/lib/react/node_modules/eslint/lib/rules/max-statements.js +0 -184
  236. package/template/lib/react/node_modules/eslint/lib/rules/multiline-comment-style.js +0 -474
  237. package/template/lib/react/node_modules/eslint/lib/rules/multiline-ternary.js +0 -174
  238. package/template/lib/react/node_modules/eslint/lib/rules/new-cap.js +0 -276
  239. package/template/lib/react/node_modules/eslint/lib/rules/new-parens.js +0 -93
  240. package/template/lib/react/node_modules/eslint/lib/rules/newline-after-var.js +0 -253
  241. package/template/lib/react/node_modules/eslint/lib/rules/newline-before-return.js +0 -217
  242. package/template/lib/react/node_modules/eslint/lib/rules/newline-per-chained-call.js +0 -126
  243. package/template/lib/react/node_modules/eslint/lib/rules/no-alert.js +0 -138
  244. package/template/lib/react/node_modules/eslint/lib/rules/no-array-constructor.js +0 -133
  245. package/template/lib/react/node_modules/eslint/lib/rules/no-async-promise-executor.js +0 -39
  246. package/template/lib/react/node_modules/eslint/lib/rules/no-await-in-loop.js +0 -106
  247. package/template/lib/react/node_modules/eslint/lib/rules/no-bitwise.js +0 -119
  248. package/template/lib/react/node_modules/eslint/lib/rules/no-buffer-constructor.js +0 -50
  249. package/template/lib/react/node_modules/eslint/lib/rules/no-caller.js +0 -46
  250. package/template/lib/react/node_modules/eslint/lib/rules/no-case-declarations.js +0 -64
  251. package/template/lib/react/node_modules/eslint/lib/rules/no-catch-shadow.js +0 -82
  252. package/template/lib/react/node_modules/eslint/lib/rules/no-class-assign.js +0 -63
  253. package/template/lib/react/node_modules/eslint/lib/rules/no-compare-neg-zero.js +0 -60
  254. package/template/lib/react/node_modules/eslint/lib/rules/no-cond-assign.js +0 -159
  255. package/template/lib/react/node_modules/eslint/lib/rules/no-confusing-arrow.js +0 -92
  256. package/template/lib/react/node_modules/eslint/lib/rules/no-console.js +0 -207
  257. package/template/lib/react/node_modules/eslint/lib/rules/no-const-assign.js +0 -56
  258. package/template/lib/react/node_modules/eslint/lib/rules/no-constant-binary-expression.js +0 -509
  259. package/template/lib/react/node_modules/eslint/lib/rules/no-constant-condition.js +0 -150
  260. package/template/lib/react/node_modules/eslint/lib/rules/no-constructor-return.js +0 -62
  261. package/template/lib/react/node_modules/eslint/lib/rules/no-continue.js +0 -39
  262. package/template/lib/react/node_modules/eslint/lib/rules/no-control-regex.js +0 -138
  263. package/template/lib/react/node_modules/eslint/lib/rules/no-debugger.js +0 -43
  264. package/template/lib/react/node_modules/eslint/lib/rules/no-delete-var.js +0 -42
  265. package/template/lib/react/node_modules/eslint/lib/rules/no-div-regex.js +0 -53
  266. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-args.js +0 -82
  267. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-class-members.js +0 -104
  268. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-else-if.js +0 -122
  269. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-keys.js +0 -142
  270. package/template/lib/react/node_modules/eslint/lib/rules/no-duplicate-case.js +0 -71
  271. package/template/lib/react/node_modules/eslint/lib/rules/no-duplicate-imports.js +0 -290
  272. package/template/lib/react/node_modules/eslint/lib/rules/no-else-return.js +0 -405
  273. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-character-class.js +0 -76
  274. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-function.js +0 -167
  275. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-pattern.js +0 -78
  276. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-static-block.js +0 -47
  277. package/template/lib/react/node_modules/eslint/lib/rules/no-empty.js +0 -103
  278. package/template/lib/react/node_modules/eslint/lib/rules/no-eq-null.js +0 -46
  279. package/template/lib/react/node_modules/eslint/lib/rules/no-eval.js +0 -286
  280. package/template/lib/react/node_modules/eslint/lib/rules/no-ex-assign.js +0 -54
  281. package/template/lib/react/node_modules/eslint/lib/rules/no-extend-native.js +0 -179
  282. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-bind.js +0 -213
  283. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +0 -317
  284. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-label.js +0 -149
  285. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-parens.js +0 -1322
  286. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-semi.js +0 -147
  287. package/template/lib/react/node_modules/eslint/lib/rules/no-fallthrough.js +0 -196
  288. package/template/lib/react/node_modules/eslint/lib/rules/no-floating-decimal.js +0 -73
  289. package/template/lib/react/node_modules/eslint/lib/rules/no-func-assign.js +0 -78
  290. package/template/lib/react/node_modules/eslint/lib/rules/no-global-assign.js +0 -95
  291. package/template/lib/react/node_modules/eslint/lib/rules/no-implicit-coercion.js +0 -380
  292. package/template/lib/react/node_modules/eslint/lib/rules/no-implicit-globals.js +0 -146
  293. package/template/lib/react/node_modules/eslint/lib/rules/no-implied-eval.js +0 -132
  294. package/template/lib/react/node_modules/eslint/lib/rules/no-import-assign.js +0 -241
  295. package/template/lib/react/node_modules/eslint/lib/rules/no-inline-comments.js +0 -110
  296. package/template/lib/react/node_modules/eslint/lib/rules/no-inner-declarations.js +0 -110
  297. package/template/lib/react/node_modules/eslint/lib/rules/no-invalid-regexp.js +0 -194
  298. package/template/lib/react/node_modules/eslint/lib/rules/no-invalid-this.js +0 -150
  299. package/template/lib/react/node_modules/eslint/lib/rules/no-irregular-whitespace.js +0 -276
  300. package/template/lib/react/node_modules/eslint/lib/rules/no-iterator.js +0 -52
  301. package/template/lib/react/node_modules/eslint/lib/rules/no-label-var.js +0 -80
  302. package/template/lib/react/node_modules/eslint/lib/rules/no-labels.js +0 -149
  303. package/template/lib/react/node_modules/eslint/lib/rules/no-lone-blocks.js +0 -136
  304. package/template/lib/react/node_modules/eslint/lib/rules/no-lonely-if.js +0 -88
  305. package/template/lib/react/node_modules/eslint/lib/rules/no-loop-func.js +0 -206
  306. package/template/lib/react/node_modules/eslint/lib/rules/no-loss-of-precision.js +0 -214
  307. package/template/lib/react/node_modules/eslint/lib/rules/no-magic-numbers.js +0 -243
  308. package/template/lib/react/node_modules/eslint/lib/rules/no-misleading-character-class.js +0 -300
  309. package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-operators.js +0 -229
  310. package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-requires.js +0 -238
  311. package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +0 -116
  312. package/template/lib/react/node_modules/eslint/lib/rules/no-multi-assign.js +0 -67
  313. package/template/lib/react/node_modules/eslint/lib/rules/no-multi-spaces.js +0 -141
  314. package/template/lib/react/node_modules/eslint/lib/rules/no-multi-str.js +0 -65
  315. package/template/lib/react/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +0 -154
  316. package/template/lib/react/node_modules/eslint/lib/rules/no-native-reassign.js +0 -98
  317. package/template/lib/react/node_modules/eslint/lib/rules/no-negated-condition.js +0 -95
  318. package/template/lib/react/node_modules/eslint/lib/rules/no-negated-in-lhs.js +0 -46
  319. package/template/lib/react/node_modules/eslint/lib/rules/no-nested-ternary.js +0 -44
  320. package/template/lib/react/node_modules/eslint/lib/rules/no-new-func.js +0 -87
  321. package/template/lib/react/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +0 -66
  322. package/template/lib/react/node_modules/eslint/lib/rules/no-new-object.js +0 -67
  323. package/template/lib/react/node_modules/eslint/lib/rules/no-new-require.js +0 -50
  324. package/template/lib/react/node_modules/eslint/lib/rules/no-new-symbol.js +0 -56
  325. package/template/lib/react/node_modules/eslint/lib/rules/no-new-wrappers.js +0 -60
  326. package/template/lib/react/node_modules/eslint/lib/rules/no-new.js +0 -43
  327. package/template/lib/react/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +0 -148
  328. package/template/lib/react/node_modules/eslint/lib/rules/no-obj-calls.js +0 -86
  329. package/template/lib/react/node_modules/eslint/lib/rules/no-object-constructor.js +0 -117
  330. package/template/lib/react/node_modules/eslint/lib/rules/no-octal-escape.js +0 -56
  331. package/template/lib/react/node_modules/eslint/lib/rules/no-octal.js +0 -45
  332. package/template/lib/react/node_modules/eslint/lib/rules/no-param-reassign.js +0 -230
  333. package/template/lib/react/node_modules/eslint/lib/rules/no-path-concat.js +0 -64
  334. package/template/lib/react/node_modules/eslint/lib/rules/no-plusplus.js +0 -105
  335. package/template/lib/react/node_modules/eslint/lib/rules/no-process-env.js +0 -51
  336. package/template/lib/react/node_modules/eslint/lib/rules/no-process-exit.js +0 -47
  337. package/template/lib/react/node_modules/eslint/lib/rules/no-promise-executor-return.js +0 -263
  338. package/template/lib/react/node_modules/eslint/lib/rules/no-proto.js +0 -48
  339. package/template/lib/react/node_modules/eslint/lib/rules/no-prototype-builtins.js +0 -159
  340. package/template/lib/react/node_modules/eslint/lib/rules/no-redeclare.js +0 -174
  341. package/template/lib/react/node_modules/eslint/lib/rules/no-regex-spaces.js +0 -197
  342. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-exports.js +0 -193
  343. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-globals.js +0 -124
  344. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-imports.js +0 -410
  345. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-modules.js +0 -213
  346. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-properties.js +0 -168
  347. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-syntax.js +0 -70
  348. package/template/lib/react/node_modules/eslint/lib/rules/no-return-assign.js +0 -80
  349. package/template/lib/react/node_modules/eslint/lib/rules/no-return-await.js +0 -135
  350. package/template/lib/react/node_modules/eslint/lib/rules/no-script-url.js +0 -61
  351. package/template/lib/react/node_modules/eslint/lib/rules/no-self-assign.js +0 -183
  352. package/template/lib/react/node_modules/eslint/lib/rules/no-self-compare.js +0 -60
  353. package/template/lib/react/node_modules/eslint/lib/rules/no-sequences.js +0 -138
  354. package/template/lib/react/node_modules/eslint/lib/rules/no-setter-return.js +0 -226
  355. package/template/lib/react/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +0 -65
  356. package/template/lib/react/node_modules/eslint/lib/rules/no-shadow.js +0 -336
  357. package/template/lib/react/node_modules/eslint/lib/rules/no-spaced-func.js +0 -83
  358. package/template/lib/react/node_modules/eslint/lib/rules/no-sparse-arrays.js +0 -50
  359. package/template/lib/react/node_modules/eslint/lib/rules/no-sync.js +0 -64
  360. package/template/lib/react/node_modules/eslint/lib/rules/no-tabs.js +0 -81
  361. package/template/lib/react/node_modules/eslint/lib/rules/no-template-curly-in-string.js +0 -44
  362. package/template/lib/react/node_modules/eslint/lib/rules/no-ternary.js +0 -41
  363. package/template/lib/react/node_modules/eslint/lib/rules/no-this-before-super.js +0 -331
  364. package/template/lib/react/node_modules/eslint/lib/rules/no-throw-literal.js +0 -51
  365. package/template/lib/react/node_modules/eslint/lib/rules/no-trailing-spaces.js +0 -193
  366. package/template/lib/react/node_modules/eslint/lib/rules/no-undef-init.js +0 -75
  367. package/template/lib/react/node_modules/eslint/lib/rules/no-undef.js +0 -79
  368. package/template/lib/react/node_modules/eslint/lib/rules/no-undefined.js +0 -86
  369. package/template/lib/react/node_modules/eslint/lib/rules/no-underscore-dangle.js +0 -335
  370. package/template/lib/react/node_modules/eslint/lib/rules/no-unexpected-multiline.js +0 -120
  371. package/template/lib/react/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +0 -360
  372. package/template/lib/react/node_modules/eslint/lib/rules/no-unneeded-ternary.js +0 -166
  373. package/template/lib/react/node_modules/eslint/lib/rules/no-unreachable-loop.js +0 -185
  374. package/template/lib/react/node_modules/eslint/lib/rules/no-unreachable.js +0 -293
  375. package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-finally.js +0 -111
  376. package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-negation.js +0 -128
  377. package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +0 -205
  378. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-expressions.js +0 -186
  379. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-labels.js +0 -143
  380. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-private-class-members.js +0 -195
  381. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-vars.js +0 -718
  382. package/template/lib/react/node_modules/eslint/lib/rules/no-use-before-define.js +0 -348
  383. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-backreference.js +0 -194
  384. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-call.js +0 -90
  385. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-catch.js +0 -57
  386. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-computed-key.js +0 -168
  387. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-concat.js +0 -115
  388. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-constructor.js +0 -189
  389. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-escape.js +0 -333
  390. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-rename.js +0 -172
  391. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-return.js +0 -364
  392. package/template/lib/react/node_modules/eslint/lib/rules/no-var.js +0 -334
  393. package/template/lib/react/node_modules/eslint/lib/rules/no-void.js +0 -64
  394. package/template/lib/react/node_modules/eslint/lib/rules/no-warning-comments.js +0 -201
  395. package/template/lib/react/node_modules/eslint/lib/rules/no-whitespace-before-property.js +0 -116
  396. package/template/lib/react/node_modules/eslint/lib/rules/no-with.js +0 -39
  397. package/template/lib/react/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +0 -127
  398. package/template/lib/react/node_modules/eslint/lib/rules/object-curly-newline.js +0 -324
  399. package/template/lib/react/node_modules/eslint/lib/rules/object-curly-spacing.js +0 -311
  400. package/template/lib/react/node_modules/eslint/lib/rules/object-property-newline.js +0 -102
  401. package/template/lib/react/node_modules/eslint/lib/rules/object-shorthand.js +0 -520
  402. package/template/lib/react/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +0 -95
  403. package/template/lib/react/node_modules/eslint/lib/rules/one-var.js +0 -567
  404. package/template/lib/react/node_modules/eslint/lib/rules/operator-assignment.js +0 -209
  405. package/template/lib/react/node_modules/eslint/lib/rules/operator-linebreak.js +0 -253
  406. package/template/lib/react/node_modules/eslint/lib/rules/padded-blocks.js +0 -310
  407. package/template/lib/react/node_modules/eslint/lib/rules/padding-line-between-statements.js +0 -590
  408. package/template/lib/react/node_modules/eslint/lib/rules/prefer-arrow-callback.js +0 -381
  409. package/template/lib/react/node_modules/eslint/lib/rules/prefer-const.js +0 -501
  410. package/template/lib/react/node_modules/eslint/lib/rules/prefer-destructuring.js +0 -301
  411. package/template/lib/react/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +0 -191
  412. package/template/lib/react/node_modules/eslint/lib/rules/prefer-named-capture-group.js +0 -178
  413. package/template/lib/react/node_modules/eslint/lib/rules/prefer-numeric-literals.js +0 -148
  414. package/template/lib/react/node_modules/eslint/lib/rules/prefer-object-has-own.js +0 -114
  415. package/template/lib/react/node_modules/eslint/lib/rules/prefer-object-spread.js +0 -298
  416. package/template/lib/react/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +0 -132
  417. package/template/lib/react/node_modules/eslint/lib/rules/prefer-reflect.js +0 -127
  418. package/template/lib/react/node_modules/eslint/lib/rules/prefer-regex-literals.js +0 -507
  419. package/template/lib/react/node_modules/eslint/lib/rules/prefer-rest-params.js +0 -118
  420. package/template/lib/react/node_modules/eslint/lib/rules/prefer-spread.js +0 -87
  421. package/template/lib/react/node_modules/eslint/lib/rules/prefer-template.js +0 -275
  422. package/template/lib/react/node_modules/eslint/lib/rules/quote-props.js +0 -310
  423. package/template/lib/react/node_modules/eslint/lib/rules/quotes.js +0 -350
  424. package/template/lib/react/node_modules/eslint/lib/rules/radix.js +0 -198
  425. package/template/lib/react/node_modules/eslint/lib/rules/require-atomic-updates.js +0 -331
  426. package/template/lib/react/node_modules/eslint/lib/rules/require-await.js +0 -113
  427. package/template/lib/react/node_modules/eslint/lib/rules/require-jsdoc.js +0 -122
  428. package/template/lib/react/node_modules/eslint/lib/rules/require-unicode-regexp.js +0 -129
  429. package/template/lib/react/node_modules/eslint/lib/rules/require-yield.js +0 -77
  430. package/template/lib/react/node_modules/eslint/lib/rules/rest-spread-spacing.js +0 -123
  431. package/template/lib/react/node_modules/eslint/lib/rules/semi-spacing.js +0 -248
  432. package/template/lib/react/node_modules/eslint/lib/rules/semi-style.js +0 -158
  433. package/template/lib/react/node_modules/eslint/lib/rules/semi.js +0 -438
  434. package/template/lib/react/node_modules/eslint/lib/rules/sort-imports.js +0 -241
  435. package/template/lib/react/node_modules/eslint/lib/rules/sort-keys.js +0 -230
  436. package/template/lib/react/node_modules/eslint/lib/rules/sort-vars.js +0 -104
  437. package/template/lib/react/node_modules/eslint/lib/rules/space-before-blocks.js +0 -204
  438. package/template/lib/react/node_modules/eslint/lib/rules/space-before-function-paren.js +0 -167
  439. package/template/lib/react/node_modules/eslint/lib/rules/space-in-parens.js +0 -285
  440. package/template/lib/react/node_modules/eslint/lib/rules/space-infix-ops.js +0 -198
  441. package/template/lib/react/node_modules/eslint/lib/rules/space-unary-ops.js +0 -324
  442. package/template/lib/react/node_modules/eslint/lib/rules/spaced-comment.js +0 -385
  443. package/template/lib/react/node_modules/eslint/lib/rules/strict.js +0 -277
  444. package/template/lib/react/node_modules/eslint/lib/rules/switch-colon-spacing.js +0 -132
  445. package/template/lib/react/node_modules/eslint/lib/rules/symbol-description.js +0 -73
  446. package/template/lib/react/node_modules/eslint/lib/rules/template-curly-spacing.js +0 -144
  447. package/template/lib/react/node_modules/eslint/lib/rules/template-tag-spacing.js +0 -93
  448. package/template/lib/react/node_modules/eslint/lib/rules/unicode-bom.js +0 -73
  449. package/template/lib/react/node_modules/eslint/lib/rules/use-isnan.js +0 -141
  450. package/template/lib/react/node_modules/eslint/lib/rules/utils/ast-utils.js +0 -2282
  451. package/template/lib/react/node_modules/eslint/lib/rules/utils/fix-tracker.js +0 -114
  452. package/template/lib/react/node_modules/eslint/lib/rules/utils/keywords.js +0 -67
  453. package/template/lib/react/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +0 -115
  454. package/template/lib/react/node_modules/eslint/lib/rules/utils/patterns/letters.js +0 -36
  455. package/template/lib/react/node_modules/eslint/lib/rules/utils/regular-expressions.js +0 -42
  456. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/index.js +0 -11
  457. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +0 -13
  458. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +0 -13
  459. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +0 -13
  460. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +0 -14
  461. package/template/lib/react/node_modules/eslint/lib/rules/valid-jsdoc.js +0 -516
  462. package/template/lib/react/node_modules/eslint/lib/rules/valid-typeof.js +0 -127
  463. package/template/lib/react/node_modules/eslint/lib/rules/vars-on-top.js +0 -157
  464. package/template/lib/react/node_modules/eslint/lib/rules/wrap-iife.js +0 -207
  465. package/template/lib/react/node_modules/eslint/lib/rules/wrap-regex.js +0 -61
  466. package/template/lib/react/node_modules/eslint/lib/rules/yield-star-spacing.js +0 -130
  467. package/template/lib/react/node_modules/eslint/lib/rules/yoda.js +0 -353
  468. package/template/lib/react/node_modules/eslint/lib/shared/ajv.js +0 -34
  469. package/template/lib/react/node_modules/eslint/lib/shared/ast-utils.js +0 -29
  470. package/template/lib/react/node_modules/eslint/lib/shared/config-validator.js +0 -347
  471. package/template/lib/react/node_modules/eslint/lib/shared/deprecation-warnings.js +0 -58
  472. package/template/lib/react/node_modules/eslint/lib/shared/directives.js +0 -15
  473. package/template/lib/react/node_modules/eslint/lib/shared/logging.js +0 -30
  474. package/template/lib/react/node_modules/eslint/lib/shared/relative-module-resolver.js +0 -50
  475. package/template/lib/react/node_modules/eslint/lib/shared/runtime-info.js +0 -167
  476. package/template/lib/react/node_modules/eslint/lib/shared/severity.js +0 -49
  477. package/template/lib/react/node_modules/eslint/lib/shared/string-utils.js +0 -60
  478. package/template/lib/react/node_modules/eslint/lib/shared/traverser.js +0 -195
  479. package/template/lib/react/node_modules/eslint/lib/shared/types.js +0 -216
  480. package/template/lib/react/node_modules/eslint/lib/source-code/index.js +0 -5
  481. package/template/lib/react/node_modules/eslint/lib/source-code/source-code.js +0 -1055
  482. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +0 -57
  483. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +0 -58
  484. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/cursor.js +0 -76
  485. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/cursors.js +0 -90
  486. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +0 -39
  487. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +0 -43
  488. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +0 -57
  489. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +0 -63
  490. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/index.js +0 -627
  491. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +0 -40
  492. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +0 -38
  493. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +0 -42
  494. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/utils.js +0 -107
  495. package/template/lib/react/node_modules/eslint/lib/unsupported-api.js +0 -30
  496. package/template/lib/react/node_modules/eslint/messages/all-files-ignored.js +0 -16
  497. package/template/lib/react/node_modules/eslint/messages/eslintrc-incompat.js +0 -98
  498. package/template/lib/react/node_modules/eslint/messages/eslintrc-plugins.js +0 -24
  499. package/template/lib/react/node_modules/eslint/messages/extend-config-missing.js +0 -13
  500. package/template/lib/react/node_modules/eslint/messages/failed-to-read-json.js +0 -11
  501. package/template/lib/react/node_modules/eslint/messages/file-not-found.js +0 -10
  502. package/template/lib/react/node_modules/eslint/messages/invalid-rule-options.js +0 -17
  503. package/template/lib/react/node_modules/eslint/messages/invalid-rule-severity.js +0 -13
  504. package/template/lib/react/node_modules/eslint/messages/no-config-found.js +0 -15
  505. package/template/lib/react/node_modules/eslint/messages/plugin-conflict.js +0 -22
  506. package/template/lib/react/node_modules/eslint/messages/plugin-invalid.js +0 -16
  507. package/template/lib/react/node_modules/eslint/messages/plugin-missing.js +0 -19
  508. package/template/lib/react/node_modules/eslint/messages/print-config-with-directory-path.js +0 -8
  509. package/template/lib/react/node_modules/eslint/messages/shared.js +0 -18
  510. package/template/lib/react/node_modules/eslint/messages/whitespace-found.js +0 -11
  511. package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint +0 -17
  512. package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint.CMD +0 -12
  513. package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint.ps1 +0 -41
  514. package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml +0 -17
  515. package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml.CMD +0 -12
  516. package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml.ps1 +0 -41
  517. package/template/lib/react/node_modules/eslint/package.json +0 -179
  518. package/template/lib/react/node_modules/eslint-import-resolver-typescript/LICENSE +0 -5
  519. package/template/lib/react/node_modules/eslint-import-resolver-typescript/README.md +0 -232
  520. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.cjs +0 -278
  521. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.d.ts +0 -20
  522. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.es2020.mjs +0 -251
  523. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.js +0 -252
  524. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.js.map +0 -1
  525. package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint +0 -17
  526. package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.CMD +0 -12
  527. package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.ps1 +0 -41
  528. package/template/lib/react/node_modules/eslint-import-resolver-typescript/package.json +0 -108
  529. package/template/lib/react/node_modules/eslint-import-resolver-typescript/shim.d.ts +0 -4
  530. package/template/lib/react/node_modules/eslint-plugin-import/CHANGELOG.md +0 -1925
  531. package/template/lib/react/node_modules/eslint-plugin-import/CONTRIBUTING.md +0 -84
  532. package/template/lib/react/node_modules/eslint-plugin-import/LICENSE +0 -22
  533. package/template/lib/react/node_modules/eslint-plugin-import/README.md +0 -500
  534. package/template/lib/react/node_modules/eslint-plugin-import/RELEASE.md +0 -54
  535. package/template/lib/react/node_modules/eslint-plugin-import/SECURITY.md +0 -11
  536. package/template/lib/react/node_modules/eslint-plugin-import/config/electron.js +0 -8
  537. package/template/lib/react/node_modules/eslint-plugin-import/config/errors.js +0 -14
  538. package/template/lib/react/node_modules/eslint-plugin-import/config/react-native.js +0 -13
  539. package/template/lib/react/node_modules/eslint-plugin-import/config/react.js +0 -18
  540. package/template/lib/react/node_modules/eslint-plugin-import/config/recommended.js +0 -28
  541. package/template/lib/react/node_modules/eslint-plugin-import/config/stage-0.js +0 -12
  542. package/template/lib/react/node_modules/eslint-plugin-import/config/typescript.js +0 -34
  543. package/template/lib/react/node_modules/eslint-plugin-import/config/warnings.js +0 -12
  544. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +0 -91
  545. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/default.md +0 -72
  546. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +0 -92
  547. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/export.md +0 -37
  548. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/exports-last.md +0 -51
  549. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/extensions.md +0 -174
  550. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/first.md +0 -75
  551. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/group-exports.md +0 -118
  552. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/imports-first.md +0 -9
  553. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +0 -70
  554. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/named.md +0 -102
  555. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/namespace.md +0 -106
  556. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +0 -167
  557. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +0 -54
  558. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-amd.md +0 -37
  559. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +0 -83
  560. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +0 -96
  561. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +0 -111
  562. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +0 -65
  563. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +0 -62
  564. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +0 -109
  565. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +0 -25
  566. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +0 -49
  567. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +0 -139
  568. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +0 -81
  569. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +0 -136
  570. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +0 -54
  571. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +0 -52
  572. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +0 -53
  573. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +0 -36
  574. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +0 -79
  575. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +0 -44
  576. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +0 -42
  577. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +0 -70
  578. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +0 -123
  579. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +0 -198
  580. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +0 -32
  581. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +0 -60
  582. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +0 -110
  583. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +0 -125
  584. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +0 -85
  585. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +0 -39
  586. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/order.md +0 -365
  587. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +0 -185
  588. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +0 -57
  589. package/template/lib/react/node_modules/eslint-plugin-import/lib/ExportMap.js +0 -856
  590. package/template/lib/react/node_modules/eslint-plugin-import/lib/core/importType.js +0 -129
  591. package/template/lib/react/node_modules/eslint-plugin-import/lib/core/packagePath.js +0 -22
  592. package/template/lib/react/node_modules/eslint-plugin-import/lib/core/staticRequire.js +0 -11
  593. package/template/lib/react/node_modules/eslint-plugin-import/lib/docsUrl.js +0 -8
  594. package/template/lib/react/node_modules/eslint-plugin-import/lib/importDeclaration.js +0 -5
  595. package/template/lib/react/node_modules/eslint-plugin-import/lib/index.js +0 -71
  596. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +0 -221
  597. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/default.js +0 -40
  598. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +0 -120
  599. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/export.js +0 -250
  600. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/exports-last.js +0 -40
  601. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/extensions.js +0 -193
  602. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/first.js +0 -144
  603. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/group-exports.js +0 -155
  604. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/imports-first.js +0 -16
  605. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +0 -60
  606. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/named.js +0 -143
  607. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/namespace.js +0 -218
  608. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +0 -237
  609. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +0 -40
  610. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-amd.js +0 -47
  611. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +0 -103
  612. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +0 -141
  613. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +0 -158
  614. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +0 -43
  615. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +0 -138
  616. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +0 -354
  617. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +0 -77
  618. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +0 -105
  619. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +0 -301
  620. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +0 -85
  621. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +0 -144
  622. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +0 -59
  623. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +0 -96
  624. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +0 -45
  625. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +0 -31
  626. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +0 -39
  627. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +0 -175
  628. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +0 -44
  629. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +0 -71
  630. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +0 -48
  631. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +0 -245
  632. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +0 -39
  633. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +0 -79
  634. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +0 -60
  635. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +0 -945
  636. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +0 -147
  637. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +0 -26
  638. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/order.js +0 -785
  639. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +0 -116
  640. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +0 -38
  641. package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/LICENSE +0 -22
  642. package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/README.md +0 -21
  643. package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/index.js +0 -41
  644. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint +0 -17
  645. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint.CMD +0 -12
  646. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint.ps1 +0 -41
  647. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver +0 -17
  648. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver.CMD +0 -12
  649. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver.ps1 +0 -41
  650. package/template/lib/react/node_modules/eslint-plugin-import/package.json +0 -124
  651. package/template/lib/react/node_modules/eslint-plugin-prettier/LICENSE.md +0 -24
  652. package/template/lib/react/node_modules/eslint-plugin-prettier/README.md +0 -202
  653. package/template/lib/react/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.d.ts +0 -5
  654. package/template/lib/react/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js +0 -254
  655. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint +0 -17
  656. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier +0 -17
  657. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.CMD +0 -12
  658. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.ps1 +0 -41
  659. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.CMD +0 -12
  660. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.ps1 +0 -41
  661. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier +0 -17
  662. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.CMD +0 -12
  663. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.ps1 +0 -41
  664. package/template/lib/react/node_modules/eslint-plugin-prettier/package.json +0 -101
  665. package/template/lib/react/node_modules/eslint-plugin-prettier/recommended.d.ts +0 -5
  666. package/template/lib/react/node_modules/eslint-plugin-prettier/recommended.js +0 -17
  667. package/template/lib/react/node_modules/eslint-plugin-prettier/worker.js +0 -181
  668. package/template/lib/react/node_modules/eslint-plugin-react/LICENSE +0 -22
  669. package/template/lib/react/node_modules/eslint-plugin-react/README.md +0 -420
  670. package/template/lib/react/node_modules/eslint-plugin-react/configs/all.js +0 -39
  671. package/template/lib/react/node_modules/eslint-plugin-react/configs/jsx-runtime.js +0 -18
  672. package/template/lib/react/node_modules/eslint-plugin-react/configs/recommended.js +0 -34
  673. package/template/lib/react/node_modules/eslint-plugin-react/index.js +0 -31
  674. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/boolean-prop-naming.js +0 -400
  675. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/button-has-type.js +0 -163
  676. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/default-props-match-prop-types.js +0 -108
  677. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/destructuring-assignment.js +0 -280
  678. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/display-name.js +0 -283
  679. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-component-props.js +0 -134
  680. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-dom-props.js +0 -121
  681. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-elements.js +0 -114
  682. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-foreign-prop-types.js +0 -134
  683. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-prop-types.js +0 -293
  684. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/function-component-definition.js +0 -284
  685. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/hook-use-state.js +0 -203
  686. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/iframe-missing-sandbox.js +0 -142
  687. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/index.js +0 -106
  688. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-boolean-value.js +0 -159
  689. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-child-element-spacing.js +0 -116
  690. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-closing-bracket-location.js +0 -308
  691. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-closing-tag-location.js +0 -73
  692. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-brace-presence.js +0 -414
  693. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-newline.js +0 -184
  694. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-spacing.js +0 -430
  695. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-equals-spacing.js +0 -110
  696. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-filename-extension.js +0 -110
  697. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js +0 -80
  698. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-fragments.js +0 -209
  699. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-handler-names.js +0 -171
  700. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-indent-props.js +0 -213
  701. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-indent.js +0 -441
  702. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-key.js +0 -293
  703. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-max-depth.js +0 -162
  704. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-max-props-per-line.js +0 -154
  705. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-newline.js +0 -168
  706. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-bind.js +0 -208
  707. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-comment-textnodes.js +0 -64
  708. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-constructed-context-values.js +0 -225
  709. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-duplicate-props.js +0 -76
  710. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-leaked-render.js +0 -186
  711. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-literals.js +0 -195
  712. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-script-url.js +0 -97
  713. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-target-blank.js +0 -283
  714. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-undef.js +0 -115
  715. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-useless-fragment.js +0 -257
  716. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-one-expression-per-line.js +0 -233
  717. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-pascal-case.js +0 -163
  718. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces.js +0 -134
  719. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-spreading.js +0 -141
  720. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-sort-default-props.js +0 -188
  721. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-sort-props.js +0 -530
  722. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-space-before-closing.js +0 -96
  723. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-tag-spacing.js +0 -323
  724. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-uses-react.js +0 -46
  725. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-uses-vars.js +0 -60
  726. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-wrap-multilines.js +0 -260
  727. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-access-state-in-setstate.js +0 -187
  728. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-adjacent-inline-elements.js +0 -125
  729. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-array-index-key.js +0 -288
  730. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-arrow-function-lifecycle.js +0 -144
  731. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-children-prop.js +0 -119
  732. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-danger-with-children.js +0 -155
  733. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-danger.js +0 -74
  734. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-deprecated.js +0 -258
  735. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-did-mount-set-state.js +0 -10
  736. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-did-update-set-state.js +0 -10
  737. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-direct-mutation-state.js +0 -154
  738. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-find-dom-node.js +0 -50
  739. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-invalid-html-attribute.js +0 -639
  740. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-is-mounted.js +0 -55
  741. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-multi-comp.js +0 -80
  742. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-namespace.js +0 -61
  743. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-object-type-as-default-prop.js +0 -103
  744. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-redundant-should-component-update.js +0 -87
  745. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-render-return-value.js +0 -81
  746. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-set-state.js +0 -88
  747. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-string-refs.js +0 -119
  748. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-this-in-sfc.js +0 -46
  749. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-typos.js +0 -257
  750. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unescaped-entities.js +0 -133
  751. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unknown-property.js +0 -609
  752. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unsafe.js +0 -153
  753. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unstable-nested-components.js +0 -491
  754. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-class-component-methods.js +0 -257
  755. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-prop-types.js +0 -173
  756. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-state.js +0 -522
  757. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-will-update-set-state.js +0 -14
  758. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-es6-class.js +0 -57
  759. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-exact-props.js +0 -161
  760. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-read-only-props.js +0 -116
  761. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-stateless-function.js +0 -390
  762. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prop-types.js +0 -201
  763. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/react-in-jsx-scope.js +0 -56
  764. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-default-props.js +0 -193
  765. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-optimization.js +0 -239
  766. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-render-return.js +0 -104
  767. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/self-closing-comp.js +0 -103
  768. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-comp.js +0 -446
  769. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-default-props.js +0 -174
  770. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-prop-types.js +0 -266
  771. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/state-in-constructor.js +0 -67
  772. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/static-property-placement.js +0 -187
  773. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/style-prop-object.js +0 -137
  774. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/void-dom-elements-no-children.js +0 -165
  775. package/template/lib/react/node_modules/eslint-plugin-react/lib/types.d.ts +0 -28
  776. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/Components.js +0 -946
  777. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/annotations.js +0 -32
  778. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/ast.js +0 -461
  779. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/componentUtil.js +0 -182
  780. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/defaultProps.js +0 -268
  781. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/docsUrl.js +0 -7
  782. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/error.js +0 -14
  783. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js +0 -16
  784. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isCreateContext.js +0 -53
  785. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isCreateElement.js +0 -33
  786. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isDestructuredFromPragmaImport.js +0 -79
  787. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isFirstLetterCapitalized.js +0 -16
  788. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/jsx.js +0 -196
  789. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/lifecycleMethods.js +0 -30
  790. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/linkComponents.js +0 -49
  791. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/log.js +0 -14
  792. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/makeNoMethodSetStateRule.js +0 -119
  793. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/message.js +0 -8
  794. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/pragma.js +0 -72
  795. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propTypes.js +0 -1248
  796. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propTypesSort.js +0 -211
  797. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propWrapper.js +0 -61
  798. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/props.js +0 -103
  799. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/report.js +0 -12
  800. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/usedPropTypes.js +0 -569
  801. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/variable.js +0 -94
  802. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/version.js +0 -161
  803. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint +0 -17
  804. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint.CMD +0 -12
  805. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint.ps1 +0 -41
  806. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve +0 -17
  807. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve.CMD +0 -12
  808. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve.ps1 +0 -41
  809. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver +0 -17
  810. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver.CMD +0 -12
  811. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver.ps1 +0 -41
  812. package/template/lib/react/node_modules/eslint-plugin-react/package.json +0 -106
  813. package/template/lib/react/node_modules/eslint-plugin-react-hooks/LICENSE +0 -21
  814. package/template/lib/react/node_modules/eslint-plugin-react-hooks/README.md +0 -75
  815. package/template/lib/react/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js +0 -2458
  816. package/template/lib/react/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.production.min.js +0 -63
  817. package/template/lib/react/node_modules/eslint-plugin-react-hooks/index.js +0 -9
  818. package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint +0 -17
  819. package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint.CMD +0 -12
  820. package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint.ps1 +0 -41
  821. package/template/lib/react/node_modules/eslint-plugin-react-hooks/package.json +0 -39
  822. package/template/lib/react/node_modules/prettier/LICENSE +0 -4857
  823. package/template/lib/react/node_modules/prettier/README.md +0 -109
  824. package/template/lib/react/node_modules/prettier/bin/prettier.cjs +0 -68
  825. package/template/lib/react/node_modules/prettier/doc.d.ts +0 -243
  826. package/template/lib/react/node_modules/prettier/doc.js +0 -1328
  827. package/template/lib/react/node_modules/prettier/doc.mjs +0 -1300
  828. package/template/lib/react/node_modules/prettier/index.cjs +0 -648
  829. package/template/lib/react/node_modules/prettier/index.d.ts +0 -940
  830. package/template/lib/react/node_modules/prettier/index.mjs +0 -24255
  831. package/template/lib/react/node_modules/prettier/internal/cli.mjs +0 -7089
  832. package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier +0 -17
  833. package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier.CMD +0 -12
  834. package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier.ps1 +0 -41
  835. package/template/lib/react/node_modules/prettier/package.json +0 -198
  836. package/template/lib/react/node_modules/prettier/plugins/acorn.d.ts +0 -6
  837. package/template/lib/react/node_modules/prettier/plugins/acorn.js +0 -13
  838. package/template/lib/react/node_modules/prettier/plugins/acorn.mjs +0 -13
  839. package/template/lib/react/node_modules/prettier/plugins/angular.d.ts +0 -8
  840. package/template/lib/react/node_modules/prettier/plugins/angular.js +0 -1
  841. package/template/lib/react/node_modules/prettier/plugins/angular.mjs +0 -1
  842. package/template/lib/react/node_modules/prettier/plugins/babel.d.ts +0 -18
  843. package/template/lib/react/node_modules/prettier/plugins/babel.js +0 -16
  844. package/template/lib/react/node_modules/prettier/plugins/babel.mjs +0 -16
  845. package/template/lib/react/node_modules/prettier/plugins/estree.d.ts +0 -1
  846. package/template/lib/react/node_modules/prettier/plugins/estree.js +0 -36
  847. package/template/lib/react/node_modules/prettier/plugins/estree.mjs +0 -36
  848. package/template/lib/react/node_modules/prettier/plugins/flow.d.ts +0 -5
  849. package/template/lib/react/node_modules/prettier/plugins/flow.js +0 -21
  850. package/template/lib/react/node_modules/prettier/plugins/flow.mjs +0 -21
  851. package/template/lib/react/node_modules/prettier/plugins/glimmer.d.ts +0 -5
  852. package/template/lib/react/node_modules/prettier/plugins/glimmer.js +0 -30
  853. package/template/lib/react/node_modules/prettier/plugins/glimmer.mjs +0 -30
  854. package/template/lib/react/node_modules/prettier/plugins/graphql.d.ts +0 -5
  855. package/template/lib/react/node_modules/prettier/plugins/graphql.js +0 -29
  856. package/template/lib/react/node_modules/prettier/plugins/graphql.mjs +0 -29
  857. package/template/lib/react/node_modules/prettier/plugins/html.d.ts +0 -8
  858. package/template/lib/react/node_modules/prettier/plugins/html.js +0 -19
  859. package/template/lib/react/node_modules/prettier/plugins/html.mjs +0 -19
  860. package/template/lib/react/node_modules/prettier/plugins/markdown.d.ts +0 -7
  861. package/template/lib/react/node_modules/prettier/plugins/markdown.js +0 -59
  862. package/template/lib/react/node_modules/prettier/plugins/markdown.mjs +0 -59
  863. package/template/lib/react/node_modules/prettier/plugins/meriyah.d.ts +0 -5
  864. package/template/lib/react/node_modules/prettier/plugins/meriyah.js +0 -5
  865. package/template/lib/react/node_modules/prettier/plugins/meriyah.mjs +0 -5
  866. package/template/lib/react/node_modules/prettier/plugins/postcss.d.ts +0 -7
  867. package/template/lib/react/node_modules/prettier/plugins/postcss.js +0 -49
  868. package/template/lib/react/node_modules/prettier/plugins/postcss.mjs +0 -49
  869. package/template/lib/react/node_modules/prettier/plugins/typescript.d.ts +0 -5
  870. package/template/lib/react/node_modules/prettier/plugins/typescript.js +0 -25
  871. package/template/lib/react/node_modules/prettier/plugins/typescript.mjs +0 -25
  872. package/template/lib/react/node_modules/prettier/plugins/yaml.d.ts +0 -5
  873. package/template/lib/react/node_modules/prettier/plugins/yaml.js +0 -161
  874. package/template/lib/react/node_modules/prettier/plugins/yaml.mjs +0 -161
  875. package/template/lib/react/node_modules/prettier/standalone.d.ts +0 -33
  876. package/template/lib/react/node_modules/prettier/standalone.js +0 -34
  877. package/template/lib/react/node_modules/prettier/standalone.mjs +0 -34
  878. package/template/lib/react/node_modules/prop-types/LICENSE +0 -21
  879. package/template/lib/react/node_modules/prop-types/README.md +0 -302
  880. package/template/lib/react/node_modules/prop-types/checkPropTypes.js +0 -103
  881. package/template/lib/react/node_modules/prop-types/factory.js +0 -19
  882. package/template/lib/react/node_modules/prop-types/factoryWithThrowingShims.js +0 -65
  883. package/template/lib/react/node_modules/prop-types/factoryWithTypeCheckers.js +0 -610
  884. package/template/lib/react/node_modules/prop-types/index.js +0 -19
  885. package/template/lib/react/node_modules/prop-types/lib/ReactPropTypesSecret.js +0 -12
  886. package/template/lib/react/node_modules/prop-types/lib/has.js +0 -1
  887. package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify +0 -17
  888. package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify.CMD +0 -12
  889. package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify.ps1 +0 -41
  890. package/template/lib/react/node_modules/prop-types/package.json +0 -60
  891. package/template/lib/react/node_modules/prop-types/prop-types.js +0 -1315
  892. package/template/lib/react/node_modules/prop-types/prop-types.min.js +0 -1
  893. package/template/lib/react/node_modules/react/LICENSE +0 -21
  894. package/template/lib/react/node_modules/react/README.md +0 -37
  895. package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.development.js +0 -1296
  896. package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +0 -10
  897. package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +0 -10
  898. package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.development.js +0 -1314
  899. package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.production.min.js +0 -11
  900. package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +0 -11
  901. package/template/lib/react/node_modules/react/cjs/react.development.js +0 -2739
  902. package/template/lib/react/node_modules/react/cjs/react.production.min.js +0 -26
  903. package/template/lib/react/node_modules/react/cjs/react.shared-subset.development.js +0 -20
  904. package/template/lib/react/node_modules/react/cjs/react.shared-subset.production.min.js +0 -10
  905. package/template/lib/react/node_modules/react/index.js +0 -7
  906. package/template/lib/react/node_modules/react/jsx-dev-runtime.js +0 -7
  907. package/template/lib/react/node_modules/react/jsx-runtime.js +0 -7
  908. package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify +0 -17
  909. package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify.CMD +0 -12
  910. package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify.ps1 +0 -41
  911. package/template/lib/react/node_modules/react/package.json +0 -47
  912. package/template/lib/react/node_modules/react/react.shared-subset.js +0 -7
  913. package/template/lib/react/node_modules/react/umd/react.development.js +0 -3342
  914. package/template/lib/react/node_modules/react/umd/react.production.min.js +0 -31
  915. package/template/lib/react/node_modules/react/umd/react.profiling.min.js +0 -31
  916. package/template/lib/react/node_modules/react-dom/LICENSE +0 -21
  917. package/template/lib/react/node_modules/react-dom/README.md +0 -60
  918. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +0 -7018
  919. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +0 -93
  920. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +0 -7078
  921. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +0 -101
  922. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.browser.development.js +0 -7003
  923. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +0 -96
  924. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.node.development.js +0 -7059
  925. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +0 -102
  926. package/template/lib/react/node_modules/react-dom/cjs/react-dom-test-utils.development.js +0 -1741
  927. package/template/lib/react/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +0 -40
  928. package/template/lib/react/node_modules/react-dom/cjs/react-dom.development.js +0 -29868
  929. package/template/lib/react/node_modules/react-dom/cjs/react-dom.production.min.js +0 -323
  930. package/template/lib/react/node_modules/react-dom/cjs/react-dom.profiling.min.js +0 -367
  931. package/template/lib/react/node_modules/react-dom/client.js +0 -25
  932. package/template/lib/react/node_modules/react-dom/index.js +0 -38
  933. package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify +0 -17
  934. package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify.CMD +0 -12
  935. package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify.ps1 +0 -41
  936. package/template/lib/react/node_modules/react-dom/package.json +0 -62
  937. package/template/lib/react/node_modules/react-dom/profiling.js +0 -38
  938. package/template/lib/react/node_modules/react-dom/server.browser.js +0 -17
  939. package/template/lib/react/node_modules/react-dom/server.js +0 -3
  940. package/template/lib/react/node_modules/react-dom/server.node.js +0 -17
  941. package/template/lib/react/node_modules/react-dom/test-utils.js +0 -7
  942. package/template/lib/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +0 -7015
  943. package/template/lib/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +0 -75
  944. package/template/lib/react/node_modules/react-dom/umd/react-dom-server.browser.development.js +0 -7000
  945. package/template/lib/react/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +0 -76
  946. package/template/lib/react/node_modules/react-dom/umd/react-dom-test-utils.development.js +0 -1737
  947. package/template/lib/react/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +0 -33
  948. package/template/lib/react/node_modules/react-dom/umd/react-dom.development.js +0 -29869
  949. package/template/lib/react/node_modules/react-dom/umd/react-dom.production.min.js +0 -267
  950. package/template/lib/react/node_modules/react-dom/umd/react-dom.profiling.min.js +0 -285
  951. package/template/lib/react/node_modules/stylelint-config-standard-scss/LICENSE +0 -21
  952. package/template/lib/react/node_modules/stylelint-config-standard-scss/README.md +0 -50
  953. package/template/lib/react/node_modules/stylelint-config-standard-scss/index.js +0 -67
  954. package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint +0 -17
  955. package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.CMD +0 -12
  956. package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.ps1 +0 -41
  957. package/template/lib/react/node_modules/stylelint-config-standard-scss/package.json +0 -58
  958. package/template/lib/ts/node_modules/.bin/acorn +0 -17
  959. package/template/lib/ts/node_modules/.bin/acorn.CMD +0 -12
  960. package/template/lib/ts/node_modules/.bin/acorn.ps1 +0 -41
  961. package/template/lib/ts/node_modules/.bin/eslint +0 -17
  962. package/template/lib/ts/node_modules/.bin/eslint.CMD +0 -12
  963. package/template/lib/ts/node_modules/.bin/eslint.ps1 +0 -41
  964. package/template/lib/ts/node_modules/.bin/prettier +0 -17
  965. package/template/lib/ts/node_modules/.bin/prettier.CMD +0 -12
  966. package/template/lib/ts/node_modules/.bin/prettier.ps1 +0 -41
  967. package/template/lib/ts/node_modules/.bin/stylelint +0 -17
  968. package/template/lib/ts/node_modules/.bin/stylelint.CMD +0 -12
  969. package/template/lib/ts/node_modules/.bin/stylelint.ps1 +0 -41
  970. package/template/lib/ts/node_modules/.bin/tsc +0 -17
  971. package/template/lib/ts/node_modules/.bin/tsc.CMD +0 -12
  972. package/template/lib/ts/node_modules/.bin/tsc.ps1 +0 -41
  973. package/template/lib/ts/node_modules/.bin/tsserver +0 -17
  974. package/template/lib/ts/node_modules/.bin/tsserver.CMD +0 -12
  975. package/template/lib/ts/node_modules/.bin/tsserver.ps1 +0 -41
  976. package/template/lib/ts/node_modules/.bin/vitest +0 -17
  977. package/template/lib/ts/node_modules/.bin/vitest.CMD +0 -12
  978. package/template/lib/ts/node_modules/.bin/vitest.ps1 +0 -41
  979. package/template/lib/ts/node_modules/eslint/LICENSE +0 -19
  980. package/template/lib/ts/node_modules/eslint/README.md +0 -304
  981. package/template/lib/ts/node_modules/eslint/bin/eslint.js +0 -173
  982. package/template/lib/ts/node_modules/eslint/conf/config-schema.js +0 -93
  983. package/template/lib/ts/node_modules/eslint/conf/default-cli-options.js +0 -32
  984. package/template/lib/ts/node_modules/eslint/conf/globals.js +0 -154
  985. package/template/lib/ts/node_modules/eslint/conf/replacements.json +0 -22
  986. package/template/lib/ts/node_modules/eslint/conf/rule-type-list.json +0 -28
  987. package/template/lib/ts/node_modules/eslint/lib/api.js +0 -26
  988. package/template/lib/ts/node_modules/eslint/lib/cli-engine/cli-engine.js +0 -1078
  989. package/template/lib/ts/node_modules/eslint/lib/cli-engine/file-enumerator.js +0 -547
  990. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +0 -60
  991. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/compact.js +0 -60
  992. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +0 -46
  993. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/html.js +0 -351
  994. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +0 -41
  995. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +0 -16
  996. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/json.js +0 -13
  997. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/junit.js +0 -82
  998. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/stylish.js +0 -101
  999. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/tap.js +0 -95
  1000. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/unix.js +0 -58
  1001. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +0 -63
  1002. package/template/lib/ts/node_modules/eslint/lib/cli-engine/hash.js +0 -35
  1003. package/template/lib/ts/node_modules/eslint/lib/cli-engine/index.js +0 -7
  1004. package/template/lib/ts/node_modules/eslint/lib/cli-engine/lint-result-cache.js +0 -203
  1005. package/template/lib/ts/node_modules/eslint/lib/cli-engine/load-rules.js +0 -46
  1006. package/template/lib/ts/node_modules/eslint/lib/cli-engine/xml-escape.js +0 -34
  1007. package/template/lib/ts/node_modules/eslint/lib/cli.js +0 -471
  1008. package/template/lib/ts/node_modules/eslint/lib/config/default-config.js +0 -67
  1009. package/template/lib/ts/node_modules/eslint/lib/config/flat-config-array.js +0 -274
  1010. package/template/lib/ts/node_modules/eslint/lib/config/flat-config-helpers.js +0 -111
  1011. package/template/lib/ts/node_modules/eslint/lib/config/flat-config-schema.js +0 -583
  1012. package/template/lib/ts/node_modules/eslint/lib/config/rule-validator.js +0 -158
  1013. package/template/lib/ts/node_modules/eslint/lib/eslint/eslint-helpers.js +0 -902
  1014. package/template/lib/ts/node_modules/eslint/lib/eslint/eslint.js +0 -700
  1015. package/template/lib/ts/node_modules/eslint/lib/eslint/flat-eslint.js +0 -1142
  1016. package/template/lib/ts/node_modules/eslint/lib/eslint/index.js +0 -9
  1017. package/template/lib/ts/node_modules/eslint/lib/linter/apply-disable-directives.js +0 -465
  1018. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +0 -852
  1019. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +0 -263
  1020. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +0 -2348
  1021. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +0 -342
  1022. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +0 -203
  1023. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +0 -349
  1024. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +0 -45
  1025. package/template/lib/ts/node_modules/eslint/lib/linter/config-comment-parser.js +0 -185
  1026. package/template/lib/ts/node_modules/eslint/lib/linter/index.js +0 -13
  1027. package/template/lib/ts/node_modules/eslint/lib/linter/interpolate.js +0 -28
  1028. package/template/lib/ts/node_modules/eslint/lib/linter/linter.js +0 -2119
  1029. package/template/lib/ts/node_modules/eslint/lib/linter/node-event-generator.js +0 -354
  1030. package/template/lib/ts/node_modules/eslint/lib/linter/report-translator.js +0 -369
  1031. package/template/lib/ts/node_modules/eslint/lib/linter/rule-fixer.js +0 -140
  1032. package/template/lib/ts/node_modules/eslint/lib/linter/rules.js +0 -80
  1033. package/template/lib/ts/node_modules/eslint/lib/linter/safe-emitter.js +0 -52
  1034. package/template/lib/ts/node_modules/eslint/lib/linter/source-code-fixer.js +0 -152
  1035. package/template/lib/ts/node_modules/eslint/lib/linter/timing.js +0 -161
  1036. package/template/lib/ts/node_modules/eslint/lib/options.js +0 -398
  1037. package/template/lib/ts/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +0 -1122
  1038. package/template/lib/ts/node_modules/eslint/lib/rule-tester/index.js +0 -5
  1039. package/template/lib/ts/node_modules/eslint/lib/rule-tester/rule-tester.js +0 -1206
  1040. package/template/lib/ts/node_modules/eslint/lib/rules/accessor-pairs.js +0 -346
  1041. package/template/lib/ts/node_modules/eslint/lib/rules/array-bracket-newline.js +0 -261
  1042. package/template/lib/ts/node_modules/eslint/lib/rules/array-bracket-spacing.js +0 -244
  1043. package/template/lib/ts/node_modules/eslint/lib/rules/array-callback-return.js +0 -446
  1044. package/template/lib/ts/node_modules/eslint/lib/rules/array-element-newline.js +0 -311
  1045. package/template/lib/ts/node_modules/eslint/lib/rules/arrow-body-style.js +0 -296
  1046. package/template/lib/ts/node_modules/eslint/lib/rules/arrow-parens.js +0 -186
  1047. package/template/lib/ts/node_modules/eslint/lib/rules/arrow-spacing.js +0 -164
  1048. package/template/lib/ts/node_modules/eslint/lib/rules/block-scoped-var.js +0 -135
  1049. package/template/lib/ts/node_modules/eslint/lib/rules/block-spacing.js +0 -174
  1050. package/template/lib/ts/node_modules/eslint/lib/rules/brace-style.js +0 -197
  1051. package/template/lib/ts/node_modules/eslint/lib/rules/callback-return.js +0 -187
  1052. package/template/lib/ts/node_modules/eslint/lib/rules/camelcase.js +0 -399
  1053. package/template/lib/ts/node_modules/eslint/lib/rules/capitalized-comments.js +0 -300
  1054. package/template/lib/ts/node_modules/eslint/lib/rules/class-methods-use-this.js +0 -187
  1055. package/template/lib/ts/node_modules/eslint/lib/rules/comma-dangle.js +0 -373
  1056. package/template/lib/ts/node_modules/eslint/lib/rules/comma-spacing.js +0 -192
  1057. package/template/lib/ts/node_modules/eslint/lib/rules/comma-style.js +0 -314
  1058. package/template/lib/ts/node_modules/eslint/lib/rules/complexity.js +0 -165
  1059. package/template/lib/ts/node_modules/eslint/lib/rules/computed-property-spacing.js +0 -208
  1060. package/template/lib/ts/node_modules/eslint/lib/rules/consistent-return.js +0 -210
  1061. package/template/lib/ts/node_modules/eslint/lib/rules/consistent-this.js +0 -153
  1062. package/template/lib/ts/node_modules/eslint/lib/rules/constructor-super.js +0 -446
  1063. package/template/lib/ts/node_modules/eslint/lib/rules/curly.js +0 -486
  1064. package/template/lib/ts/node_modules/eslint/lib/rules/default-case-last.js +0 -44
  1065. package/template/lib/ts/node_modules/eslint/lib/rules/default-case.js +0 -97
  1066. package/template/lib/ts/node_modules/eslint/lib/rules/default-param-last.js +0 -62
  1067. package/template/lib/ts/node_modules/eslint/lib/rules/dot-location.js +0 -108
  1068. package/template/lib/ts/node_modules/eslint/lib/rules/dot-notation.js +0 -176
  1069. package/template/lib/ts/node_modules/eslint/lib/rules/eol-last.js +0 -115
  1070. package/template/lib/ts/node_modules/eslint/lib/rules/eqeqeq.js +0 -174
  1071. package/template/lib/ts/node_modules/eslint/lib/rules/for-direction.js +0 -140
  1072. package/template/lib/ts/node_modules/eslint/lib/rules/func-call-spacing.js +0 -233
  1073. package/template/lib/ts/node_modules/eslint/lib/rules/func-name-matching.js +0 -253
  1074. package/template/lib/ts/node_modules/eslint/lib/rules/func-names.js +0 -191
  1075. package/template/lib/ts/node_modules/eslint/lib/rules/func-style.js +0 -98
  1076. package/template/lib/ts/node_modules/eslint/lib/rules/function-call-argument-newline.js +0 -125
  1077. package/template/lib/ts/node_modules/eslint/lib/rules/function-paren-newline.js +0 -292
  1078. package/template/lib/ts/node_modules/eslint/lib/rules/generator-star-spacing.js +0 -209
  1079. package/template/lib/ts/node_modules/eslint/lib/rules/getter-return.js +0 -204
  1080. package/template/lib/ts/node_modules/eslint/lib/rules/global-require.js +0 -90
  1081. package/template/lib/ts/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +0 -215
  1082. package/template/lib/ts/node_modules/eslint/lib/rules/guard-for-in.js +0 -76
  1083. package/template/lib/ts/node_modules/eslint/lib/rules/handle-callback-err.js +0 -101
  1084. package/template/lib/ts/node_modules/eslint/lib/rules/id-blacklist.js +0 -246
  1085. package/template/lib/ts/node_modules/eslint/lib/rules/id-denylist.js +0 -228
  1086. package/template/lib/ts/node_modules/eslint/lib/rules/id-length.js +0 -177
  1087. package/template/lib/ts/node_modules/eslint/lib/rules/id-match.js +0 -299
  1088. package/template/lib/ts/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +0 -84
  1089. package/template/lib/ts/node_modules/eslint/lib/rules/indent-legacy.js +0 -1126
  1090. package/template/lib/ts/node_modules/eslint/lib/rules/indent.js +0 -1803
  1091. package/template/lib/ts/node_modules/eslint/lib/rules/index.js +0 -306
  1092. package/template/lib/ts/node_modules/eslint/lib/rules/init-declarations.js +0 -139
  1093. package/template/lib/ts/node_modules/eslint/lib/rules/jsx-quotes.js +0 -98
  1094. package/template/lib/ts/node_modules/eslint/lib/rules/key-spacing.js +0 -687
  1095. package/template/lib/ts/node_modules/eslint/lib/rules/keyword-spacing.js +0 -640
  1096. package/template/lib/ts/node_modules/eslint/lib/rules/line-comment-position.js +0 -122
  1097. package/template/lib/ts/node_modules/eslint/lib/rules/linebreak-style.js +0 -108
  1098. package/template/lib/ts/node_modules/eslint/lib/rules/lines-around-comment.js +0 -471
  1099. package/template/lib/ts/node_modules/eslint/lib/rules/lines-around-directive.js +0 -201
  1100. package/template/lib/ts/node_modules/eslint/lib/rules/lines-between-class-members.js +0 -269
  1101. package/template/lib/ts/node_modules/eslint/lib/rules/logical-assignment-operators.js +0 -504
  1102. package/template/lib/ts/node_modules/eslint/lib/rules/max-classes-per-file.js +0 -89
  1103. package/template/lib/ts/node_modules/eslint/lib/rules/max-depth.js +0 -156
  1104. package/template/lib/ts/node_modules/eslint/lib/rules/max-len.js +0 -440
  1105. package/template/lib/ts/node_modules/eslint/lib/rules/max-lines-per-function.js +0 -213
  1106. package/template/lib/ts/node_modules/eslint/lib/rules/max-lines.js +0 -193
  1107. package/template/lib/ts/node_modules/eslint/lib/rules/max-nested-callbacks.js +0 -117
  1108. package/template/lib/ts/node_modules/eslint/lib/rules/max-params.js +0 -102
  1109. package/template/lib/ts/node_modules/eslint/lib/rules/max-statements-per-line.js +0 -199
  1110. package/template/lib/ts/node_modules/eslint/lib/rules/max-statements.js +0 -184
  1111. package/template/lib/ts/node_modules/eslint/lib/rules/multiline-comment-style.js +0 -474
  1112. package/template/lib/ts/node_modules/eslint/lib/rules/multiline-ternary.js +0 -174
  1113. package/template/lib/ts/node_modules/eslint/lib/rules/new-cap.js +0 -276
  1114. package/template/lib/ts/node_modules/eslint/lib/rules/new-parens.js +0 -93
  1115. package/template/lib/ts/node_modules/eslint/lib/rules/newline-after-var.js +0 -253
  1116. package/template/lib/ts/node_modules/eslint/lib/rules/newline-before-return.js +0 -217
  1117. package/template/lib/ts/node_modules/eslint/lib/rules/newline-per-chained-call.js +0 -126
  1118. package/template/lib/ts/node_modules/eslint/lib/rules/no-alert.js +0 -138
  1119. package/template/lib/ts/node_modules/eslint/lib/rules/no-array-constructor.js +0 -133
  1120. package/template/lib/ts/node_modules/eslint/lib/rules/no-async-promise-executor.js +0 -39
  1121. package/template/lib/ts/node_modules/eslint/lib/rules/no-await-in-loop.js +0 -106
  1122. package/template/lib/ts/node_modules/eslint/lib/rules/no-bitwise.js +0 -119
  1123. package/template/lib/ts/node_modules/eslint/lib/rules/no-buffer-constructor.js +0 -50
  1124. package/template/lib/ts/node_modules/eslint/lib/rules/no-caller.js +0 -46
  1125. package/template/lib/ts/node_modules/eslint/lib/rules/no-case-declarations.js +0 -64
  1126. package/template/lib/ts/node_modules/eslint/lib/rules/no-catch-shadow.js +0 -82
  1127. package/template/lib/ts/node_modules/eslint/lib/rules/no-class-assign.js +0 -63
  1128. package/template/lib/ts/node_modules/eslint/lib/rules/no-compare-neg-zero.js +0 -60
  1129. package/template/lib/ts/node_modules/eslint/lib/rules/no-cond-assign.js +0 -159
  1130. package/template/lib/ts/node_modules/eslint/lib/rules/no-confusing-arrow.js +0 -92
  1131. package/template/lib/ts/node_modules/eslint/lib/rules/no-console.js +0 -207
  1132. package/template/lib/ts/node_modules/eslint/lib/rules/no-const-assign.js +0 -56
  1133. package/template/lib/ts/node_modules/eslint/lib/rules/no-constant-binary-expression.js +0 -509
  1134. package/template/lib/ts/node_modules/eslint/lib/rules/no-constant-condition.js +0 -150
  1135. package/template/lib/ts/node_modules/eslint/lib/rules/no-constructor-return.js +0 -62
  1136. package/template/lib/ts/node_modules/eslint/lib/rules/no-continue.js +0 -39
  1137. package/template/lib/ts/node_modules/eslint/lib/rules/no-control-regex.js +0 -138
  1138. package/template/lib/ts/node_modules/eslint/lib/rules/no-debugger.js +0 -43
  1139. package/template/lib/ts/node_modules/eslint/lib/rules/no-delete-var.js +0 -42
  1140. package/template/lib/ts/node_modules/eslint/lib/rules/no-div-regex.js +0 -53
  1141. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-args.js +0 -82
  1142. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-class-members.js +0 -104
  1143. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-else-if.js +0 -122
  1144. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-keys.js +0 -142
  1145. package/template/lib/ts/node_modules/eslint/lib/rules/no-duplicate-case.js +0 -71
  1146. package/template/lib/ts/node_modules/eslint/lib/rules/no-duplicate-imports.js +0 -290
  1147. package/template/lib/ts/node_modules/eslint/lib/rules/no-else-return.js +0 -405
  1148. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-character-class.js +0 -76
  1149. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-function.js +0 -167
  1150. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-pattern.js +0 -78
  1151. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-static-block.js +0 -47
  1152. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty.js +0 -103
  1153. package/template/lib/ts/node_modules/eslint/lib/rules/no-eq-null.js +0 -46
  1154. package/template/lib/ts/node_modules/eslint/lib/rules/no-eval.js +0 -286
  1155. package/template/lib/ts/node_modules/eslint/lib/rules/no-ex-assign.js +0 -54
  1156. package/template/lib/ts/node_modules/eslint/lib/rules/no-extend-native.js +0 -179
  1157. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-bind.js +0 -213
  1158. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +0 -317
  1159. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-label.js +0 -149
  1160. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-parens.js +0 -1322
  1161. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-semi.js +0 -147
  1162. package/template/lib/ts/node_modules/eslint/lib/rules/no-fallthrough.js +0 -196
  1163. package/template/lib/ts/node_modules/eslint/lib/rules/no-floating-decimal.js +0 -73
  1164. package/template/lib/ts/node_modules/eslint/lib/rules/no-func-assign.js +0 -78
  1165. package/template/lib/ts/node_modules/eslint/lib/rules/no-global-assign.js +0 -95
  1166. package/template/lib/ts/node_modules/eslint/lib/rules/no-implicit-coercion.js +0 -380
  1167. package/template/lib/ts/node_modules/eslint/lib/rules/no-implicit-globals.js +0 -146
  1168. package/template/lib/ts/node_modules/eslint/lib/rules/no-implied-eval.js +0 -132
  1169. package/template/lib/ts/node_modules/eslint/lib/rules/no-import-assign.js +0 -241
  1170. package/template/lib/ts/node_modules/eslint/lib/rules/no-inline-comments.js +0 -110
  1171. package/template/lib/ts/node_modules/eslint/lib/rules/no-inner-declarations.js +0 -110
  1172. package/template/lib/ts/node_modules/eslint/lib/rules/no-invalid-regexp.js +0 -194
  1173. package/template/lib/ts/node_modules/eslint/lib/rules/no-invalid-this.js +0 -150
  1174. package/template/lib/ts/node_modules/eslint/lib/rules/no-irregular-whitespace.js +0 -276
  1175. package/template/lib/ts/node_modules/eslint/lib/rules/no-iterator.js +0 -52
  1176. package/template/lib/ts/node_modules/eslint/lib/rules/no-label-var.js +0 -80
  1177. package/template/lib/ts/node_modules/eslint/lib/rules/no-labels.js +0 -149
  1178. package/template/lib/ts/node_modules/eslint/lib/rules/no-lone-blocks.js +0 -136
  1179. package/template/lib/ts/node_modules/eslint/lib/rules/no-lonely-if.js +0 -88
  1180. package/template/lib/ts/node_modules/eslint/lib/rules/no-loop-func.js +0 -206
  1181. package/template/lib/ts/node_modules/eslint/lib/rules/no-loss-of-precision.js +0 -214
  1182. package/template/lib/ts/node_modules/eslint/lib/rules/no-magic-numbers.js +0 -243
  1183. package/template/lib/ts/node_modules/eslint/lib/rules/no-misleading-character-class.js +0 -300
  1184. package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-operators.js +0 -229
  1185. package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-requires.js +0 -238
  1186. package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +0 -116
  1187. package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-assign.js +0 -67
  1188. package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-spaces.js +0 -141
  1189. package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-str.js +0 -65
  1190. package/template/lib/ts/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +0 -154
  1191. package/template/lib/ts/node_modules/eslint/lib/rules/no-native-reassign.js +0 -98
  1192. package/template/lib/ts/node_modules/eslint/lib/rules/no-negated-condition.js +0 -95
  1193. package/template/lib/ts/node_modules/eslint/lib/rules/no-negated-in-lhs.js +0 -46
  1194. package/template/lib/ts/node_modules/eslint/lib/rules/no-nested-ternary.js +0 -44
  1195. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-func.js +0 -87
  1196. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +0 -66
  1197. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-object.js +0 -67
  1198. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-require.js +0 -50
  1199. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-symbol.js +0 -56
  1200. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-wrappers.js +0 -60
  1201. package/template/lib/ts/node_modules/eslint/lib/rules/no-new.js +0 -43
  1202. package/template/lib/ts/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +0 -148
  1203. package/template/lib/ts/node_modules/eslint/lib/rules/no-obj-calls.js +0 -86
  1204. package/template/lib/ts/node_modules/eslint/lib/rules/no-object-constructor.js +0 -117
  1205. package/template/lib/ts/node_modules/eslint/lib/rules/no-octal-escape.js +0 -56
  1206. package/template/lib/ts/node_modules/eslint/lib/rules/no-octal.js +0 -45
  1207. package/template/lib/ts/node_modules/eslint/lib/rules/no-param-reassign.js +0 -230
  1208. package/template/lib/ts/node_modules/eslint/lib/rules/no-path-concat.js +0 -64
  1209. package/template/lib/ts/node_modules/eslint/lib/rules/no-plusplus.js +0 -105
  1210. package/template/lib/ts/node_modules/eslint/lib/rules/no-process-env.js +0 -51
  1211. package/template/lib/ts/node_modules/eslint/lib/rules/no-process-exit.js +0 -47
  1212. package/template/lib/ts/node_modules/eslint/lib/rules/no-promise-executor-return.js +0 -263
  1213. package/template/lib/ts/node_modules/eslint/lib/rules/no-proto.js +0 -48
  1214. package/template/lib/ts/node_modules/eslint/lib/rules/no-prototype-builtins.js +0 -159
  1215. package/template/lib/ts/node_modules/eslint/lib/rules/no-redeclare.js +0 -174
  1216. package/template/lib/ts/node_modules/eslint/lib/rules/no-regex-spaces.js +0 -197
  1217. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-exports.js +0 -193
  1218. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-globals.js +0 -124
  1219. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-imports.js +0 -410
  1220. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-modules.js +0 -213
  1221. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-properties.js +0 -168
  1222. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-syntax.js +0 -70
  1223. package/template/lib/ts/node_modules/eslint/lib/rules/no-return-assign.js +0 -80
  1224. package/template/lib/ts/node_modules/eslint/lib/rules/no-return-await.js +0 -135
  1225. package/template/lib/ts/node_modules/eslint/lib/rules/no-script-url.js +0 -61
  1226. package/template/lib/ts/node_modules/eslint/lib/rules/no-self-assign.js +0 -183
  1227. package/template/lib/ts/node_modules/eslint/lib/rules/no-self-compare.js +0 -60
  1228. package/template/lib/ts/node_modules/eslint/lib/rules/no-sequences.js +0 -138
  1229. package/template/lib/ts/node_modules/eslint/lib/rules/no-setter-return.js +0 -226
  1230. package/template/lib/ts/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +0 -65
  1231. package/template/lib/ts/node_modules/eslint/lib/rules/no-shadow.js +0 -336
  1232. package/template/lib/ts/node_modules/eslint/lib/rules/no-spaced-func.js +0 -83
  1233. package/template/lib/ts/node_modules/eslint/lib/rules/no-sparse-arrays.js +0 -50
  1234. package/template/lib/ts/node_modules/eslint/lib/rules/no-sync.js +0 -64
  1235. package/template/lib/ts/node_modules/eslint/lib/rules/no-tabs.js +0 -81
  1236. package/template/lib/ts/node_modules/eslint/lib/rules/no-template-curly-in-string.js +0 -44
  1237. package/template/lib/ts/node_modules/eslint/lib/rules/no-ternary.js +0 -41
  1238. package/template/lib/ts/node_modules/eslint/lib/rules/no-this-before-super.js +0 -331
  1239. package/template/lib/ts/node_modules/eslint/lib/rules/no-throw-literal.js +0 -51
  1240. package/template/lib/ts/node_modules/eslint/lib/rules/no-trailing-spaces.js +0 -193
  1241. package/template/lib/ts/node_modules/eslint/lib/rules/no-undef-init.js +0 -75
  1242. package/template/lib/ts/node_modules/eslint/lib/rules/no-undef.js +0 -79
  1243. package/template/lib/ts/node_modules/eslint/lib/rules/no-undefined.js +0 -86
  1244. package/template/lib/ts/node_modules/eslint/lib/rules/no-underscore-dangle.js +0 -335
  1245. package/template/lib/ts/node_modules/eslint/lib/rules/no-unexpected-multiline.js +0 -120
  1246. package/template/lib/ts/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +0 -360
  1247. package/template/lib/ts/node_modules/eslint/lib/rules/no-unneeded-ternary.js +0 -166
  1248. package/template/lib/ts/node_modules/eslint/lib/rules/no-unreachable-loop.js +0 -185
  1249. package/template/lib/ts/node_modules/eslint/lib/rules/no-unreachable.js +0 -293
  1250. package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-finally.js +0 -111
  1251. package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-negation.js +0 -128
  1252. package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +0 -205
  1253. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-expressions.js +0 -186
  1254. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-labels.js +0 -143
  1255. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-private-class-members.js +0 -195
  1256. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-vars.js +0 -718
  1257. package/template/lib/ts/node_modules/eslint/lib/rules/no-use-before-define.js +0 -348
  1258. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-backreference.js +0 -194
  1259. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-call.js +0 -90
  1260. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-catch.js +0 -57
  1261. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-computed-key.js +0 -168
  1262. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-concat.js +0 -115
  1263. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-constructor.js +0 -189
  1264. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-escape.js +0 -333
  1265. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-rename.js +0 -172
  1266. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-return.js +0 -364
  1267. package/template/lib/ts/node_modules/eslint/lib/rules/no-var.js +0 -334
  1268. package/template/lib/ts/node_modules/eslint/lib/rules/no-void.js +0 -64
  1269. package/template/lib/ts/node_modules/eslint/lib/rules/no-warning-comments.js +0 -201
  1270. package/template/lib/ts/node_modules/eslint/lib/rules/no-whitespace-before-property.js +0 -116
  1271. package/template/lib/ts/node_modules/eslint/lib/rules/no-with.js +0 -39
  1272. package/template/lib/ts/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +0 -127
  1273. package/template/lib/ts/node_modules/eslint/lib/rules/object-curly-newline.js +0 -324
  1274. package/template/lib/ts/node_modules/eslint/lib/rules/object-curly-spacing.js +0 -311
  1275. package/template/lib/ts/node_modules/eslint/lib/rules/object-property-newline.js +0 -102
  1276. package/template/lib/ts/node_modules/eslint/lib/rules/object-shorthand.js +0 -520
  1277. package/template/lib/ts/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +0 -95
  1278. package/template/lib/ts/node_modules/eslint/lib/rules/one-var.js +0 -567
  1279. package/template/lib/ts/node_modules/eslint/lib/rules/operator-assignment.js +0 -209
  1280. package/template/lib/ts/node_modules/eslint/lib/rules/operator-linebreak.js +0 -253
  1281. package/template/lib/ts/node_modules/eslint/lib/rules/padded-blocks.js +0 -310
  1282. package/template/lib/ts/node_modules/eslint/lib/rules/padding-line-between-statements.js +0 -590
  1283. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-arrow-callback.js +0 -381
  1284. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-const.js +0 -501
  1285. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-destructuring.js +0 -301
  1286. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +0 -191
  1287. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-named-capture-group.js +0 -178
  1288. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-numeric-literals.js +0 -148
  1289. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-object-has-own.js +0 -114
  1290. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-object-spread.js +0 -298
  1291. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +0 -132
  1292. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-reflect.js +0 -127
  1293. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-regex-literals.js +0 -507
  1294. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-rest-params.js +0 -118
  1295. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-spread.js +0 -87
  1296. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-template.js +0 -275
  1297. package/template/lib/ts/node_modules/eslint/lib/rules/quote-props.js +0 -310
  1298. package/template/lib/ts/node_modules/eslint/lib/rules/quotes.js +0 -350
  1299. package/template/lib/ts/node_modules/eslint/lib/rules/radix.js +0 -198
  1300. package/template/lib/ts/node_modules/eslint/lib/rules/require-atomic-updates.js +0 -331
  1301. package/template/lib/ts/node_modules/eslint/lib/rules/require-await.js +0 -113
  1302. package/template/lib/ts/node_modules/eslint/lib/rules/require-jsdoc.js +0 -122
  1303. package/template/lib/ts/node_modules/eslint/lib/rules/require-unicode-regexp.js +0 -129
  1304. package/template/lib/ts/node_modules/eslint/lib/rules/require-yield.js +0 -77
  1305. package/template/lib/ts/node_modules/eslint/lib/rules/rest-spread-spacing.js +0 -123
  1306. package/template/lib/ts/node_modules/eslint/lib/rules/semi-spacing.js +0 -248
  1307. package/template/lib/ts/node_modules/eslint/lib/rules/semi-style.js +0 -158
  1308. package/template/lib/ts/node_modules/eslint/lib/rules/semi.js +0 -438
  1309. package/template/lib/ts/node_modules/eslint/lib/rules/sort-imports.js +0 -241
  1310. package/template/lib/ts/node_modules/eslint/lib/rules/sort-keys.js +0 -230
  1311. package/template/lib/ts/node_modules/eslint/lib/rules/sort-vars.js +0 -104
  1312. package/template/lib/ts/node_modules/eslint/lib/rules/space-before-blocks.js +0 -204
  1313. package/template/lib/ts/node_modules/eslint/lib/rules/space-before-function-paren.js +0 -167
  1314. package/template/lib/ts/node_modules/eslint/lib/rules/space-in-parens.js +0 -285
  1315. package/template/lib/ts/node_modules/eslint/lib/rules/space-infix-ops.js +0 -198
  1316. package/template/lib/ts/node_modules/eslint/lib/rules/space-unary-ops.js +0 -324
  1317. package/template/lib/ts/node_modules/eslint/lib/rules/spaced-comment.js +0 -385
  1318. package/template/lib/ts/node_modules/eslint/lib/rules/strict.js +0 -277
  1319. package/template/lib/ts/node_modules/eslint/lib/rules/switch-colon-spacing.js +0 -132
  1320. package/template/lib/ts/node_modules/eslint/lib/rules/symbol-description.js +0 -73
  1321. package/template/lib/ts/node_modules/eslint/lib/rules/template-curly-spacing.js +0 -144
  1322. package/template/lib/ts/node_modules/eslint/lib/rules/template-tag-spacing.js +0 -93
  1323. package/template/lib/ts/node_modules/eslint/lib/rules/unicode-bom.js +0 -73
  1324. package/template/lib/ts/node_modules/eslint/lib/rules/use-isnan.js +0 -141
  1325. package/template/lib/ts/node_modules/eslint/lib/rules/utils/ast-utils.js +0 -2282
  1326. package/template/lib/ts/node_modules/eslint/lib/rules/utils/fix-tracker.js +0 -114
  1327. package/template/lib/ts/node_modules/eslint/lib/rules/utils/keywords.js +0 -67
  1328. package/template/lib/ts/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +0 -115
  1329. package/template/lib/ts/node_modules/eslint/lib/rules/utils/patterns/letters.js +0 -36
  1330. package/template/lib/ts/node_modules/eslint/lib/rules/utils/regular-expressions.js +0 -42
  1331. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/index.js +0 -11
  1332. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +0 -13
  1333. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +0 -13
  1334. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +0 -13
  1335. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +0 -14
  1336. package/template/lib/ts/node_modules/eslint/lib/rules/valid-jsdoc.js +0 -516
  1337. package/template/lib/ts/node_modules/eslint/lib/rules/valid-typeof.js +0 -127
  1338. package/template/lib/ts/node_modules/eslint/lib/rules/vars-on-top.js +0 -157
  1339. package/template/lib/ts/node_modules/eslint/lib/rules/wrap-iife.js +0 -207
  1340. package/template/lib/ts/node_modules/eslint/lib/rules/wrap-regex.js +0 -61
  1341. package/template/lib/ts/node_modules/eslint/lib/rules/yield-star-spacing.js +0 -130
  1342. package/template/lib/ts/node_modules/eslint/lib/rules/yoda.js +0 -353
  1343. package/template/lib/ts/node_modules/eslint/lib/shared/ajv.js +0 -34
  1344. package/template/lib/ts/node_modules/eslint/lib/shared/ast-utils.js +0 -29
  1345. package/template/lib/ts/node_modules/eslint/lib/shared/config-validator.js +0 -347
  1346. package/template/lib/ts/node_modules/eslint/lib/shared/deprecation-warnings.js +0 -58
  1347. package/template/lib/ts/node_modules/eslint/lib/shared/directives.js +0 -15
  1348. package/template/lib/ts/node_modules/eslint/lib/shared/logging.js +0 -30
  1349. package/template/lib/ts/node_modules/eslint/lib/shared/relative-module-resolver.js +0 -50
  1350. package/template/lib/ts/node_modules/eslint/lib/shared/runtime-info.js +0 -167
  1351. package/template/lib/ts/node_modules/eslint/lib/shared/severity.js +0 -49
  1352. package/template/lib/ts/node_modules/eslint/lib/shared/string-utils.js +0 -60
  1353. package/template/lib/ts/node_modules/eslint/lib/shared/traverser.js +0 -195
  1354. package/template/lib/ts/node_modules/eslint/lib/shared/types.js +0 -216
  1355. package/template/lib/ts/node_modules/eslint/lib/source-code/index.js +0 -5
  1356. package/template/lib/ts/node_modules/eslint/lib/source-code/source-code.js +0 -1055
  1357. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +0 -57
  1358. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +0 -58
  1359. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/cursor.js +0 -76
  1360. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/cursors.js +0 -90
  1361. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +0 -39
  1362. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +0 -43
  1363. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +0 -57
  1364. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +0 -63
  1365. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/index.js +0 -627
  1366. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +0 -40
  1367. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +0 -38
  1368. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +0 -42
  1369. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/utils.js +0 -107
  1370. package/template/lib/ts/node_modules/eslint/lib/unsupported-api.js +0 -30
  1371. package/template/lib/ts/node_modules/eslint/messages/all-files-ignored.js +0 -16
  1372. package/template/lib/ts/node_modules/eslint/messages/eslintrc-incompat.js +0 -98
  1373. package/template/lib/ts/node_modules/eslint/messages/eslintrc-plugins.js +0 -24
  1374. package/template/lib/ts/node_modules/eslint/messages/extend-config-missing.js +0 -13
  1375. package/template/lib/ts/node_modules/eslint/messages/failed-to-read-json.js +0 -11
  1376. package/template/lib/ts/node_modules/eslint/messages/file-not-found.js +0 -10
  1377. package/template/lib/ts/node_modules/eslint/messages/invalid-rule-options.js +0 -17
  1378. package/template/lib/ts/node_modules/eslint/messages/invalid-rule-severity.js +0 -13
  1379. package/template/lib/ts/node_modules/eslint/messages/no-config-found.js +0 -15
  1380. package/template/lib/ts/node_modules/eslint/messages/plugin-conflict.js +0 -22
  1381. package/template/lib/ts/node_modules/eslint/messages/plugin-invalid.js +0 -16
  1382. package/template/lib/ts/node_modules/eslint/messages/plugin-missing.js +0 -19
  1383. package/template/lib/ts/node_modules/eslint/messages/print-config-with-directory-path.js +0 -8
  1384. package/template/lib/ts/node_modules/eslint/messages/shared.js +0 -18
  1385. package/template/lib/ts/node_modules/eslint/messages/whitespace-found.js +0 -11
  1386. package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint +0 -17
  1387. package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint.CMD +0 -12
  1388. package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint.ps1 +0 -41
  1389. package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml +0 -17
  1390. package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml.CMD +0 -12
  1391. package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml.ps1 +0 -41
  1392. package/template/lib/ts/node_modules/eslint/package.json +0 -179
  1393. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/LICENSE +0 -5
  1394. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/README.md +0 -232
  1395. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.cjs +0 -278
  1396. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.d.ts +0 -20
  1397. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.es2020.mjs +0 -251
  1398. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.js +0 -252
  1399. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.js.map +0 -1
  1400. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint +0 -17
  1401. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.CMD +0 -12
  1402. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.ps1 +0 -41
  1403. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/package.json +0 -108
  1404. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/shim.d.ts +0 -4
  1405. package/template/lib/ts/node_modules/eslint-plugin-import/CHANGELOG.md +0 -1925
  1406. package/template/lib/ts/node_modules/eslint-plugin-import/CONTRIBUTING.md +0 -84
  1407. package/template/lib/ts/node_modules/eslint-plugin-import/LICENSE +0 -22
  1408. package/template/lib/ts/node_modules/eslint-plugin-import/README.md +0 -500
  1409. package/template/lib/ts/node_modules/eslint-plugin-import/RELEASE.md +0 -54
  1410. package/template/lib/ts/node_modules/eslint-plugin-import/SECURITY.md +0 -11
  1411. package/template/lib/ts/node_modules/eslint-plugin-import/config/electron.js +0 -8
  1412. package/template/lib/ts/node_modules/eslint-plugin-import/config/errors.js +0 -14
  1413. package/template/lib/ts/node_modules/eslint-plugin-import/config/react-native.js +0 -13
  1414. package/template/lib/ts/node_modules/eslint-plugin-import/config/react.js +0 -18
  1415. package/template/lib/ts/node_modules/eslint-plugin-import/config/recommended.js +0 -28
  1416. package/template/lib/ts/node_modules/eslint-plugin-import/config/stage-0.js +0 -12
  1417. package/template/lib/ts/node_modules/eslint-plugin-import/config/typescript.js +0 -34
  1418. package/template/lib/ts/node_modules/eslint-plugin-import/config/warnings.js +0 -12
  1419. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +0 -91
  1420. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/default.md +0 -72
  1421. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +0 -92
  1422. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/export.md +0 -37
  1423. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/exports-last.md +0 -51
  1424. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/extensions.md +0 -174
  1425. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/first.md +0 -75
  1426. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/group-exports.md +0 -118
  1427. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/imports-first.md +0 -9
  1428. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +0 -70
  1429. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/named.md +0 -102
  1430. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/namespace.md +0 -106
  1431. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +0 -167
  1432. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +0 -54
  1433. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-amd.md +0 -37
  1434. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +0 -83
  1435. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +0 -96
  1436. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +0 -111
  1437. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +0 -65
  1438. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +0 -62
  1439. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +0 -109
  1440. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +0 -25
  1441. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +0 -49
  1442. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +0 -139
  1443. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +0 -81
  1444. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +0 -136
  1445. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +0 -54
  1446. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +0 -52
  1447. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +0 -53
  1448. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +0 -36
  1449. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +0 -79
  1450. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +0 -44
  1451. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +0 -42
  1452. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +0 -70
  1453. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +0 -123
  1454. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +0 -198
  1455. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +0 -32
  1456. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +0 -60
  1457. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +0 -110
  1458. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +0 -125
  1459. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +0 -85
  1460. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +0 -39
  1461. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/order.md +0 -365
  1462. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +0 -185
  1463. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +0 -57
  1464. package/template/lib/ts/node_modules/eslint-plugin-import/lib/ExportMap.js +0 -856
  1465. package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/importType.js +0 -129
  1466. package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/packagePath.js +0 -22
  1467. package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/staticRequire.js +0 -11
  1468. package/template/lib/ts/node_modules/eslint-plugin-import/lib/docsUrl.js +0 -8
  1469. package/template/lib/ts/node_modules/eslint-plugin-import/lib/importDeclaration.js +0 -5
  1470. package/template/lib/ts/node_modules/eslint-plugin-import/lib/index.js +0 -71
  1471. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +0 -221
  1472. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/default.js +0 -40
  1473. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +0 -120
  1474. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/export.js +0 -250
  1475. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/exports-last.js +0 -40
  1476. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/extensions.js +0 -193
  1477. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/first.js +0 -144
  1478. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/group-exports.js +0 -155
  1479. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/imports-first.js +0 -16
  1480. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +0 -60
  1481. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/named.js +0 -143
  1482. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/namespace.js +0 -218
  1483. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +0 -237
  1484. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +0 -40
  1485. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-amd.js +0 -47
  1486. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +0 -103
  1487. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +0 -141
  1488. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +0 -158
  1489. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +0 -43
  1490. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +0 -138
  1491. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +0 -354
  1492. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +0 -77
  1493. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +0 -105
  1494. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +0 -301
  1495. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +0 -85
  1496. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +0 -144
  1497. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +0 -59
  1498. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +0 -96
  1499. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +0 -45
  1500. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +0 -31
  1501. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +0 -39
  1502. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +0 -175
  1503. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +0 -44
  1504. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +0 -71
  1505. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +0 -48
  1506. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +0 -245
  1507. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +0 -39
  1508. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +0 -79
  1509. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +0 -60
  1510. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +0 -945
  1511. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +0 -147
  1512. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +0 -26
  1513. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/order.js +0 -785
  1514. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +0 -116
  1515. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +0 -38
  1516. package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/LICENSE +0 -22
  1517. package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/README.md +0 -21
  1518. package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/index.js +0 -41
  1519. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint +0 -17
  1520. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint.CMD +0 -12
  1521. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint.ps1 +0 -41
  1522. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver +0 -17
  1523. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver.CMD +0 -12
  1524. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver.ps1 +0 -41
  1525. package/template/lib/ts/node_modules/eslint-plugin-import/package.json +0 -124
  1526. package/template/lib/ts/node_modules/eslint-plugin-prettier/LICENSE.md +0 -24
  1527. package/template/lib/ts/node_modules/eslint-plugin-prettier/README.md +0 -202
  1528. package/template/lib/ts/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.d.ts +0 -5
  1529. package/template/lib/ts/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js +0 -254
  1530. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint +0 -17
  1531. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier +0 -17
  1532. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.CMD +0 -12
  1533. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.ps1 +0 -41
  1534. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.CMD +0 -12
  1535. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.ps1 +0 -41
  1536. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier +0 -17
  1537. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.CMD +0 -12
  1538. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.ps1 +0 -41
  1539. package/template/lib/ts/node_modules/eslint-plugin-prettier/package.json +0 -101
  1540. package/template/lib/ts/node_modules/eslint-plugin-prettier/recommended.d.ts +0 -5
  1541. package/template/lib/ts/node_modules/eslint-plugin-prettier/recommended.js +0 -17
  1542. package/template/lib/ts/node_modules/eslint-plugin-prettier/worker.js +0 -181
  1543. package/template/lib/ts/node_modules/prettier/LICENSE +0 -4857
  1544. package/template/lib/ts/node_modules/prettier/README.md +0 -109
  1545. package/template/lib/ts/node_modules/prettier/bin/prettier.cjs +0 -68
  1546. package/template/lib/ts/node_modules/prettier/doc.d.ts +0 -243
  1547. package/template/lib/ts/node_modules/prettier/doc.js +0 -1328
  1548. package/template/lib/ts/node_modules/prettier/doc.mjs +0 -1300
  1549. package/template/lib/ts/node_modules/prettier/index.cjs +0 -648
  1550. package/template/lib/ts/node_modules/prettier/index.d.ts +0 -940
  1551. package/template/lib/ts/node_modules/prettier/index.mjs +0 -24255
  1552. package/template/lib/ts/node_modules/prettier/internal/cli.mjs +0 -7089
  1553. package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier +0 -17
  1554. package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier.CMD +0 -12
  1555. package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier.ps1 +0 -41
  1556. package/template/lib/ts/node_modules/prettier/package.json +0 -198
  1557. package/template/lib/ts/node_modules/prettier/plugins/acorn.d.ts +0 -6
  1558. package/template/lib/ts/node_modules/prettier/plugins/acorn.js +0 -13
  1559. package/template/lib/ts/node_modules/prettier/plugins/acorn.mjs +0 -13
  1560. package/template/lib/ts/node_modules/prettier/plugins/angular.d.ts +0 -8
  1561. package/template/lib/ts/node_modules/prettier/plugins/angular.js +0 -1
  1562. package/template/lib/ts/node_modules/prettier/plugins/angular.mjs +0 -1
  1563. package/template/lib/ts/node_modules/prettier/plugins/babel.d.ts +0 -18
  1564. package/template/lib/ts/node_modules/prettier/plugins/babel.js +0 -16
  1565. package/template/lib/ts/node_modules/prettier/plugins/babel.mjs +0 -16
  1566. package/template/lib/ts/node_modules/prettier/plugins/estree.d.ts +0 -1
  1567. package/template/lib/ts/node_modules/prettier/plugins/estree.js +0 -36
  1568. package/template/lib/ts/node_modules/prettier/plugins/estree.mjs +0 -36
  1569. package/template/lib/ts/node_modules/prettier/plugins/flow.d.ts +0 -5
  1570. package/template/lib/ts/node_modules/prettier/plugins/flow.js +0 -21
  1571. package/template/lib/ts/node_modules/prettier/plugins/flow.mjs +0 -21
  1572. package/template/lib/ts/node_modules/prettier/plugins/glimmer.d.ts +0 -5
  1573. package/template/lib/ts/node_modules/prettier/plugins/glimmer.js +0 -30
  1574. package/template/lib/ts/node_modules/prettier/plugins/glimmer.mjs +0 -30
  1575. package/template/lib/ts/node_modules/prettier/plugins/graphql.d.ts +0 -5
  1576. package/template/lib/ts/node_modules/prettier/plugins/graphql.js +0 -29
  1577. package/template/lib/ts/node_modules/prettier/plugins/graphql.mjs +0 -29
  1578. package/template/lib/ts/node_modules/prettier/plugins/html.d.ts +0 -8
  1579. package/template/lib/ts/node_modules/prettier/plugins/html.js +0 -19
  1580. package/template/lib/ts/node_modules/prettier/plugins/html.mjs +0 -19
  1581. package/template/lib/ts/node_modules/prettier/plugins/markdown.d.ts +0 -7
  1582. package/template/lib/ts/node_modules/prettier/plugins/markdown.js +0 -59
  1583. package/template/lib/ts/node_modules/prettier/plugins/markdown.mjs +0 -59
  1584. package/template/lib/ts/node_modules/prettier/plugins/meriyah.d.ts +0 -5
  1585. package/template/lib/ts/node_modules/prettier/plugins/meriyah.js +0 -5
  1586. package/template/lib/ts/node_modules/prettier/plugins/meriyah.mjs +0 -5
  1587. package/template/lib/ts/node_modules/prettier/plugins/postcss.d.ts +0 -7
  1588. package/template/lib/ts/node_modules/prettier/plugins/postcss.js +0 -49
  1589. package/template/lib/ts/node_modules/prettier/plugins/postcss.mjs +0 -49
  1590. package/template/lib/ts/node_modules/prettier/plugins/typescript.d.ts +0 -5
  1591. package/template/lib/ts/node_modules/prettier/plugins/typescript.js +0 -25
  1592. package/template/lib/ts/node_modules/prettier/plugins/typescript.mjs +0 -25
  1593. package/template/lib/ts/node_modules/prettier/plugins/yaml.d.ts +0 -5
  1594. package/template/lib/ts/node_modules/prettier/plugins/yaml.js +0 -161
  1595. package/template/lib/ts/node_modules/prettier/plugins/yaml.mjs +0 -161
  1596. package/template/lib/ts/node_modules/prettier/standalone.d.ts +0 -33
  1597. package/template/lib/ts/node_modules/prettier/standalone.js +0 -34
  1598. package/template/lib/ts/node_modules/prettier/standalone.mjs +0 -34
  1599. package/template/lib/ts/node_modules/stylelint-config-standard-scss/LICENSE +0 -21
  1600. package/template/lib/ts/node_modules/stylelint-config-standard-scss/README.md +0 -50
  1601. package/template/lib/ts/node_modules/stylelint-config-standard-scss/index.js +0 -67
  1602. package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint +0 -17
  1603. package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.CMD +0 -12
  1604. package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.ps1 +0 -41
  1605. package/template/lib/ts/node_modules/stylelint-config-standard-scss/package.json +0 -58
  1606. /package/template/web-app/{react → react-rspack}/.editorconfig +0 -0
  1607. /package/template/web-app/{react → react-rspack}/.eslintignore +0 -0
  1608. /package/template/web-app/{react → react-rspack}/.gitignore +0 -0
  1609. /package/template/web-app/{react → react-rspack}/.husky/commit-msg +0 -0
  1610. /package/template/web-app/{react → react-rspack}/.husky/pre-commit +0 -0
  1611. /package/template/web-app/{react → react-rspack}/.prettierignore +0 -0
  1612. /package/template/web-app/{react → react-rspack}/.prettierrc +0 -0
  1613. /package/template/web-app/{react → react-rspack}/.stylelintignore +0 -0
  1614. /package/template/web-app/{react → react-rspack}/.stylelintrc +0 -0
  1615. /package/template/web-app/{react → react-rspack}/.vscode/extensions.json +0 -0
  1616. /package/template/web-app/{react → react-rspack}/.vscode/settings.json +0 -0
  1617. /package/template/web-app/{react → react-rspack}/commitlint.config.cjs +0 -0
  1618. /package/template/web-app/{react → react-rspack}/domain/app/app.model.ts +0 -0
  1619. /package/template/web-app/{react → react-rspack}/domain/app/app.styled.ts +0 -0
  1620. /package/template/web-app/{react → react-rspack}/domain/app/components/app-context.tsx +0 -0
  1621. /package/template/web-app/{react → react-rspack}/domain/app/components/app.tsx +0 -0
  1622. /package/template/web-app/{react → react-rspack}/domain/app/components/index.ts +0 -0
  1623. /package/template/web-app/{react → react-rspack}/domain/app/index.ts +0 -0
  1624. /package/template/web-app/{react → react-rspack}/domain/router/home/ids.ts +0 -0
  1625. /package/template/web-app/{react → react-rspack}/domain/router/home/index.ts +0 -0
  1626. /package/template/web-app/{react → react-rspack}/domain/router/home/routes.tsx +0 -0
  1627. /package/template/web-app/{react → react-rspack}/domain/router/ids.ts +0 -0
  1628. /package/template/web-app/{react → react-rspack}/domain/router/index.ts +0 -0
  1629. /package/template/web-app/{react → react-rspack}/domain/router/router.types.ts +0 -0
  1630. /package/template/web-app/{react → react-rspack}/main.tsx +0 -0
  1631. /package/template/web-app/{react → react-rspack}/pages/home/home.styled.ts +0 -0
  1632. /package/template/web-app/{react → react-rspack}/pages/home/home.tsx +0 -0
  1633. /package/template/web-app/{react → react-rspack}/pages/home/index.ts +0 -0
  1634. /package/template/web-app/{react → react-rspack}/pages/index.tsx +0 -0
  1635. /package/template/web-app/{react → react-rspack}/pages/not-found.tsx +0 -0
  1636. /package/template/web-app/{react → react-rspack}/postcss.config.cjs +0 -0
  1637. /package/template/web-app/{react → react-rspack}/scripts/createChunks.ts +0 -0
  1638. /package/template/web-app/{react → react-rspack}/scripts/index.ts +0 -0
  1639. /package/template/web-app/{react → react-rspack}/shared/assets/react.svg +0 -0
  1640. /package/template/web-app/{react → react-rspack}/shared/components/index.ts +0 -0
  1641. /package/template/web-app/{react → react-rspack}/shared/constant/index.ts +0 -0
  1642. /package/template/web-app/{react → react-rspack}/shared/hooks/defineRouter/defineRouter.types.ts +0 -0
  1643. /package/template/web-app/{react → react-rspack}/shared/hooks/defineRouter/deineRouter.tsx +0 -0
  1644. /package/template/web-app/{react → react-rspack}/shared/hooks/defineRouter/index.ts +0 -0
  1645. /package/template/web-app/{react → react-rspack}/shared/hooks/index.ts +0 -0
  1646. /package/template/web-app/{react → react-rspack}/shared/hooks/useInterval.ts +0 -0
  1647. /package/template/web-app/{react → react-rspack}/shared/hooks/useLoadingAction.ts +0 -0
  1648. /package/template/web-app/{react → react-rspack}/shared/hooks/useLowPriorityState.ts +0 -0
  1649. /package/template/web-app/{react → react-rspack}/shared/hooks/useSyncState.ts +0 -0
  1650. /package/template/web-app/{react → react-rspack}/shared/hooks/useVisible.ts +0 -0
  1651. /package/template/web-app/{react → react-rspack}/shared/service/api.ts +0 -0
  1652. /package/template/web-app/{react → react-rspack}/shared/service/index.ts +0 -0
  1653. /package/template/web-app/{react → react-rspack}/shared/theme/index.ts +0 -0
  1654. /package/template/web-app/{react → react-rspack}/shared/theme/theme.styled.ts +0 -0
  1655. /package/template/web-app/{react → react-rspack}/shared/tools/componentInstance.tsx +0 -0
  1656. /package/template/web-app/{react → react-rspack}/shared/tools/index.ts +0 -0
  1657. /package/template/web-app/{react → react-rspack}/shared/types/index.ts +0 -0
  1658. /package/template/web-app/{react → react-rspack}/shared/types/utils.ts +0 -0
  1659. /package/template/web-app/{react → react-rspack}/tsconfig.json +0 -0
  1660. /package/template/web-app/{react → react-vite}/.env +0 -0
  1661. /package/template/web-app/{react → react-vite}/.env.development +0 -0
  1662. /package/template/web-app/{react → react-vite}/.eslintrc +0 -0
  1663. /package/template/web-app/{react → react-vite}/README.md +0 -0
  1664. /package/template/web-app/{react → react-vite}/domain/router/router.tsx +0 -0
  1665. /package/template/web-app/{react → react-vite}/index.html +0 -0
  1666. /package/template/web-app/{react → react-vite}/mockUtils.ts +0 -0
  1667. /package/template/web-app/{react → react-vite}/package.json +0 -0
  1668. /package/template/web-app/{react → react-vite}/pages/home/home.mock.ts +0 -0
  1669. /package/template/web-app/{react → react-vite}/public/vite.svg +0 -0
  1670. /package/template/web-app/{react → react-vite}/shared/service/home.ts +0 -0
  1671. /package/template/web-app/{react → react-vite}/shared/service/request.ts +0 -0
  1672. /package/template/web-app/{react → react-vite}/tsconfig.node.json +0 -0
  1673. /package/template/web-app/{react → react-vite}/vite-env.d.ts +0 -0
  1674. /package/template/web-app/{react → react-vite}/vite.config.ts +0 -0
@@ -1,1925 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- This project adheres to [Semantic Versioning](https://semver.org/).
5
- This change log adheres to standards from [Keep a CHANGELOG](https://keepachangelog.com).
6
-
7
- ## [Unreleased]
8
-
9
- ## [2.29.1] - 2023-12-14
10
-
11
- ### Fixed
12
- - [`no-extraneous-dependencies`]: ignore `export type { ... } from '...'` when `includeTypes` is `false` ([#2919], thanks [@Pandemic1617])
13
- - [`no-unused-modules`]: support export patterns with array destructuring ([#2930], thanks [@ljharb])
14
- - [Deps] update `tsconfig-paths` ([#2447], thanks [@domdomegg])
15
-
16
- ## [2.29.0] - 2023-10-22
17
-
18
- ### Added
19
- - TypeScript config: add .cts and .mts extensions ([#2851], thanks [@Zamiell])
20
- - [`newline-after-import`]: new option `exactCount` and docs update ([#1933], thanks [@anikethsaha] and [@reosarevok])
21
- - [`newline-after-import`]: fix `exactCount` with `considerComments` false positive, when there is a leading comment ([#2884], thanks [@kinland])
22
-
23
- ## [2.28.1] - 2023-08-18
24
-
25
- ### Fixed
26
- - [`order`]: revert breaking change to single nested group ([#2854], thanks [@yndajas])
27
-
28
- ### Changed
29
- - [Docs] remove duplicate fixable notices in docs ([#2850], thanks [@bmish])
30
-
31
- ## [2.28.0] - 2023-07-27
32
-
33
- ### Fixed
34
- - [`no-duplicates`]: remove duplicate identifiers in duplicate imports ([#2577], thanks [@joe-matsec])
35
- - [`consistent-type-specifier-style`]: fix accidental removal of comma in certain cases ([#2754], thanks [@bradzacher])
36
- - [Perf] `ExportMap`: Improve `ExportMap.for` performance on larger codebases ([#2756], thanks [@leipert])
37
- - [`no-extraneous-dependencies`]/TypeScript: do not error when importing inline type from dev dependencies ([#1820], thanks [@andyogo])
38
- - [`newline-after-import`]/TypeScript: do not error when re-exporting a namespaced import ([#2832], thanks [@laurens-dg])
39
- - [`order`]: partial fix for [#2687] (thanks [@ljharb])
40
- - [`no-duplicates`]: Detect across type and regular imports ([#2835], thanks [@benkrejci])
41
- - [`extensions`]: handle `.` and `..` properly ([#2778], thanks [@benasher44])
42
- - [`no-unused-modules`]: improve schema (thanks [@ljharb])
43
- - [`no-unused-modules`]: report error on binding instead of parent export ([#2842], thanks [@Chamion])
44
-
45
- ### Changed
46
- - [Docs] [`no-duplicates`]: fix example schema ([#2684], thanks [@simmo])
47
- - [Docs] [`group-exports`]: fix syntax highlighting ([#2699], thanks [@devinrhode2])
48
- - [Docs] [`extensions`]: reference node ESM behavior ([#2748], thanks [@xM8WVqaG])
49
- - [Refactor] [`exports-last`]: use `array.prototype.findlastindex` (thanks [@ljharb])
50
- - [Refactor] [`no-anonymous-default-export`]: use `object.fromentries` (thanks [@ljharb])
51
- - [Refactor] [`no-unused-modules`]: use `array.prototype.flatmap` (thanks [@ljharb])
52
-
53
- ## [2.27.5] - 2023-01-16
54
-
55
- ### Fixed
56
- - [`order]`: Fix group ranks order when alphabetizing ([#2674], thanks [@Pearce-Ropion])
57
-
58
- ## [2.27.4] - 2023-01-11
59
-
60
- ### Fixed
61
- - `semver` should be a prod dep ([#2668])
62
-
63
- ## [2.27.3] - 2023-01-11
64
-
65
- ### Fixed
66
- - [`no-empty-named-blocks`]: rewrite rule to only check import declarations ([#2666])
67
-
68
- ## [2.27.2] - 2023-01-11
69
-
70
- ### Fixed
71
- - [`no-duplicates`]: do not unconditionally require `typescript` ([#2665])
72
-
73
- ## [2.27.1] - 2023-01-11
74
-
75
- ### Fixed
76
- - `array.prototype.flatmap` should be a prod dep ([#2664], thanks [@cristobal])
77
-
78
- ## [2.27.0] - 2023-01-11
79
-
80
- ### Added
81
- - [`newline-after-import`]: add `considerComments` option ([#2399], thanks [@pri1311])
82
- - [`no-cycle`]: add `allowUnsafeDynamicCyclicDependency` option ([#2387], thanks [@GerkinDev])
83
- - [`no-restricted-paths`]: support arrays for `from` and `target` options ([#2466], thanks [@AdriAt360])
84
- - [`no-anonymous-default-export`]: add `allowNew` option ([#2505], thanks [@DamienCassou])
85
- - [`order`]: Add `distinctGroup` option ([#2395], thanks [@hyperupcall])
86
- - [`no-extraneous-dependencies`]: Add `includeInternal` option ([#2541], thanks [@bdwain])
87
- - [`no-extraneous-dependencies`]: Add `includeTypes` option ([#2543], thanks [@bdwain])
88
- - [`order`]: new `alphabetize.orderImportKind` option to sort imports with same path based on their kind (`type`, `typeof`) ([#2544], thanks [@stropho])
89
- - [`consistent-type-specifier-style`]: add rule ([#2473], thanks [@bradzacher])
90
- - Add [`no-empty-named-blocks`] rule ([#2568], thanks [@guilhermelimak])
91
- - [`prefer-default-export`]: add "target" option ([#2602], thanks [@azyzz228])
92
- - [`no-absolute-path`]: add fixer ([#2613], thanks [@adipascu])
93
- - [`no-duplicates`]: support inline type import with `inlineTypeImport` option ([#2475], thanks [@snewcomer])
94
-
95
- ### Fixed
96
- - [`order`]: move nested imports closer to main import entry ([#2396], thanks [@pri1311])
97
- - [`no-restricted-paths`]: fix an error message ([#2466], thanks [@AdriAt360])
98
- - [`no-restricted-paths`]: use `Minimatch.match` instead of `minimatch` to comply with Windows Native paths ([#2466], thanks [@AdriAt360])
99
- - [`order`]: require with member expression could not be fixed if alphabetize.order was used ([#2490], thanks [@msvab])
100
- - [`order`]: leave more space in rankings for consecutive path groups ([#2506], thanks [@Pearce-Ropion])
101
- - [`no-cycle`]: add ExportNamedDeclaration statements to dependencies ([#2511], thanks [@BenoitZugmeyer])
102
- - [`dynamic-import-chunkname`]: prevent false report on a valid webpack magic comment ([#2330], thanks [@mhmadhamster])
103
- - [`export`]: do not error on TS export overloads ([#1590], thanks [@ljharb])
104
- - [`no-unresolved`], [`extensions`]: ignore type only exports ([#2436], thanks [@Lukas-Kullmann])
105
- - `ExportMap`: add missing param to function ([#2589], thanks [@Fdawgs])
106
- - [`no-unused-modules`]: `checkPkgFieldObject` filters boolean fields from checks ([#2598], thanks [@mpint])
107
- - [`no-cycle`]: accept Flow `typeof` imports, just like `type` ([#2608], thanks [@gnprice])
108
- - [`no-import-module-exports`]: avoid a false positive for import variables ([#2315], thanks [@BarryThePenguin])
109
-
110
- ### Changed
111
- - [Tests] [`named`]: Run all TypeScript test ([#2427], thanks [@ProdigySim])
112
- - [readme] note use of typescript in readme `import/extensions` section ([#2440], thanks [@OutdatedVersion])
113
- - [Docs] [`order`]: use correct default value ([#2392], thanks [@hyperupcall])
114
- - [meta] replace git.io link in comments with the original URL ([#2444], thanks [@liby])
115
- - [Docs] remove global install in readme ([#2412], thanks [@aladdin-add])
116
- - [readme] clarify `eslint-import-resolver-typescript` usage ([#2503], thanks [@JounQin])
117
- - [Refactor] [`no-cycle`]: Add per-run caching of traversed paths ([#2419], thanks [@nokel81])
118
- - [Performance] `ExportMap`: add caching after parsing for an ambiguous module ([#2531], thanks [@stenin-nikita])
119
- - [Docs] [`no-useless-path-segments`]: fix paths ([#2424], thanks [@s-h-a-d-o-w])
120
- - [Tests] [`no-cycle`]: add passing test cases ([#2438], thanks [@georeith])
121
- - [Refactor] [`no-extraneous-dependencies`] improve performance using cache ([#2374], thanks [@meowtec])
122
- - [meta] `CONTRIBUTING.md`: mention inactive PRs ([#2546], thanks [@stropho])
123
- - [readme] make json for setting groups multiline ([#2570], thanks [@bertyhell])
124
- - [Tests] [`no-restricted-paths`]: Tests for `import type` statements ([#2459], thanks [@golergka])
125
- - [Tests] [`no-restricted-paths`]: fix one failing `import type` test case, submitted by [@golergka], thanks [@azyzz228]
126
- - [Docs] automate docs with eslint-doc-generator ([#2582], thanks [@bmish])
127
- - [readme] Increase clarity around typescript configuration ([#2588], thanks [@Nfinished])
128
- - [Docs] update `eslint-doc-generator` to v1.0.0 ([#2605], thanks [@bmish])
129
- - [Perf] [`no-cycle`], [`no-internal-modules`], [`no-restricted-paths`]: use `anyOf` instead of `oneOf` (thanks [@ljharb], [@remcohaszing])
130
-
131
- ## [2.26.0] - 2022-04-05
132
-
133
- ### Added
134
- - [`no-named-default`], [`no-default-export`], [`prefer-default-export`], [`no-named-export`], [`export`], [`named`], [`namespace`], [`no-unused-modules`]: support arbitrary module namespace names ([#2358], thanks [@sosukesuzuki])
135
- - [`no-dynamic-require`]: support dynamic import with espree ([#2371], thanks [@sosukesuzuki])
136
- - [`no-relative-packages`]: add fixer ([#2381], thanks [@forivall])
137
-
138
- ### Fixed
139
- - [`default`]: `typescript-eslint-parser`: avoid a crash on exporting as namespace (thanks [@ljharb])
140
- - [`export`]/TypeScript: false positive for typescript namespace merging ([#1964], thanks [@magarcia])
141
- - [`no-duplicates`]: ignore duplicate modules in different TypeScript module declarations ([#2378], thanks [@remcohaszing])
142
- - [`no-unused-modules`]: avoid a crash when processing re-exports ([#2388], thanks [@ljharb])
143
-
144
- ### Changed
145
- - [Tests] [`no-nodejs-modules`]: add tests for node protocol URL ([#2367], thanks [@sosukesuzuki])
146
- - [Tests] [`default`], [`no-anonymous-default-export`], [`no-mutable-exports`], [`no-named-as-default-member`], [`no-named-as-default`]: add tests for arbitrary module namespace names ([#2358], thanks [@sosukesuzuki])
147
- - [Docs] [`no-unresolved`]: Fix RegExp escaping in readme ([#2332], thanks [@stephtr])
148
- - [Refactor] [`namespace`]: try to improve performance ([#2340], thanks [@ljharb])
149
- - [Docs] make rule doc titles consistent ([#2393], thanks [@TheJaredWilcurt])
150
- - [Docs] [`order`]: TS code examples should use TS code blocks ([#2411], thanks [@MM25Zamanian])
151
- - [Docs] [`no-unresolved`]: fix link ([#2417], thanks [@kylemh])
152
-
153
- ## [2.25.4] - 2022-01-02
154
-
155
- ### Fixed
156
- - `importType`: avoid crashing on a non-string' ([#2305], thanks [@ljharb])
157
- - [`first`]: prevent crash when parsing angular templates ([#2210], thanks [@ljharb])
158
- - `importType`: properly resolve `@/*`-aliased imports as internal ([#2334], thanks [@ombene])
159
- - [`named`]/`ExportMap`: handle named imports from CJS modules that use dynamic import ([#2341], thanks [@ludofischer])
160
-
161
- ### Changed
162
- - [`no-default-import`]: report on the token "default" instead of the entire node ([#2299], thanks [@pmcelhaney])
163
- - [Docs] [`order`]: Remove duplicate mention of default ([#2280], thanks [@johnthagen])
164
- - [Deps] update `eslint-module-utils`
165
-
166
- ## [2.25.3] - 2021-11-09
167
-
168
- ### Fixed
169
- - [`extensions`]: ignore unresolveable type-only imports ([#2270], [#2271], thanks [@jablko])
170
- - `importType`: fix `isExternalModule` calculation ([#2282], thanks [@mx-bernhard])
171
- - [`no-import-module-exports`]: avoid false positives with a shadowed `module` or `exports` ([#2297], thanks [@ljharb])
172
-
173
- ### Changed
174
- - [Docs] [`order`]: add type to the default groups ([#2272], thanks [@charpeni])
175
- - [readme] Add note to TypeScript docs to install appropriate resolver ([#2279], thanks [@johnthagen])
176
- - [Refactor] `importType`: combine redundant `isScoped` and `isScopedModule` (thanks [@ljharb])
177
- - [Docs] HTTP => HTTPS ([#2287], thanks [@Schweinepriester])
178
-
179
- ## [2.25.2] - 2021-10-12
180
-
181
- ### Fixed
182
- - [Deps] update `eslint-module-utils` for real this time ([#2255], thanks [@ljharb])
183
-
184
- ## [2.25.1] - 2021-10-11
185
-
186
- ### Fixed
187
- - [Deps] update `eslint-module-utils`
188
-
189
- ## [2.25.0] - 2021-10-11
190
-
191
- ### Added
192
- - Support `eslint` v8 ([#2191], thanks [@ota-meshi])
193
- - [`no-unresolved`]: add `caseSensitiveStrict` option ([#1262], thanks [@sergei-startsev])
194
- - [`no-unused-modules`]: add eslint v8 support ([#2194], thanks [@coderaiser])
195
- - [`no-restricted-paths`]: add/restore glob pattern support ([#2219], thanks [@stropho])
196
- - [`no-unused-modules`]: support dynamic imports ([#1660], [#2212], thanks [@maxkomarychev], [@aladdin-add], [@Hypnosphi])
197
-
198
- ### Fixed
199
- - [`no-unresolved`]: ignore type-only imports ([#2220], thanks [@jablko])
200
- - [`order`]: fix sorting imports inside TypeScript module declarations ([#2226], thanks [@remcohaszing])
201
- - [`default`], `ExportMap`: Resolve extended TypeScript configuration files ([#2240], thanks [@mrmckeb])
202
-
203
- ### Changed
204
- - [Refactor] switch to an internal replacement for `pkg-up` and `read-pkg-up` ([#2047], thanks [@mgwalker])
205
- - [patch] TypeScript config: remove `.d.ts` from [`import/parsers` setting] and [`import/extensions` setting] ([#2220], thanks [@jablko])
206
- - [Refactor] [`no-unresolved`], [`no-extraneous-dependencies`]: moduleVisitor usage ([#2233], thanks [@jablko])
207
-
208
- ## [2.24.2] - 2021-08-24
209
-
210
- ### Fixed
211
- - [`named`], [`namespace`]: properly handle ExportAllDeclarations ([#2199], thanks [@ljharb])
212
-
213
- ## [2.24.1] - 2021-08-19
214
-
215
- ### Fixed
216
- - `ExportMap`: Add default export when esModuleInterop is true and anything is exported ([#2184], thanks [@Maxim-Mazurok])
217
- - [`named`], [`namespace`]: properly set reexports on `export * as … from` ([#1998], [#2161], thanks [@ljharb])
218
- - [`no-duplicates`]: correctly handle case of mixed default/named type imports ([#2149], thanks [@GoodForOneFare], [@nwalters512])
219
- - [`no-duplicates`]: avoid crash with empty `import type {}` ([#2201], thanks [@ljharb])
220
-
221
- ### Changed
222
- - [Docs] `max-dependencies`: 📖 Document `ignoreTypeImports` option ([#2196], thanks [@himynameisdave])
223
-
224
- ## [2.24.0] - 2021-08-08
225
-
226
- ### Added
227
- - [`no-dynamic-require`]: add option `esmodule` ([#1223], thanks [@vikr01])
228
- - [`named`]: add `commonjs` option ([#1222], thanks [@vikr01])
229
- - [`no-namespace`]: Add `ignore` option ([#2112], thanks [@aberezkin])
230
- - [`max-dependencies`]: add option `ignoreTypeImports` ([#1847], thanks [@rfermann])
231
-
232
- ### Fixed
233
- - [`no-duplicates`]: ensure autofix avoids excessive newlines ([#2028], thanks [@ertrzyiks])
234
- - [`extensions`]: avoid crashing on partially typed import/export statements ([#2118], thanks [@ljharb])
235
- - [`no-extraneous-dependencies`]: add ESM intermediate package.json support ([#2121], thanks [@paztis])
236
- - Use `context.getPhysicalFilename()` when available (ESLint 7.28+) ([#2160], thanks [@pmcelhaney])
237
- - [`extensions`]/`importType`: fix isScoped treating @/abc as scoped module ([#2146], thanks [@rperello])
238
-
239
- ### Changed
240
- - [Docs] [`extensions`]: improved cases for using `@/...` ([#2140], thanks [@wenfangdu])
241
- - [Docs] [`extensions`]: removed incorrect cases ([#2138], thanks [@wenfangdu])
242
- - [Tests] [`order`]: add tests for `pathGroupsExcludedImportTypes: ['type']` ([#2158], thanks [@atav32])
243
- - [Docs] [`order`]: improve the documentation for the `pathGroupsExcludedImportTypes` option ([#2156], thanks [@liby])
244
- - [Tests] [`no-cycle`]: Restructure test files ([#1517], thanks [@soryy708])
245
- - [Docs] add description how to use plugin with yarn berry ([#2179], thanks [@KostyaZgara])
246
-
247
- ## [2.23.4] - 2021-05-29
248
-
249
- ### Fixed
250
- - [`no-import-module-exports`]: Don't crash if packages have no entrypoint ([#2099], thanks [@eps1lon])
251
- - [`no-extraneous-dependencies`]: fix package name algorithm ([#2097], thanks [@paztis])
252
-
253
- ## [2.23.3] - 2021-05-21
254
-
255
- ### Fixed
256
- - [`no-restricted-paths`]: fix false positive matches ([#2090], thanks [@malykhinvi])
257
- - [`no-cycle`]: ignore imports where imported file only imports types of importing file ([#2083], thanks [@cherryblossom000])
258
- - [`no-cycle`]: fix false negative when file imports a type after importing a value in Flow ([#2083], thanks [@cherryblossom000])
259
- - [`order`]: restore default behavior unless `type` is in groups ([#2087], thanks [@grit96])
260
-
261
- ### Changed
262
- - [Docs] Add [`no-relative-packages`] to list of to the list of rules ([#2075], thanks [@arvigeus])
263
-
264
- ## [2.23.2] - 2021-05-15
265
-
266
- ### Changed
267
- - [meta] add `safe-publish-latest`; use `prepublishOnly` script for npm 7+
268
-
269
- ## [2.23.1] - 2021-05-14
270
-
271
- ### Fixed
272
- - [`newline-after-import`]: fix crash with `export {}` syntax ([#2063], [#2056], thanks [@ljharb])
273
- - `ExportMap`: do not crash when tsconfig lacks `.compilerOptions` ([#2067], thanks [@ljharb])
274
- - [`order`]: fix alphabetical sorting ([#2071], thanks [@grit96])
275
-
276
- ## [2.23.0] - 2021-05-13
277
-
278
- ### Added
279
- - [`no-commonjs`]: Also detect require calls with expressionless template literals: ``` require(`x`) ``` ([#1958], thanks [@FloEdelmann])
280
- - [`no-internal-modules`]: Add `forbid` option ([#1846], thanks [@guillaumewuip])
281
- - add [`no-relative-packages`] ([#1860], [#966], thanks [@tapayne88] [@panrafal])
282
- - add [`no-import-module-exports`] rule: report import declarations with CommonJS exports ([#804], thanks [@kentcdodds] and [@ttmarek])
283
- - [`no-unused-modules`]: Support destructuring assignment for `export`. ([#1997], thanks [@s-h-a-d-o-w])
284
- - [`order`]: support type imports ([#2021], thanks [@grit96])
285
- - [`order`]: Add `warnOnUnassignedImports` option to enable warnings for out of order unassigned imports ([#1990], thanks [@hayes])
286
-
287
- ### Fixed
288
- - [`export`]/TypeScript: properly detect export specifiers as children of a TS module block ([#1889], thanks [@andreubotella])
289
- - [`order`]: ignore non-module-level requires ([#1940], thanks [@golopot])
290
- - [`no-webpack-loader-syntax`]/TypeScript: avoid crash on missing name ([#1947], thanks [@leonardodino])
291
- - [`no-extraneous-dependencies`]: Add package.json cache ([#1948], thanks [@fa93hws])
292
- - [`prefer-default-export`]: handle empty array destructuring ([#1965], thanks [@ljharb])
293
- - [`no-unused-modules`]: make type imports mark a module as used (fixes #1924) ([#1974], thanks [@cherryblossom000])
294
- - [`no-cycle`]: fix perf regression ([#1944], thanks [@Blasz])
295
- - [`first`]: fix handling of `import = require` ([#1963], thanks [@MatthiasKunnen])
296
- - [`no-cycle`]/[`extensions`]: fix isExternalModule usage ([#1696], thanks [@paztis])
297
- - [`extensions`]/[`no-cycle`]/[`no-extraneous-dependencies`]: Correct module real path resolution ([#1696], thanks [@paztis])
298
- - [`no-named-default`]: ignore Flow import type and typeof ([#1983], thanks [@christianvuerings])
299
- - [`no-extraneous-dependencies`]: Exclude flow `typeof` imports ([#1534], thanks [@devongovett])
300
- - [`newline-after-import`]: respect decorator annotations ([#1985], thanks [@lilling])
301
- - [`no-restricted-paths`]: enhance performance for zones with `except` paths ([#2022], thanks [@malykhinvi])
302
- - [`no-unresolved`]: check import() ([#2026], thanks [@aladdin-add])
303
-
304
- ### Changed
305
- - [Generic Import Callback] Make callback for all imports once in rules ([#1237], thanks [@ljqx])
306
- - [Docs] [`no-named-as-default`]: add semicolon ([#1897], thanks [@bicstone])
307
- - [Docs] [`no-extraneous-dependencies`]: correct peerDependencies option default to `true` ([#1993], thanks [@dwardu])
308
- - [Docs] [`order`]: Document options required to match ordering example ([#1992], thanks [@silviogutierrez])
309
- - [Tests] [`no-unresolved`]: add tests for `import()` ([#2012], thanks [@davidbonnet])
310
- - [Docs] Add import/recommended ruleset to README ([#2034], thanks [@edemaine])
311
-
312
- ## [2.22.1] - 2020-09-27
313
-
314
- ### Fixed
315
- - [`default`]/TypeScript: avoid crash on `export =` with a MemberExpression ([#1841], thanks [@ljharb])
316
- - [`extensions`]/importType: Fix @/abc being treated as scoped module ([#1854], thanks [@3nuc])
317
- - allow using rest operator in named export ([#1878], thanks [@foray1010])
318
- - [`dynamic-import-chunkname`]: allow single quotes to match Webpack support ([#1848], thanks [@straub])
319
-
320
- ### Changed
321
- - [`export`]: add tests for a name collision with `export * from` ([#1704], thanks @tomprats)
322
-
323
- ## [2.22.0] - 2020-06-26
324
-
325
- ### Added
326
- - [`no-unused-modules`]: consider exported TypeScript interfaces, types and enums ([#1819], thanks [@nicolashenry])
327
- - [`no-cycle`]: allow `maxDepth` option to be `"∞"` (thanks [@ljharb])
328
-
329
- ### Fixed
330
- - [`order`]/TypeScript: properly support `import = object` expressions ([#1823], thanks [@manuth])
331
- - [`no-extraneous-dependencies`]/TypeScript: do not error when importing type from dev dependencies ([#1820], thanks [@fernandopasik])
332
- - [`default`]: avoid crash with `export =` ([#1822], thanks [@AndrewLeedham])
333
- - [`order`]/[`newline-after-import`]: ignore TypeScript's "export import object" ([#1830], thanks [@be5invis])
334
- - [`dynamic-import-chunkname`]/TypeScript: supports `@typescript-eslint/parser` ([#1833], thanks [@noelebrun])
335
- - [`order`]/TypeScript: ignore ordering of object imports ([#1831], thanks [@manuth])
336
- - [`namespace`]: do not report on shadowed import names ([#518], thanks [@ljharb])
337
- - [`export`]: avoid warning on `export * as` non-conflicts ([#1834], thanks [@ljharb])
338
-
339
- ### Changed
340
- - [`no-extraneous-dependencies`]: add tests for importing types ([#1824], thanks [@taye])
341
- - [docs] [`no-default-export`]: Fix docs url ([#1836], thanks [@beatrizrezener])
342
- - [docs] [`imports-first`]: deprecation info and link to `first` docs ([#1835], thanks [@beatrizrezener])
343
-
344
- ## [2.21.2] - 2020-06-09
345
-
346
- ### Fixed
347
- - [`order`]: avoid a crash on TypeScript’s `export import` syntax ([#1808], thanks [@ljharb])
348
- - [`newline-after-import`]: consider TypeScript `import =` syntax' ([#1811], thanks [@ljharb])
349
- - [`no-internal-modules`]: avoid a crash on a named export declaration ([#1814], thanks [@ljharb])
350
-
351
- ## [2.21.1] - 2020-06-07
352
-
353
- ### Fixed
354
- - TypeScript: [`import/named`]: avoid requiring `typescript` when not using TS ([#1805], thanks [@ljharb])
355
-
356
- ## [2.21.0] - 2020-06-07
357
-
358
- ### Added
359
- - [`import/default`]: support default export in TSExportAssignment ([#1528], thanks [@joaovieira])
360
- - [`no-cycle`]: add `ignoreExternal` option ([#1681], thanks [@sveyret])
361
- - [`order`]: Add support for TypeScript's "import equals"-expressions ([#1785], thanks [@manuth])
362
- - [`import/default`]: support default export in TSExportAssignment ([#1689], thanks [@Maxim-Mazurok])
363
- - [`no-restricted-paths`]: add custom message support ([#1802], thanks [@malykhinvi])
364
-
365
- ### Fixed
366
- - [`group-exports`]: Flow type export awareness ([#1702], thanks [@ernestostifano])
367
- - [`order`]: Recognize pathGroup config for first group ([#1719], [#1724], thanks [@forivall], [@xpl])
368
- - [`no-unused-modules`]: Fix re-export not counting as usage when used in combination with import ([#1722], thanks [@Ephem])
369
- - [`no-duplicates`]: Handle TS import type ([#1676], thanks [@kmui2])
370
- - [`newline-after-import`]: recognize decorators ([#1139], thanks [@atos1990])
371
- - [`no-unused-modules`]: Revert "[flow] [`no-unused-modules`]: add flow type support" ([#1770], thanks [@Hypnosphi])
372
- - TypeScript: Add nested namespace handling ([#1763], thanks [@julien1619])
373
- - [`namespace`]/`ExportMap`: Fix interface declarations for TypeScript ([#1764], thanks [@julien1619])
374
- - [`no-unused-modules`]: avoid order-dependence ([#1744], thanks [@darkartur])
375
- - [`no-internal-modules`]: also check `export from` syntax ([#1691], thanks [@adjerbetian])
376
- - TypeScript: [`export`]: avoid a crash with `export =` ([#1801], thanks [@ljharb])
377
-
378
- ### Changed
379
- - [Refactor] [`no-extraneous-dependencies`]: use moduleVisitor ([#1735], thanks [@adamborowski])
380
- - TypeScript config: Disable [`named`][] ([#1726], thanks [@astorije])
381
- - [readme] Remove duplicate [`no-unused-modules`] from docs ([#1690], thanks [@arvigeus])
382
- - [Docs] [`order`]: fix bad inline config ([#1788], thanks [@nickofthyme])
383
- - [Tests] Add fix for Windows Subsystem for Linux ([#1786], thanks [@manuth])
384
- - [Docs] [`no-unused-rules`]: Fix docs for unused exports ([#1776], thanks [@barbogast])
385
- - [eslint] bump minimum v7 version to v7.2.0
386
-
387
- ## [2.20.2] - 2020-03-28
388
-
389
- ### Fixed
390
- - [`order`]: fix `isExternalModule` detect on windows ([#1651], thanks [@fisker])
391
- - [`order`]: recognize ".." as a "parent" path ([#1658], thanks [@golopot])
392
- - [`no-duplicates`]: fix fixer on cases with default import ([#1666], thanks [@golopot])
393
- - [`no-unused-modules`]: Handle `export { default } from` syntax ([#1631], thanks [@richardxia])
394
- - [`first`]: Add a way to disable `absolute-first` explicitly ([#1664], thanks [@TheCrueltySage])
395
- - [Docs] [`no-webpack-loader-syntax`]: Updates webpack URLs ([#1751], thanks [@MikeyBeLike])
396
-
397
- ## [2.20.1] - 2020-02-01
398
-
399
- ### Fixed
400
- - [`export`]: Handle function overloading in `*.d.ts` ([#1619], thanks [@IvanGoncharov])
401
- - [`no-absolute-path`]: fix a crash with invalid import syntax ([#1616], thanks [@ljharb])
402
- - [`import/external-module-folders` setting] now correctly works with directories containing modules symlinked from `node_modules` ([#1605], thanks [@skozin])
403
- - [`extensions`]: for invalid code where `name` does not exist, do not crash ([#1613], thanks [@ljharb])
404
- - [`extensions`]: Fix scope regex ([#1611], thanks [@yordis])
405
- - [`no-duplicates`]: allow duplicate imports if one is a namespace and the other not ([#1612], thanks [@sveyret])
406
- - Add some missing rule meta schemas and types ([#1620], thanks [@bmish])
407
- - [`named`]: for importing from a module which re-exports named exports from a `node_modules` module ([#1569], [#1447], thanks [@redbugz], [@kentcdodds])
408
- - [`order`]: Fix alphabetize for mixed requires and imports ([#1626], thanks [@wschurman])
409
-
410
- ### Changed
411
- - [`import/external-module-folders` setting] behavior is more strict now: it will only match complete path segments ([#1605], thanks [@skozin])
412
- - [meta] fix "files" field to include/exclude the proper files ([#1635], thanks [@ljharb])
413
- - [Tests] [`order`]: Add TS import type tests ([#1736], thanks [@kmui2])
414
-
415
- ## [2.20.0] - 2020-01-10
416
-
417
- ### Added
418
- - [`order`]: added `caseInsensitive` as an additional option to `alphabetize` ([#1586], thanks [@dbrewer5])
419
- - [`no-restricted-paths`]: New `except` option per `zone`, allowing exceptions to be defined for a restricted zone ([#1238], thanks [@rsolomon])
420
- - [`order`]: add option pathGroupsExcludedImportTypes to allow ordering of external import types ([#1565], thanks [@Mairu])
421
-
422
- ### Fixed
423
- - [`no-unused-modules`]: fix usage of [`import/extensions` setting] ([#1560], thanks [@stekycz])
424
- - [`extensions`]: ignore non-main modules ([#1563], thanks [@saschanaz])
425
- - TypeScript config: lookup for external modules in @types folder ([#1526], thanks [@joaovieira])
426
- - [`no-extraneous-dependencies`]: ensure `node.source` is truthy ([#1589], thanks [@ljharb])
427
- - [`extensions`]: Ignore query strings when checking for extensions ([#1572], thanks [@pcorpet])
428
-
429
- ### Docs
430
- - [`extensions`]: improve `ignorePackages` docs ([#1248], thanks [@ivo-stefchev])
431
-
432
- ## [2.19.1] - 2019-12-08
433
-
434
- ### Fixed
435
- - [`no-extraneous-dependencies`]: ensure `node.source` exists
436
-
437
- ## [2.19.0] - 2019-12-08
438
-
439
- ### Added
440
- - [`internal-regex` setting]: regex pattern for marking packages "internal" ([#1491], thanks [@Librazy])
441
- - [`group-exports`]: make aggregate module exports valid ([#1472], thanks [@atikenny])
442
- - [`no-namespace`]: Make rule fixable ([#1401], thanks [@TrevorBurnham])
443
- - support `parseForESLint` from custom parser ([#1435], thanks [@JounQin])
444
- - [`no-extraneous-dependencies`]: Implement support for [bundledDependencies](https://npm.github.io/using-pkgs-docs/package-json/types/bundleddependencies.html) ([#1436], thanks [@schmidsi]))
445
- - [`no-unused-modules`]: add flow type support ([#1542], thanks [@rfermann])
446
- - [`order`]: Adds support for pathGroups to allow ordering by defined patterns ([#795], [#1386], thanks [@Mairu])
447
- - [`no-duplicates`]: Add `considerQueryString` option : allow duplicate imports with different query strings ([#1107], thanks [@pcorpet]).
448
- - [`order`]: Add support for alphabetical sorting of import paths within import groups ([#1360], [#1105], [#629], thanks [@duncanbeevers], [@stropho], [@luczsoma], [@randallreedjr])
449
- - [`no-commonjs`]: add `allowConditionalRequire` option ([#1439], thanks [@Pessimistress])
450
-
451
- ### Fixed
452
- - [`default`]: make error message less confusing ([#1470], thanks [@golopot])
453
- - Improve performance of `ExportMap.for` by only loading paths when necessary. ([#1519], thanks [@brendo])
454
- - Support export of a merged TypeScript namespace declaration ([#1495], thanks [@benmunro])
455
- - [`order`]: fix autofix to not move imports across fn calls ([#1253], thanks [@tihonove])
456
- - [`prefer-default-export`]: fix false positive with type export ([#1506], thanks [@golopot])
457
- - [`extensions`]: Fix `ignorePackages` to produce errors ([#1521], thanks [@saschanaz])
458
- - [`no-unused-modules`]: fix crash due to `export *` ([#1496], thanks [@Taranys])
459
- - [`no-cycle`]: should not warn for Flow imports ([#1494], thanks [@maxmalov])
460
- - [`order`]: fix `@someModule` considered as `unknown` instead of `internal` ([#1493], thanks [@aamulumi])
461
- - [`no-extraneous-dependencies`]: Check `export from` ([#1049], thanks [@marcusdarmstrong])
462
-
463
- ### Docs
464
- - [`no-useless-path-segments`]: add docs for option `commonjs` ([#1507], thanks [@golopot])
465
-
466
- ### Changed
467
- - [`no-unused-modules`]/`eslint-module-utils`: Avoid superfluous calls and code ([#1551], thanks [@brettz9])
468
-
469
- ## [2.18.2] - 2019-07-19
470
-
471
- ### Fixed
472
- - Skip warning on type interfaces ([#1425], thanks [@lencioni])
473
-
474
- ## [2.18.1] - 2019-07-18
475
-
476
- ### Fixed
477
- - Improve parse perf when using `@typescript-eslint/parser` ([#1409], thanks [@bradzacher])
478
- - [`prefer-default-export`]: don't warn on TypeAlias & TSTypeAliasDeclaration ([#1377], thanks [@sharmilajesupaul])
479
- - [`no-unused-modules`]: Exclude package "main"/"bin"/"browser" entry points ([#1404], thanks [@rfermann])
480
- - [`export`]: false positive for TypeScript overloads ([#1412], thanks [@golopot])
481
-
482
- ### Refactors
483
- - [`no-extraneous-dependencies`], `importType`: remove lodash ([#1419], thanks [@ljharb])
484
-
485
- ## [2.18.0] - 2019-06-24
486
-
487
- ### Added
488
- - Support eslint v6 ([#1393], thanks [@sheepsteak])
489
- - [`order`]: Adds support for correctly sorting unknown types into a single group ([#1375], thanks [@swernerx])
490
- - [`order`]: add fixer for destructuring commonjs import ([#1372], thanks [@golopot])
491
- - TypeScript config: add TS def extensions + defer to TS over JS ([#1366], thanks [@benmosher])
492
-
493
- ### Fixed
494
- - [`no-unused-modules`]: handle ClassDeclaration ([#1371], thanks [@golopot])
495
-
496
- ### Docs
497
- - [`no-cycle`]: split code examples so file separation is obvious ([#1370], thanks [@alex-page])
498
- - [`no-named-as-default-member`]: update broken link ([#1389], thanks [@fooloomanzoo])
499
-
500
- ## [2.17.3] - 2019-05-23
501
-
502
- ### Fixed
503
- - [`no-common-js`]: Also throw an error when assigning ([#1354], thanks [@charlessuh])
504
- - [`no-unused-modules`]: don't crash when lint file outside src-folder ([#1347], thanks [@rfermann])
505
- - [`no-unused-modules`]: make `import { name as otherName }` work ([#1340], [#1342], thanks [@rfermann])
506
- - [`no-unused-modules`]: make appveyor tests passing ([#1333], thanks [@rfermann])
507
- - [`named`]: ignore Flow `typeof` imports and `type` exports ([#1345], thanks [@loganfsmyth])
508
- - [refactor] fix eslint 6 compat by fixing imports (thank [@ljharb])
509
- - Improve support for TypeScript declare structures ([#1356], thanks [@christophercurrie])
510
-
511
- ### Docs
512
- - add missing [`no-unused-modules`] in README ([#1358], thanks [@golopot])
513
- - [`no-unused-modules`]: Indicates usage, plugin defaults to no-op, and add description to main README.md ([#1352], thanks [@johndevedu])
514
- - Document `env` option for `eslint-import-resolver-webpack` ([#1363], thanks [@kgregory])
515
-
516
- ## [2.17.2] - 2019-04-16
517
-
518
- ### Fixed
519
- - [`no-unused-modules`]: avoid crash when using `ignoreExports`-option ([#1331], [#1323], thanks [@rfermann])
520
- - [`no-unused-modules`]: make sure that rule with no options will not fail ([#1330], [#1334], thanks [@kiwka])
521
-
522
- ## [2.17.1] - 2019-04-13
523
-
524
- ### Fixed
525
- - require v2.4 of `eslint-module-utils` ([#1322])
526
-
527
- ## [2.17.0] - 2019-04-13
528
-
529
- ### Added
530
- - [`no-useless-path-segments`]: Add `noUselessIndex` option ([#1290], thanks [@timkraut])
531
- - [`no-duplicates`]: Add autofix ([#1312], thanks [@lydell])
532
- - Add [`no-unused-modules`] rule ([#1142], thanks [@rfermann])
533
- - support export type named exports from TypeScript ([#1304], thanks [@bradennapier] and [@schmod])
534
-
535
- ### Fixed
536
- - [`order`]: Fix interpreting some external modules being interpreted as internal modules ([#793], [#794] thanks [@ephys])
537
- - allow aliases that start with @ to be "internal" ([#1293], [#1294], thanks [@jeffshaver])
538
- - aliased internal modules that look like core modules ([#1297], thanks [@echenley])
539
- - [`namespace`]: add check for null ExportMap ([#1235], [#1144], thanks [@ljqx])
540
- - [ExportMap] fix condition for checking if block comment ([#1234], [#1233], thanks [@ljqx])
541
- - Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-imports`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])
542
- - [`export`]: false positives for TypeScript type + value export ([#1319], thanks [@bradzacher])
543
- - [`export`]: Support TypeScript namespaces ([#1320], [#1300], thanks [@bradzacher])
544
-
545
- ### Docs
546
- - Update readme for TypeScript ([#1256], [#1277], thanks [@kirill-konshin])
547
- - make rule names consistent ([#1112], thanks [@feychenie])
548
-
549
- ### Tests
550
- - fix broken tests on master ([#1295], thanks [@jeffshaver] and [@ljharb])
551
- - [`no-commonjs`]: add tests that show corner cases ([#1308], thanks [@TakeScoop])
552
-
553
- ## [2.16.0] - 2019-01-29
554
-
555
- ### Added
556
- - `typescript` config ([#1257], thanks [@kirill-konshin])
557
-
558
- ### Fixed
559
- - Memory leak of `SourceCode` objects for all parsed dependencies, resolved. (issue [#1266], thanks [@asapach] and [@sergei-startsev] for digging in)
560
-
561
- ## [2.15.0] - 2019-01-22
562
-
563
- ### Added
564
- - new rule: [`no-named-export`] ([#1157], thanks [@fsmaia])
565
-
566
- ### Fixed
567
- - [`no-extraneous-dependencies`]: `packageDir` option with array value was clobbering package deps instead of merging them ([#1175]/[#1176], thanks [@aravindet] & [@pzhine])
568
- - [`dynamic-import-chunkname`]: Add proper webpack comment parsing ([#1163], thanks [@st-sloth])
569
- - [`named`]: fix destructuring assignment ([#1232], thanks [@ljqx])
570
-
571
- ## [2.14.0] - 2018-08-13
572
-
573
- ### Added
574
- - [`no-useless-path-segments`]: add commonJS (CJS) support ([#1128], thanks [@1pete])
575
- - [`namespace`]: add JSX check ([#1151], thanks [@jf248])
576
-
577
- ### Fixed
578
- - [`no-cycle`]: ignore Flow imports ([#1126], thanks [@gajus])
579
- - fix Flow type imports ([#1106], thanks [@syymza])
580
- - [`no-relative-parent-imports`]: resolve paths ([#1135], thanks [@chrislloyd])
581
- - [`order`]: fix autofixer when using typescript-eslint-parser ([#1137], thanks [@justinanastos])
582
- - repeat fix from [#797] for [#717], in another place (thanks [@ljharb])
583
-
584
- ### Refactors
585
- - add explicit support for RestElement alongside ExperimentalRestProperty (thanks [@ljharb])
586
-
587
- ## [2.13.0] - 2018-06-24
588
-
589
- ### Added
590
- - Add ESLint 5 support ([#1122], thanks [@ai] and [@ljharb])
591
- - Add [`no-relative-parent-imports`] rule: disallow relative imports from parent directories ([#1093], thanks [@chrislloyd])
592
-
593
- ### Fixed
594
- - `namespace` rule: ensure it works in eslint 5/ecmaVersion 2018 (thanks [@ljharb])
595
-
596
- ## [2.12.0] - 2018-05-17
597
-
598
- ### Added
599
- - Ignore type imports for [`named`] rule ([#931], thanks [@mattijsbliek])
600
- - Add documentation for [`no-useless-path-segments`] rule ([#1068], thanks [@manovotny])
601
- - `packageDir` option for [`no-extraneous-dependencies`] can be array-valued ([#1085], thanks [@hulkish])
602
-
603
- ## [2.11.0] - 2018-04-09
604
-
605
- ### Added
606
- - Fixer for [`first`] ([#1046], thanks [@fengkfengk])
607
- - `allow-require` option for [`no-commonjs`] rule ([#880], thanks [@futpib])
608
-
609
- ### Fixed
610
- - memory/CPU regression where ASTs were held in memory ([#1058], thanks [@klimashkin]/[@lukeapage])
611
-
612
- ## [2.10.0] - 2018-03-29
613
-
614
- ### Added
615
- - Autofixer for [`order`] rule ([#908], thanks [@tihonove])
616
- - Add [`no-cycle`] rule: reports import cycles.
617
-
618
- ## [2.9.0] - 2018-02-21
619
-
620
- ### Added
621
- - Add [`group-exports`] rule: style-guide rule to report use of multiple named exports ([#721], thanks [@robertrossmann])
622
- - Add [`no-self-import`] rule: forbids a module from importing itself. ([#727], [#449], [#447], thanks [@giodamelio]).
623
- - Add [`no-default-export`] rule ([#889], thanks [@isiahmeadows])
624
- - Add [`no-useless-path-segments`] rule ([#912], thanks [@graingert] and [@danny-andrews])
625
- - ... and more! check the commits for v[2.9.0]
626
-
627
- ## [2.8.0] - 2017-10-18
628
- ### Added
629
- - [`exports-last`] rule ([#620] + [#632], thanks [@k15a])
630
-
631
- ### Changed
632
- - Case-sensitivity checking ignores working directory and ancestors. ([#720] + [#858], thanks [@laysent])
633
-
634
- ### Fixed
635
- - support scoped modules containing hyphens ([#744], thanks [@rosswarren])
636
- - core-modules now resolves files inside declared modules ([#886] / [#891], thanks [@mplewis])
637
- - TypeError for missing AST fields from TypeScript ([#842] / [#944], thanks [@alexgorbatchev])
638
-
639
- ## [2.7.0] - 2017-07-06
640
-
641
- ### Changed
642
- - [`no-absolute-path`] picks up speed boost, optional AMD support ([#843], thanks [@jseminck])
643
-
644
- ## [2.6.1] - 2017-06-29
645
-
646
- ### Fixed
647
- - update bundled node resolver dependency to latest version
648
-
649
- ## [2.6.0] - 2017-06-23
650
-
651
- ### Changed
652
- - update tests / peerDeps for ESLint 4.0 compatibility ([#871], thanks [@mastilver])
653
- - [`memo-parser`] updated to require `filePath` on parser options as it melts
654
- down if it's not there, now that this plugin always provides it. (see [#863])
655
-
656
- ## [2.5.0] - 2017-06-22
657
-
658
- Re-releasing v[2.4.0] after discovering that the memory leak is isolated to the [`memo-parser`],
659
- which is more or less experimental anyway.
660
-
661
- ### Added
662
- - Autofixer for newline-after-import. ([#686] + [#696], thanks [@eelyafi])
663
-
664
- ## [2.4.0] - 2017-06-02 [YANKED]
665
-
666
- Yanked due to critical issue in eslint-module-utils with cache key resulting from [#839].
667
-
668
- ### Added
669
- - Add `filePath` into `parserOptions` passed to `parser` ([#839], thanks [@sompylasar])
670
- - Add `allow` option to [`no-unassigned-import`] to allow for files that match the globs ([#671], [#737], thanks [@kevin940726]).
671
-
672
- ## [2.3.0] - 2017-05-18
673
-
674
- ### Added
675
- - [`no-anonymous-default-export`] rule: report anonymous default exports ([#712], thanks [@duncanbeevers]).
676
- - Add new value to [`order`]'s `newlines-between` option to allow newlines inside import groups ([#627], [#628], thanks [@giodamelio])
677
- - Add `count` option to the [`newline-after-import`] rule to allow configuration of number of newlines expected ([#742], thanks [@ntdb])
678
-
679
- ### Changed
680
- - [`no-extraneous-dependencies`]: use `read-pkg-up` to simplify finding + loading `package.json` ([#680], thanks [@wtgtybhertgeghgtwtg])
681
- - Add support to specify the package.json [`no-extraneous-dependencies`] ([#685], thanks [@ramasilveyra])
682
-
683
- ### Fixed
684
- - attempt to fix crash in [`no-mutable-exports`]. ([#660])
685
- - "default is a reserved keyword" in no-maned-default tests by locking down babylon to 6.15.0 (#756, thanks @gmathieu)
686
- - support scoped modules containing non word characters
687
-
688
- ## [2.2.0] - 2016-11-07
689
-
690
- ### Fixed
691
- - Corrected a few gaffs in the auto-ignore logic to fix major performance issues
692
- with projects that did not explicitly ignore `node_modules`. ([#654])
693
- - [`import/ignore` setting] was only being respected if the ignored module didn't start with
694
- an `import` or `export` JS statement
695
- - [`prefer-default-export`]: fixed crash on export extensions ([#653])
696
-
697
- ## [2.1.0] - 2016-11-02
698
-
699
- ### Added
700
- - Add [`no-named-default`] rule: style-guide rule to report use of unnecessarily named default imports ([#596], thanks [@ntdb])
701
- - [`no-extraneous-dependencies`]: check globs against CWD + absolute path ([#602] + [#630], thanks [@ljharb])
702
-
703
- ### Fixed
704
- - [`prefer-default-export`] handles flow `export type` ([#484] + [#639], thanks [@jakubsta])
705
- - [`prefer-default-export`] handles re-exported default exports ([#609])
706
- - Fix crash when using [`newline-after-import`] with decorators ([#592])
707
- - Properly report [`newline-after-import`] when next line is a decorator
708
- - Fixed documentation for the default values for the [`order`] rule ([#601])
709
-
710
- ## [2.0.1] - 2016-10-06
711
-
712
- ### Fixed
713
- - Fixed code that relied on removed dependencies. ([#604])
714
-
715
- ## [2.0.0]! - 2016-09-30
716
-
717
- ### Added
718
- - [`unambiguous`] rule: report modules that are not unambiguously ES modules.
719
- - `recommended` shared config. Roughly `errors` and `warnings` mixed together,
720
- with some `parserOptions` in the mix. ([#402])
721
- - `react` shared config: added `jsx: true` to `parserOptions.ecmaFeatures`.
722
- - Added [`no-webpack-loader-syntax`] rule: forbid custom Webpack loader syntax in imports. ([#586], thanks [@fson]!)
723
- - Add option `newlines-between: "ignore"` to [`order`] ([#519])
724
- - Added [`no-unassigned-import`] rule ([#529])
725
-
726
- ### Breaking
727
- - [`import/extensions` setting] defaults to `['.js']`. ([#306])
728
- - [`import/ignore` setting] defaults to nothing, and ambiguous modules are ignored natively. This means importing from CommonJS modules will no longer be reported by [`default`], [`named`], or [`namespace`], regardless of `import/ignore`. ([#270])
729
- - [`newline-after-import`]: Removed need for an empty line after an inline `require` call ([#570])
730
- - [`order`]: Default value for `newlines-between` option is now `ignore` ([#519])
731
-
732
- ### Changed
733
- - `imports-first` is renamed to [`first`]. `imports-first` alias will continue to
734
- exist, but may be removed in a future major release.
735
- - Case-sensitivity: now specifically (and optionally) reported by [`no-unresolved`].
736
- Other rules will ignore case-mismatches on paths on case-insensitive filesystems. ([#311])
737
-
738
- ### Fixed
739
- - [`no-internal-modules`]: support `@`-scoped packages ([#577]+[#578], thanks [@spalger])
740
-
741
- ## [1.16.0] - 2016-09-22
742
-
743
- ### Added
744
- - Added [`no-dynamic-require`] rule: forbid `require()` calls with expressions. ([#567], [#568])
745
- - Added [`no-internal-modules`] rule: restrict deep package imports to specific folders. ([#485], thanks [@spalger]!)
746
- - [`extensions`]: allow override of a chosen default with options object ([#555], thanks [@ljharb]!)
747
-
748
- ### Fixed
749
- - [`no-named-as-default`] no longer false-positives on `export default from '...'` ([#566], thanks [@preco21])
750
- - [`default`]: allow re-export of values from ignored files as default ([#545], thanks [@skyrpex])
751
-
752
- ## [1.15.0] - 2016-09-12
753
-
754
- ### Added
755
- - Added an `allow` option to [`no-nodejs-modules`] to allow exceptions ([#452], [#509]).
756
- - Added [`no-absolute-path`] rule ([#530], [#538])
757
- - [`max-dependencies`] for specifying the maximum number of dependencies (both `import` and `require`) a module can have. (see [#489], thanks [@tizmagik])
758
- - Added glob option to config for [`no-extraneous-dependencies`], after much bikeshedding. Thanks, [@knpwrs]! ([#527])
759
-
760
- ### Fixed
761
- - [`no-named-as-default-member`] Allow default import to have a property named "default" ([#507], [#508], thanks [@jquense] for both!)
762
-
763
- ## [1.14.0] - 2016-08-22
764
-
765
- ### Added
766
- - [`import/parsers` setting]: parse some dependencies (i.e. TypeScript!) with a different parser than the ESLint-configured parser. ([#503])
767
-
768
- ### Fixed
769
- - [`namespace`] exception for get property from `namespace` import, which are re-export from commonjs module ([#499] fixes [#416], thanks [@wKich])
770
-
771
- ## [1.13.0] - 2016-08-11
772
-
773
- ### Added
774
- - `allowComputed` option for [`namespace`] rule. If set to `true`, won't report
775
- computed member references to namespaces. (see [#456])
776
-
777
- ### Changed
778
- - Modified [`no-nodejs-modules`] error message to include the module's name ([#453], [#461])
779
-
780
- ### Fixed
781
- - [`import/extensions` setting] is respected in spite of the appearance of imports
782
- in an imported file. (fixes [#478], thanks [@rhys-vdw])
783
-
784
- ## [1.12.0] - 2016-07-26
785
-
786
- ### Added
787
- - [`import/external-module-folders` setting]: a possibility to configure folders for "external" modules ([#444], thanks [@zloirock])
788
-
789
- ## [1.11.1] - 2016-07-20
790
-
791
- ### Fixed
792
- - [`newline-after-import`] exception for `switch` branches with `require`s iff parsed as `sourceType:'module'`.
793
- (still [#441], thanks again [@ljharb])
794
-
795
- ## [1.11.0] - 2016-07-17
796
-
797
- ### Added
798
- - Added an `peerDependencies` option to [`no-extraneous-dependencies`] to allow/forbid peer dependencies ([#423], [#428], thanks [@jfmengels]!).
799
-
800
- ### Fixed
801
- - [`newline-after-import`] exception for multiple `require`s in an arrow
802
- function expression (e.g. `() => require('a') || require('b')`). ([#441], thanks [@ljharb])
803
-
804
- ## [1.10.3] - 2016-07-08
805
-
806
- ### Fixed
807
- - removing `Symbol` dependencies (i.e. `for-of` loops) due to Node 0.10 polyfill
808
- issue (see [#415]). Should not make any discernible semantic difference.
809
-
810
- ## [1.10.2] - 2016-07-04
811
-
812
- ### Fixed
813
- - Something horrible happened during `npm prepublish` of 1.10.1.
814
- Several `rm -rf node_modules && npm i` and `gulp clean && npm prepublish`s later, it is rebuilt and republished as 1.10.2. Thanks [@rhettlivingston] for noticing and reporting!
815
-
816
- ## [1.10.1] - 2016-07-02 [YANKED]
817
-
818
- ### Added
819
- - Officially support ESLint 3.x. (peerDependencies updated to `2.x - 3.x`)
820
-
821
- ## [1.10.0] - 2016-06-30
822
-
823
- ### Added
824
- - Added new rule [`no-restricted-paths`]. ([#155]/[#371], thanks [@lo1tuma])
825
- - [`import/core-modules` setting]: allow configuration of additional module names,
826
- to be treated as builtin modules (a la `path`, etc. in Node). ([#275] + [#365], thanks [@sindresorhus] for driving)
827
- - React Native shared config (based on comment from [#283])
828
-
829
- ### Fixed
830
- - Fixed crash with `newline-after-import` related to the use of switch cases. (fixes [#386], thanks [@ljharb] for reporting) ([#395])
831
-
832
- ## [1.9.2] - 2016-06-21
833
-
834
- ### Fixed
835
- - Issues with ignored/CJS files in [`export`] and [`no-deprecated`] rules. ([#348], [#370])
836
-
837
- ## [1.9.1] - 2016-06-16
838
-
839
- ### Fixed
840
- - Reordered precedence for loading resolvers. ([#373])
841
-
842
- ## [1.9.0] - 2016-06-10
843
-
844
- ### Added
845
- - Added support TomDoc comments to [`no-deprecated`]. ([#321], thanks [@josh])
846
- - Added support for loading custom resolvers ([#314], thanks [@le0nik])
847
-
848
- ### Fixed
849
- - [`prefer-default-export`] handles `export function` and `export const` in same file ([#359], thanks [@scottnonnenberg])
850
-
851
- ## [1.8.1] - 2016-05-23
852
-
853
- ### Fixed
854
- - `export * from 'foo'` now properly ignores a `default` export from `foo`, if any. ([#328]/[#332], thanks [@jkimbo])
855
- This impacts all static analysis of imported names. ([`default`], [`named`], [`namespace`], [`export`])
856
- - Make [`order`]'s `newline-between` option handle multiline import statements ([#313], thanks [@singles])
857
- - Make [`order`]'s `newline-between` option handle not assigned import statements ([#313], thanks [@singles])
858
- - Make [`order`]'s `newline-between` option ignore `require` statements inside object literals ([#313], thanks [@singles])
859
- - [`prefer-default-export`] properly handles deep destructuring, `export * from ...`, and files with no exports. ([#342]+[#343], thanks [@scottnonnenberg])
860
-
861
- ## [1.8.0] - 2016-05-11
862
-
863
- ### Added
864
- - [`prefer-default-export`], new rule. ([#308], thanks [@gavriguy])
865
-
866
- ### Fixed
867
- - Ignore namespace / ES7 re-exports in [`no-mutable-exports`]. ([#317], fixed by [#322]. thanks [@borisyankov] + [@jfmengels])
868
- - Make [`no-extraneous-dependencies`] handle scoped packages ([#316], thanks [@jfmengels])
869
-
870
- ## [1.7.0] - 2016-05-06
871
-
872
- ### Added
873
- - [`newline-after-import`], new rule. ([#245], thanks [@singles])
874
- - Added an `optionalDependencies` option to [`no-extraneous-dependencies`] to allow/forbid optional dependencies ([#266], thanks [@jfmengels]).
875
- - Added `newlines-between` option to [`order`] rule ([#298], thanks [@singles])
876
- - add [`no-mutable-exports`] rule ([#290], thanks [@josh])
877
- - [`import/extensions` setting]: a list of file extensions to parse as modules
878
- and search for `export`s. If unspecified, all extensions are considered valid (for now).
879
- In v2, this will likely default to `['.js', MODULE_EXT]`. ([#297], to fix [#267])
880
-
881
- ### Fixed
882
- - [`extensions`]: fallback to source path for extension enforcement if imported
883
- module is not resolved. Also, never report for builtins (i.e. `path`). ([#296])
884
-
885
- ## [1.6.1] - 2016-04-28
886
-
887
- ### Fixed
888
- - [`no-named-as-default-member`]: don't crash on rest props. ([#281], thanks [@SimenB])
889
- - support for Node 6: don't pass `null` to `path` functions.
890
- Thanks to [@strawbrary] for bringing this up ([#272]) and adding OSX support to the Travis
891
- config ([#288]).
892
-
893
- ## [1.6.0] - 2016-04-25
894
-
895
- ### Added
896
- - add [`no-named-as-default-member`] to `warnings` canned config
897
- - add [`no-extraneous-dependencies`] rule ([#241], thanks [@jfmengels])
898
- - add [`extensions`] rule ([#250], thanks [@lo1tuma])
899
- - add [`no-nodejs-modules`] rule ([#261], thanks [@jfmengels])
900
- - add [`order`] rule ([#247], thanks [@jfmengels])
901
- - consider `resolve.fallback` config option in the webpack resolver ([#254])
902
-
903
- ### Changed
904
- - [`imports-first`] now allows directives (i.e. `'use strict'`) strictly before
905
- any imports ([#256], thanks [@lemonmade])
906
-
907
- ### Fixed
908
- - [`named`] now properly ignores the source module if a name is re-exported from
909
- an ignored file (i.e. `node_modules`). Also improved the reported error. (thanks to [@jimbolla] for reporting)
910
- - [`no-named-as-default-member`] had a crash on destructuring in loops (thanks for heads up from [@lemonmade])
911
-
912
- ## [1.5.0] - 2016-04-18
913
-
914
- ### Added
915
- - report resolver errors at the top of the linted file
916
- - add [`no-namespace`] rule ([#239], thanks [@singles])
917
- - add [`no-named-as-default-member`] rule ([#243], thanks [@dmnd])
918
-
919
- ### Changed
920
- - Rearranged rule groups in README in preparation for more style guide rules
921
-
922
- ### Removed
923
- - support for Node 0.10, via `es6-*` ponyfills. Using native Map/Set/Symbol.
924
-
925
- ## [1.4.0] - 2016-03-25
926
-
927
- ### Added
928
- - Resolver plugin interface v2: more explicit response format that more clearly covers the found-but-core-module case, where there is no path.
929
- Still backwards-compatible with the original version of the resolver spec.
930
- - [Resolver documentation](./resolvers/README.md)
931
-
932
- ### Changed
933
- - using `package.json/files` instead of `.npmignore` for package file inclusion ([#228], thanks [@mathieudutour])
934
- - using `es6-*` ponyfills instead of `babel-runtime`
935
-
936
- ## [1.3.0] - 2016-03-20
937
-
938
- Major perf improvements. Between parsing only once and ignoring gigantic, non-module `node_modules`,
939
- there is very little added time.
940
-
941
- My test project takes 17s to lint completely, down from 55s, when using the
942
- memoizing parser, and takes only 27s with naked `babel-eslint` (thus, reparsing local modules).
943
-
944
- ### Added
945
- - This change log ([#216])
946
- - Experimental memoizing [parser](./memo-parser/README.md)
947
-
948
- ### Fixed
949
- - Huge reduction in execution time by _only_ ignoring [`import/ignore` setting] if
950
- something that looks like an `export` is detected in the module content.
951
-
952
- ## [1.2.0] - 2016-03-19
953
-
954
- Thanks [@lencioni] for identifying a huge amount of rework in resolve and kicking
955
- off a bunch of memoization.
956
-
957
- I'm seeing 62% improvement over my normal test codebase when executing only
958
- [`no-unresolved`] in isolation, and ~35% total reduction in lint time.
959
-
960
- ### Changed
961
- - added caching to core/resolve via [#214], configured via [`import/cache` setting]
962
-
963
- ## [1.1.0] - 2016-03-15
964
-
965
- ### Added
966
- - Added an [`ignore`](./docs/rules/no-unresolved.md#ignore) option to [`no-unresolved`] for those pesky files that no resolver can find. (still prefer enhancing the Webpack and Node resolvers to using it, though). See [#89] for details.
967
-
968
- ## [1.0.4] - 2016-03-11
969
-
970
- ### Changed
971
- - respect hoisting for deep namespaces ([`namespace`]/[`no-deprecated`]) ([#211])
972
-
973
- ### Fixed
974
- - don't crash on self references ([#210])
975
- - correct cache behavior in `eslint_d` for deep namespaces ([#200])
976
-
977
- ## [1.0.3] - 2016-02-26
978
-
979
- ### Changed
980
- - no-deprecated follows deep namespaces ([#191])
981
-
982
- ### Fixed
983
- - [`namespace`] no longer flags modules with only a default export as having no names. (ns.default is valid ES6)
984
-
985
- ## [1.0.2] - 2016-02-26
986
-
987
- ### Fixed
988
- - don't parse imports with no specifiers ([#192])
989
-
990
- ## [1.0.1] - 2016-02-25
991
-
992
- ### Fixed
993
- - export `stage-0` shared config
994
- - documented [`no-deprecated`]
995
- - deep namespaces are traversed regardless of how they get imported ([#189])
996
-
997
- ## [1.0.0] - 2016-02-24
998
-
999
- ### Added
1000
- - [`no-deprecated`]: WIP rule to let you know at lint time if you're using deprecated functions, constants, classes, or modules.
1001
-
1002
- ### Changed
1003
- - [`namespace`]: support deep namespaces ([#119] via [#157])
1004
-
1005
- ## [1.0.0-beta.0] - 2016-02-13
1006
-
1007
- ### Changed
1008
- - support for (only) ESLint 2.x
1009
- - no longer needs/refers to `import/parser` or `import/parse-options`. Instead, ESLint provides the configured parser + options to the rules, and they use that to parse dependencies.
1010
-
1011
- ### Removed
1012
-
1013
- - `babylon` as default import parser (see Breaking)
1014
-
1015
- ## [0.13.0] - 2016-02-08
1016
-
1017
- ### Added
1018
- - [`no-commonjs`] rule
1019
- - [`no-amd`] rule
1020
-
1021
- ### Removed
1022
- - Removed vestigial `no-require` rule. [`no-commonjs`] is more complete.
1023
-
1024
- ## [0.12.2] - 2016-02-06 [YANKED]
1025
-
1026
- Unpublished from npm and re-released as 0.13.0. See [#170].
1027
-
1028
- ## [0.12.1] - 2015-12-17
1029
-
1030
- ### Changed
1031
- - Broke docs for rules out into individual files.
1032
-
1033
- ## [0.12.0] - 2015-12-14
1034
-
1035
- ### Changed
1036
- - Ignore [`import/ignore` setting] if exports are actually found in the parsed module. Does this to support use of `jsnext:main` in `node_modules` without the pain of managing an allow list or a nuanced deny list.
1037
-
1038
- ## [0.11.0] - 2015-11-27
1039
-
1040
- ### Added
1041
- - Resolver plugins. Now the linter can read Webpack config, properly follow aliases and ignore externals, dismisses inline loaders, etc. etc.!
1042
-
1043
- ## Earlier releases (0.10.1 and younger)
1044
- See [GitHub release notes](https://github.com/import-js/eslint-plugin-import/releases?after=v0.11.0)
1045
- for info on changes for earlier releases.
1046
-
1047
-
1048
- [`import/cache` setting]: ./README.md#importcache
1049
- [`import/ignore` setting]: ./README.md#importignore
1050
- [`import/extensions` setting]: ./README.md#importextensions
1051
- [`import/parsers` setting]: ./README.md#importparsers
1052
- [`import/core-modules` setting]: ./README.md#importcore-modules
1053
- [`import/external-module-folders` setting]: ./README.md#importexternal-module-folders
1054
- [`internal-regex` setting]: ./README.md#importinternal-regex
1055
-
1056
- [`consistent-type-specifier-style`]: ./docs/rules/consistent-type-specifier-style.md
1057
- [`default`]: ./docs/rules/default.md
1058
- [`dynamic-import-chunkname`]: ./docs/rules/dynamic-import-chunkname.md
1059
- [`export`]: ./docs/rules/export.md
1060
- [`exports-last`]: ./docs/rules/exports-last.md
1061
- [`extensions`]: ./docs/rules/extensions.md
1062
- [`first`]: ./docs/rules/first.md
1063
- [`group-exports`]: ./docs/rules/group-exports.md
1064
- [`imports-first`]: ./docs/rules/first.md
1065
- [`max-dependencies`]: ./docs/rules/max-dependencies.md
1066
- [`named`]: ./docs/rules/named.md
1067
- [`namespace`]: ./docs/rules/namespace.md
1068
- [`newline-after-import`]: ./docs/rules/newline-after-import.md
1069
- [`no-absolute-path`]: ./docs/rules/no-absolute-path.md
1070
- [`no-amd`]: ./docs/rules/no-amd.md
1071
- [`no-anonymous-default-export`]: ./docs/rules/no-anonymous-default-export.md
1072
- [`no-commonjs`]: ./docs/rules/no-commonjs.md
1073
- [`no-cycle`]: ./docs/rules/no-cycle.md
1074
- [`no-default-export`]: ./docs/rules/no-default-export.md
1075
- [`no-deprecated`]: ./docs/rules/no-deprecated.md
1076
- [`no-duplicates`]: ./docs/rules/no-duplicates.md
1077
- [`no-dynamic-require`]: ./docs/rules/no-dynamic-require.md
1078
- [`no-empty-named-blocks`]: ./docs/rules/no-empty-named-blocks.md
1079
- [`no-extraneous-dependencies`]: ./docs/rules/no-extraneous-dependencies.md
1080
- [`no-import-module-exports`]: ./docs/rules/no-import-module-exports.md
1081
- [`no-internal-modules`]: ./docs/rules/no-internal-modules.md
1082
- [`no-mutable-exports`]: ./docs/rules/no-mutable-exports.md
1083
- [`no-named-as-default-member`]: ./docs/rules/no-named-as-default-member.md
1084
- [`no-named-as-default`]: ./docs/rules/no-named-as-default.md
1085
- [`no-named-default`]: ./docs/rules/no-named-default.md
1086
- [`no-named-export`]: ./docs/rules/no-named-export.md
1087
- [`no-namespace`]: ./docs/rules/no-namespace.md
1088
- [`no-nodejs-modules`]: ./docs/rules/no-nodejs-modules.md
1089
- [`no-relative-packages`]: ./docs/rules/no-relative-packages.md
1090
- [`no-relative-parent-imports`]: ./docs/rules/no-relative-parent-imports.md
1091
- [`no-restricted-paths`]: ./docs/rules/no-restricted-paths.md
1092
- [`no-self-import`]: ./docs/rules/no-self-import.md
1093
- [`no-unassigned-import`]: ./docs/rules/no-unassigned-import.md
1094
- [`no-unresolved`]: ./docs/rules/no-unresolved.md
1095
- [`no-unused-modules`]: ./docs/rules/no-unused-modules.md
1096
- [`no-useless-path-segments`]: ./docs/rules/no-useless-path-segments.md
1097
- [`no-webpack-loader-syntax`]: ./docs/rules/no-webpack-loader-syntax.md
1098
- [`order`]: ./docs/rules/order.md
1099
- [`prefer-default-export`]: ./docs/rules/prefer-default-export.md
1100
- [`unambiguous`]: ./docs/rules/unambiguous.md
1101
-
1102
- [`memo-parser`]: ./memo-parser/README.md
1103
-
1104
- [#2919]: https://github.com/import-js/eslint-plugin-import/pull/2919
1105
- [#2884]: https://github.com/import-js/eslint-plugin-import/pull/2884
1106
- [#2854]: https://github.com/import-js/eslint-plugin-import/pull/2854
1107
- [#2851]: https://github.com/import-js/eslint-plugin-import/pull/2851
1108
- [#2850]: https://github.com/import-js/eslint-plugin-import/pull/2850
1109
- [#2842]: https://github.com/import-js/eslint-plugin-import/pull/2842
1110
- [#2835]: https://github.com/import-js/eslint-plugin-import/pull/2835
1111
- [#2832]: https://github.com/import-js/eslint-plugin-import/pull/2832
1112
- [#2778]: https://github.com/import-js/eslint-plugin-import/pull/2778
1113
- [#2756]: https://github.com/import-js/eslint-plugin-import/pull/2756
1114
- [#2754]: https://github.com/import-js/eslint-plugin-import/pull/2754
1115
- [#2748]: https://github.com/import-js/eslint-plugin-import/pull/2748
1116
- [#2735]: https://github.com/import-js/eslint-plugin-import/pull/2735
1117
- [#2699]: https://github.com/import-js/eslint-plugin-import/pull/2699
1118
- [#2664]: https://github.com/import-js/eslint-plugin-import/pull/2664
1119
- [#2613]: https://github.com/import-js/eslint-plugin-import/pull/2613
1120
- [#2608]: https://github.com/import-js/eslint-plugin-import/pull/2608
1121
- [#2605]: https://github.com/import-js/eslint-plugin-import/pull/2605
1122
- [#2602]: https://github.com/import-js/eslint-plugin-import/pull/2602
1123
- [#2598]: https://github.com/import-js/eslint-plugin-import/pull/2598
1124
- [#2589]: https://github.com/import-js/eslint-plugin-import/pull/2589
1125
- [#2588]: https://github.com/import-js/eslint-plugin-import/pull/2588
1126
- [#2582]: https://github.com/import-js/eslint-plugin-import/pull/2582
1127
- [#2570]: https://github.com/import-js/eslint-plugin-import/pull/2570
1128
- [#2568]: https://github.com/import-js/eslint-plugin-import/pull/2568
1129
- [#2546]: https://github.com/import-js/eslint-plugin-import/pull/2546
1130
- [#2541]: https://github.com/import-js/eslint-plugin-import/pull/2541
1131
- [#2531]: https://github.com/import-js/eslint-plugin-import/pull/2531
1132
- [#2511]: https://github.com/import-js/eslint-plugin-import/pull/2511
1133
- [#2506]: https://github.com/import-js/eslint-plugin-import/pull/2506
1134
- [#2503]: https://github.com/import-js/eslint-plugin-import/pull/2503
1135
- [#2490]: https://github.com/import-js/eslint-plugin-import/pull/2490
1136
- [#2475]: https://github.com/import-js/eslint-plugin-import/pull/2475
1137
- [#2473]: https://github.com/import-js/eslint-plugin-import/pull/2473
1138
- [#2466]: https://github.com/import-js/eslint-plugin-import/pull/2466
1139
- [#2459]: https://github.com/import-js/eslint-plugin-import/pull/2459
1140
- [#2440]: https://github.com/import-js/eslint-plugin-import/pull/2440
1141
- [#2438]: https://github.com/import-js/eslint-plugin-import/pull/2438
1142
- [#2436]: https://github.com/import-js/eslint-plugin-import/pull/2436
1143
- [#2427]: https://github.com/import-js/eslint-plugin-import/pull/2427
1144
- [#2424]: https://github.com/import-js/eslint-plugin-import/pull/2424
1145
- [#2419]: https://github.com/import-js/eslint-plugin-import/pull/2419
1146
- [#2417]: https://github.com/import-js/eslint-plugin-import/pull/2417
1147
- [#2411]: https://github.com/import-js/eslint-plugin-import/pull/2411
1148
- [#2399]: https://github.com/import-js/eslint-plugin-import/pull/2399
1149
- [#2396]: https://github.com/import-js/eslint-plugin-import/pull/2396
1150
- [#2395]: https://github.com/import-js/eslint-plugin-import/pull/2395
1151
- [#2393]: https://github.com/import-js/eslint-plugin-import/pull/2393
1152
- [#2388]: https://github.com/import-js/eslint-plugin-import/pull/2388
1153
- [#2387]: https://github.com/import-js/eslint-plugin-import/pull/2387
1154
- [#2381]: https://github.com/import-js/eslint-plugin-import/pull/2381
1155
- [#2378]: https://github.com/import-js/eslint-plugin-import/pull/2378
1156
- [#2374]: https://github.com/import-js/eslint-plugin-import/pull/2374
1157
- [#2371]: https://github.com/import-js/eslint-plugin-import/pull/2371
1158
- [#2367]: https://github.com/import-js/eslint-plugin-import/pull/2367
1159
- [#2358]: https://github.com/import-js/eslint-plugin-import/pull/2358
1160
- [#2341]: https://github.com/import-js/eslint-plugin-import/pull/2341
1161
- [#2332]: https://github.com/import-js/eslint-plugin-import/pull/2332
1162
- [#2334]: https://github.com/import-js/eslint-plugin-import/pull/2334
1163
- [#2330]: https://github.com/import-js/eslint-plugin-import/pull/2330
1164
- [#2315]: https://github.com/import-js/eslint-plugin-import/pull/2315
1165
- [#2305]: https://github.com/import-js/eslint-plugin-import/pull/2305
1166
- [#2299]: https://github.com/import-js/eslint-plugin-import/pull/2299
1167
- [#2297]: https://github.com/import-js/eslint-plugin-import/pull/2297
1168
- [#2287]: https://github.com/import-js/eslint-plugin-import/pull/2287
1169
- [#2282]: https://github.com/import-js/eslint-plugin-import/pull/2282
1170
- [#2280]: https://github.com/import-js/eslint-plugin-import/pull/2280
1171
- [#2279]: https://github.com/import-js/eslint-plugin-import/pull/2279
1172
- [#2272]: https://github.com/import-js/eslint-plugin-import/pull/2272
1173
- [#2271]: https://github.com/import-js/eslint-plugin-import/pull/2271
1174
- [#2270]: https://github.com/import-js/eslint-plugin-import/pull/2270
1175
- [#2240]: https://github.com/import-js/eslint-plugin-import/pull/2240
1176
- [#2233]: https://github.com/import-js/eslint-plugin-import/pull/2233
1177
- [#2226]: https://github.com/import-js/eslint-plugin-import/pull/2226
1178
- [#2220]: https://github.com/import-js/eslint-plugin-import/pull/2220
1179
- [#2219]: https://github.com/import-js/eslint-plugin-import/pull/2219
1180
- [#2212]: https://github.com/import-js/eslint-plugin-import/pull/2212
1181
- [#2196]: https://github.com/import-js/eslint-plugin-import/pull/2196
1182
- [#2194]: https://github.com/import-js/eslint-plugin-import/pull/2194
1183
- [#2191]: https://github.com/import-js/eslint-plugin-import/pull/2191
1184
- [#2184]: https://github.com/import-js/eslint-plugin-import/pull/2184
1185
- [#2179]: https://github.com/import-js/eslint-plugin-import/pull/2179
1186
- [#2160]: https://github.com/import-js/eslint-plugin-import/pull/2160
1187
- [#2158]: https://github.com/import-js/eslint-plugin-import/pull/2158
1188
- [#2156]: https://github.com/import-js/eslint-plugin-import/pull/2156
1189
- [#2149]: https://github.com/import-js/eslint-plugin-import/pull/2149
1190
- [#2146]: https://github.com/import-js/eslint-plugin-import/pull/2146
1191
- [#2140]: https://github.com/import-js/eslint-plugin-import/pull/2140
1192
- [#2138]: https://github.com/import-js/eslint-plugin-import/pull/2138
1193
- [#2121]: https://github.com/import-js/eslint-plugin-import/pull/2121
1194
- [#2112]: https://github.com/import-js/eslint-plugin-import/pull/2112
1195
- [#2099]: https://github.com/import-js/eslint-plugin-import/pull/2099
1196
- [#2097]: https://github.com/import-js/eslint-plugin-import/pull/2097
1197
- [#2090]: https://github.com/import-js/eslint-plugin-import/pull/2090
1198
- [#2087]: https://github.com/import-js/eslint-plugin-import/pull/2087
1199
- [#2083]: https://github.com/import-js/eslint-plugin-import/pull/2083
1200
- [#2075]: https://github.com/import-js/eslint-plugin-import/pull/2075
1201
- [#2071]: https://github.com/import-js/eslint-plugin-import/pull/2071
1202
- [#2047]: https://github.com/import-js/eslint-plugin-import/pull/2047
1203
- [#2034]: https://github.com/import-js/eslint-plugin-import/pull/2034
1204
- [#2028]: https://github.com/import-js/eslint-plugin-import/pull/2028
1205
- [#2026]: https://github.com/import-js/eslint-plugin-import/pull/2026
1206
- [#2022]: https://github.com/import-js/eslint-plugin-import/pull/2022
1207
- [#2021]: https://github.com/import-js/eslint-plugin-import/pull/2021
1208
- [#2012]: https://github.com/import-js/eslint-plugin-import/pull/2012
1209
- [#1997]: https://github.com/import-js/eslint-plugin-import/pull/1997
1210
- [#1993]: https://github.com/import-js/eslint-plugin-import/pull/1993
1211
- [#1990]: https://github.com/import-js/eslint-plugin-import/pull/1990
1212
- [#1985]: https://github.com/import-js/eslint-plugin-import/pull/1985
1213
- [#1983]: https://github.com/import-js/eslint-plugin-import/pull/1983
1214
- [#1974]: https://github.com/import-js/eslint-plugin-import/pull/1974
1215
- [#1958]: https://github.com/import-js/eslint-plugin-import/pull/1958
1216
- [#1948]: https://github.com/import-js/eslint-plugin-import/pull/1948
1217
- [#1947]: https://github.com/import-js/eslint-plugin-import/pull/1947
1218
- [#1944]: https://github.com/import-js/eslint-plugin-import/pull/1944
1219
- [#1940]: https://github.com/import-js/eslint-plugin-import/pull/1940
1220
- [#1897]: https://github.com/import-js/eslint-plugin-import/pull/1897
1221
- [#1889]: https://github.com/import-js/eslint-plugin-import/pull/1889
1222
- [#1878]: https://github.com/import-js/eslint-plugin-import/pull/1878
1223
- [#1860]: https://github.com/import-js/eslint-plugin-import/pull/1860
1224
- [#1848]: https://github.com/import-js/eslint-plugin-import/pull/1848
1225
- [#1847]: https://github.com/import-js/eslint-plugin-import/pull/1847
1226
- [#1846]: https://github.com/import-js/eslint-plugin-import/pull/1846
1227
- [#1836]: https://github.com/import-js/eslint-plugin-import/pull/1836
1228
- [#1835]: https://github.com/import-js/eslint-plugin-import/pull/1835
1229
- [#1833]: https://github.com/import-js/eslint-plugin-import/pull/1833
1230
- [#1831]: https://github.com/import-js/eslint-plugin-import/pull/1831
1231
- [#1830]: https://github.com/import-js/eslint-plugin-import/pull/1830
1232
- [#1824]: https://github.com/import-js/eslint-plugin-import/pull/1824
1233
- [#1823]: https://github.com/import-js/eslint-plugin-import/pull/1823
1234
- [#1822]: https://github.com/import-js/eslint-plugin-import/pull/1822
1235
- [#1820]: https://github.com/import-js/eslint-plugin-import/pull/1820
1236
- [#1819]: https://github.com/import-js/eslint-plugin-import/pull/1819
1237
- [#1802]: https://github.com/import-js/eslint-plugin-import/pull/1802
1238
- [#1788]: https://github.com/import-js/eslint-plugin-import/pull/1788
1239
- [#1786]: https://github.com/import-js/eslint-plugin-import/pull/1786
1240
- [#1785]: https://github.com/import-js/eslint-plugin-import/pull/1785
1241
- [#1776]: https://github.com/import-js/eslint-plugin-import/pull/1776
1242
- [#1770]: https://github.com/import-js/eslint-plugin-import/pull/1770
1243
- [#1764]: https://github.com/import-js/eslint-plugin-import/pull/1764
1244
- [#1763]: https://github.com/import-js/eslint-plugin-import/pull/1763
1245
- [#1751]: https://github.com/import-js/eslint-plugin-import/pull/1751
1246
- [#1744]: https://github.com/import-js/eslint-plugin-import/pull/1744
1247
- [#1736]: https://github.com/import-js/eslint-plugin-import/pull/1736
1248
- [#1735]: https://github.com/import-js/eslint-plugin-import/pull/1735
1249
- [#1726]: https://github.com/import-js/eslint-plugin-import/pull/1726
1250
- [#1724]: https://github.com/import-js/eslint-plugin-import/pull/1724
1251
- [#1719]: https://github.com/import-js/eslint-plugin-import/pull/1719
1252
- [#1696]: https://github.com/import-js/eslint-plugin-import/pull/1696
1253
- [#1691]: https://github.com/import-js/eslint-plugin-import/pull/1691
1254
- [#1690]: https://github.com/import-js/eslint-plugin-import/pull/1690
1255
- [#1689]: https://github.com/import-js/eslint-plugin-import/pull/1689
1256
- [#1681]: https://github.com/import-js/eslint-plugin-import/pull/1681
1257
- [#1676]: https://github.com/import-js/eslint-plugin-import/pull/1676
1258
- [#1666]: https://github.com/import-js/eslint-plugin-import/pull/1666
1259
- [#1664]: https://github.com/import-js/eslint-plugin-import/pull/1664
1260
- [#1660]: https://github.com/import-js/eslint-plugin-import/pull/1660
1261
- [#1658]: https://github.com/import-js/eslint-plugin-import/pull/1658
1262
- [#1651]: https://github.com/import-js/eslint-plugin-import/pull/1651
1263
- [#1626]: https://github.com/import-js/eslint-plugin-import/pull/1626
1264
- [#1620]: https://github.com/import-js/eslint-plugin-import/pull/1620
1265
- [#1619]: https://github.com/import-js/eslint-plugin-import/pull/1619
1266
- [#1612]: https://github.com/import-js/eslint-plugin-import/pull/1612
1267
- [#1611]: https://github.com/import-js/eslint-plugin-import/pull/1611
1268
- [#1605]: https://github.com/import-js/eslint-plugin-import/pull/1605
1269
- [#1586]: https://github.com/import-js/eslint-plugin-import/pull/1586
1270
- [#1572]: https://github.com/import-js/eslint-plugin-import/pull/1572
1271
- [#1569]: https://github.com/import-js/eslint-plugin-import/pull/1569
1272
- [#1563]: https://github.com/import-js/eslint-plugin-import/pull/1563
1273
- [#1560]: https://github.com/import-js/eslint-plugin-import/pull/1560
1274
- [#1551]: https://github.com/import-js/eslint-plugin-import/pull/1551
1275
- [#1542]: https://github.com/import-js/eslint-plugin-import/pull/1542
1276
- [#1534]: https://github.com/import-js/eslint-plugin-import/pull/1534
1277
- [#1528]: https://github.com/import-js/eslint-plugin-import/pull/1528
1278
- [#1526]: https://github.com/import-js/eslint-plugin-import/pull/1526
1279
- [#1521]: https://github.com/import-js/eslint-plugin-import/pull/1521
1280
- [#1519]: https://github.com/import-js/eslint-plugin-import/pull/1519
1281
- [#1517]: https://github.com/import-js/eslint-plugin-import/pull/1517
1282
- [#1507]: https://github.com/import-js/eslint-plugin-import/pull/1507
1283
- [#1506]: https://github.com/import-js/eslint-plugin-import/pull/1506
1284
- [#1496]: https://github.com/import-js/eslint-plugin-import/pull/1496
1285
- [#1495]: https://github.com/import-js/eslint-plugin-import/pull/1495
1286
- [#1494]: https://github.com/import-js/eslint-plugin-import/pull/1494
1287
- [#1493]: https://github.com/import-js/eslint-plugin-import/pull/1493
1288
- [#1491]: https://github.com/import-js/eslint-plugin-import/pull/1491
1289
- [#1472]: https://github.com/import-js/eslint-plugin-import/pull/1472
1290
- [#1470]: https://github.com/import-js/eslint-plugin-import/pull/1470
1291
- [#1447]: https://github.com/import-js/eslint-plugin-import/pull/1447
1292
- [#1439]: https://github.com/import-js/eslint-plugin-import/pull/1439
1293
- [#1436]: https://github.com/import-js/eslint-plugin-import/pull/1436
1294
- [#1435]: https://github.com/import-js/eslint-plugin-import/pull/1435
1295
- [#1425]: https://github.com/import-js/eslint-plugin-import/pull/1425
1296
- [#1419]: https://github.com/import-js/eslint-plugin-import/pull/1419
1297
- [#1412]: https://github.com/import-js/eslint-plugin-import/pull/1412
1298
- [#1409]: https://github.com/import-js/eslint-plugin-import/pull/1409
1299
- [#1404]: https://github.com/import-js/eslint-plugin-import/pull/1404
1300
- [#1401]: https://github.com/import-js/eslint-plugin-import/pull/1401
1301
- [#1393]: https://github.com/import-js/eslint-plugin-import/pull/1393
1302
- [#1389]: https://github.com/import-js/eslint-plugin-import/pull/1389
1303
- [#1386]: https://github.com/import-js/eslint-plugin-import/pull/1386
1304
- [#1377]: https://github.com/import-js/eslint-plugin-import/pull/1377
1305
- [#1375]: https://github.com/import-js/eslint-plugin-import/pull/1375
1306
- [#1372]: https://github.com/import-js/eslint-plugin-import/pull/1372
1307
- [#1371]: https://github.com/import-js/eslint-plugin-import/pull/1371
1308
- [#1370]: https://github.com/import-js/eslint-plugin-import/pull/1370
1309
- [#1363]: https://github.com/import-js/eslint-plugin-import/pull/1363
1310
- [#1360]: https://github.com/import-js/eslint-plugin-import/pull/1360
1311
- [#1358]: https://github.com/import-js/eslint-plugin-import/pull/1358
1312
- [#1356]: https://github.com/import-js/eslint-plugin-import/pull/1356
1313
- [#1354]: https://github.com/import-js/eslint-plugin-import/pull/1354
1314
- [#1352]: https://github.com/import-js/eslint-plugin-import/pull/1352
1315
- [#1347]: https://github.com/import-js/eslint-plugin-import/pull/1347
1316
- [#1345]: https://github.com/import-js/eslint-plugin-import/pull/1345
1317
- [#1342]: https://github.com/import-js/eslint-plugin-import/pull/1342
1318
- [#1340]: https://github.com/import-js/eslint-plugin-import/pull/1340
1319
- [#1333]: https://github.com/import-js/eslint-plugin-import/pull/1333
1320
- [#1331]: https://github.com/import-js/eslint-plugin-import/pull/1331
1321
- [#1330]: https://github.com/import-js/eslint-plugin-import/pull/1330
1322
- [#1320]: https://github.com/import-js/eslint-plugin-import/pull/1320
1323
- [#1319]: https://github.com/import-js/eslint-plugin-import/pull/1319
1324
- [#1312]: https://github.com/import-js/eslint-plugin-import/pull/1312
1325
- [#1308]: https://github.com/import-js/eslint-plugin-import/pull/1308
1326
- [#1304]: https://github.com/import-js/eslint-plugin-import/pull/1304
1327
- [#1297]: https://github.com/import-js/eslint-plugin-import/pull/1297
1328
- [#1295]: https://github.com/import-js/eslint-plugin-import/pull/1295
1329
- [#1294]: https://github.com/import-js/eslint-plugin-import/pull/1294
1330
- [#1290]: https://github.com/import-js/eslint-plugin-import/pull/1290
1331
- [#1277]: https://github.com/import-js/eslint-plugin-import/pull/1277
1332
- [#1262]: https://github.com/import-js/eslint-plugin-import/pull/1262
1333
- [#1257]: https://github.com/import-js/eslint-plugin-import/pull/1257
1334
- [#1253]: https://github.com/import-js/eslint-plugin-import/pull/1253
1335
- [#1248]: https://github.com/import-js/eslint-plugin-import/pull/1248
1336
- [#1238]: https://github.com/import-js/eslint-plugin-import/pull/1238
1337
- [#1237]: https://github.com/import-js/eslint-plugin-import/pull/1237
1338
- [#1235]: https://github.com/import-js/eslint-plugin-import/pull/1235
1339
- [#1234]: https://github.com/import-js/eslint-plugin-import/pull/1234
1340
- [#1232]: https://github.com/import-js/eslint-plugin-import/pull/1232
1341
- [#1223]: https://github.com/import-js/eslint-plugin-import/pull/1223
1342
- [#1222]: https://github.com/import-js/eslint-plugin-import/pull/1222
1343
- [#1218]: https://github.com/import-js/eslint-plugin-import/pull/1218
1344
- [#1176]: https://github.com/import-js/eslint-plugin-import/pull/1176
1345
- [#1163]: https://github.com/import-js/eslint-plugin-import/pull/1163
1346
- [#1157]: https://github.com/import-js/eslint-plugin-import/pull/1157
1347
- [#1151]: https://github.com/import-js/eslint-plugin-import/pull/1151
1348
- [#1142]: https://github.com/import-js/eslint-plugin-import/pull/1142
1349
- [#1139]: https://github.com/import-js/eslint-plugin-import/pull/1139
1350
- [#1137]: https://github.com/import-js/eslint-plugin-import/pull/1137
1351
- [#1135]: https://github.com/import-js/eslint-plugin-import/pull/1135
1352
- [#1128]: https://github.com/import-js/eslint-plugin-import/pull/1128
1353
- [#1126]: https://github.com/import-js/eslint-plugin-import/pull/1126
1354
- [#1122]: https://github.com/import-js/eslint-plugin-import/pull/1122
1355
- [#1112]: https://github.com/import-js/eslint-plugin-import/pull/1112
1356
- [#1107]: https://github.com/import-js/eslint-plugin-import/pull/1107
1357
- [#1106]: https://github.com/import-js/eslint-plugin-import/pull/1106
1358
- [#1105]: https://github.com/import-js/eslint-plugin-import/pull/1105
1359
- [#1093]: https://github.com/import-js/eslint-plugin-import/pull/1093
1360
- [#1085]: https://github.com/import-js/eslint-plugin-import/pull/1085
1361
- [#1068]: https://github.com/import-js/eslint-plugin-import/pull/1068
1362
- [#1049]: https://github.com/import-js/eslint-plugin-import/pull/1049
1363
- [#1046]: https://github.com/import-js/eslint-plugin-import/pull/1046
1364
- [#966]: https://github.com/import-js/eslint-plugin-import/pull/966
1365
- [#944]: https://github.com/import-js/eslint-plugin-import/pull/944
1366
- [#912]: https://github.com/import-js/eslint-plugin-import/pull/912
1367
- [#908]: https://github.com/import-js/eslint-plugin-import/pull/908
1368
- [#891]: https://github.com/import-js/eslint-plugin-import/pull/891
1369
- [#889]: https://github.com/import-js/eslint-plugin-import/pull/889
1370
- [#880]: https://github.com/import-js/eslint-plugin-import/pull/880
1371
- [#871]: https://github.com/import-js/eslint-plugin-import/pull/871
1372
- [#858]: https://github.com/import-js/eslint-plugin-import/pull/858
1373
- [#843]: https://github.com/import-js/eslint-plugin-import/pull/843
1374
- [#804]: https://github.com/import-js/eslint-plugin-import/pull/804
1375
- [#797]: https://github.com/import-js/eslint-plugin-import/pull/797
1376
- [#794]: https://github.com/import-js/eslint-plugin-import/pull/794
1377
- [#744]: https://github.com/import-js/eslint-plugin-import/pull/744
1378
- [#742]: https://github.com/import-js/eslint-plugin-import/pull/742
1379
- [#737]: https://github.com/import-js/eslint-plugin-import/pull/737
1380
- [#727]: https://github.com/import-js/eslint-plugin-import/pull/727
1381
- [#721]: https://github.com/import-js/eslint-plugin-import/pull/721
1382
- [#712]: https://github.com/import-js/eslint-plugin-import/pull/712
1383
- [#696]: https://github.com/import-js/eslint-plugin-import/pull/696
1384
- [#685]: https://github.com/import-js/eslint-plugin-import/pull/685
1385
- [#680]: https://github.com/import-js/eslint-plugin-import/pull/680
1386
- [#654]: https://github.com/import-js/eslint-plugin-import/pull/654
1387
- [#639]: https://github.com/import-js/eslint-plugin-import/pull/639
1388
- [#632]: https://github.com/import-js/eslint-plugin-import/pull/632
1389
- [#630]: https://github.com/import-js/eslint-plugin-import/pull/630
1390
- [#629]: https://github.com/import-js/eslint-plugin-import/pull/629
1391
- [#628]: https://github.com/import-js/eslint-plugin-import/pull/628
1392
- [#596]: https://github.com/import-js/eslint-plugin-import/pull/596
1393
- [#586]: https://github.com/import-js/eslint-plugin-import/pull/586
1394
- [#578]: https://github.com/import-js/eslint-plugin-import/pull/578
1395
- [#568]: https://github.com/import-js/eslint-plugin-import/pull/568
1396
- [#555]: https://github.com/import-js/eslint-plugin-import/pull/555
1397
- [#538]: https://github.com/import-js/eslint-plugin-import/pull/538
1398
- [#527]: https://github.com/import-js/eslint-plugin-import/pull/527
1399
- [#518]: https://github.com/import-js/eslint-plugin-import/pull/518
1400
- [#509]: https://github.com/import-js/eslint-plugin-import/pull/509
1401
- [#508]: https://github.com/import-js/eslint-plugin-import/pull/508
1402
- [#503]: https://github.com/import-js/eslint-plugin-import/pull/503
1403
- [#499]: https://github.com/import-js/eslint-plugin-import/pull/499
1404
- [#489]: https://github.com/import-js/eslint-plugin-import/pull/489
1405
- [#485]: https://github.com/import-js/eslint-plugin-import/pull/485
1406
- [#461]: https://github.com/import-js/eslint-plugin-import/pull/461
1407
- [#449]: https://github.com/import-js/eslint-plugin-import/pull/449
1408
- [#444]: https://github.com/import-js/eslint-plugin-import/pull/444
1409
- [#428]: https://github.com/import-js/eslint-plugin-import/pull/428
1410
- [#395]: https://github.com/import-js/eslint-plugin-import/pull/395
1411
- [#371]: https://github.com/import-js/eslint-plugin-import/pull/371
1412
- [#365]: https://github.com/import-js/eslint-plugin-import/pull/365
1413
- [#359]: https://github.com/import-js/eslint-plugin-import/pull/359
1414
- [#343]: https://github.com/import-js/eslint-plugin-import/pull/343
1415
- [#332]: https://github.com/import-js/eslint-plugin-import/pull/332
1416
- [#322]: https://github.com/import-js/eslint-plugin-import/pull/322
1417
- [#321]: https://github.com/import-js/eslint-plugin-import/pull/321
1418
- [#316]: https://github.com/import-js/eslint-plugin-import/pull/316
1419
- [#314]: https://github.com/import-js/eslint-plugin-import/pull/314
1420
- [#308]: https://github.com/import-js/eslint-plugin-import/pull/308
1421
- [#298]: https://github.com/import-js/eslint-plugin-import/pull/298
1422
- [#297]: https://github.com/import-js/eslint-plugin-import/pull/297
1423
- [#296]: https://github.com/import-js/eslint-plugin-import/pull/296
1424
- [#290]: https://github.com/import-js/eslint-plugin-import/pull/290
1425
- [#289]: https://github.com/import-js/eslint-plugin-import/pull/289
1426
- [#288]: https://github.com/import-js/eslint-plugin-import/pull/288
1427
- [#287]: https://github.com/import-js/eslint-plugin-import/pull/287
1428
- [#278]: https://github.com/import-js/eslint-plugin-import/pull/278
1429
- [#261]: https://github.com/import-js/eslint-plugin-import/pull/261
1430
- [#256]: https://github.com/import-js/eslint-plugin-import/pull/256
1431
- [#254]: https://github.com/import-js/eslint-plugin-import/pull/254
1432
- [#250]: https://github.com/import-js/eslint-plugin-import/pull/250
1433
- [#247]: https://github.com/import-js/eslint-plugin-import/pull/247
1434
- [#245]: https://github.com/import-js/eslint-plugin-import/pull/245
1435
- [#243]: https://github.com/import-js/eslint-plugin-import/pull/243
1436
- [#241]: https://github.com/import-js/eslint-plugin-import/pull/241
1437
- [#239]: https://github.com/import-js/eslint-plugin-import/pull/239
1438
- [#228]: https://github.com/import-js/eslint-plugin-import/pull/228
1439
- [#211]: https://github.com/import-js/eslint-plugin-import/pull/211
1440
- [#164]: https://github.com/import-js/eslint-plugin-import/pull/164
1441
- [#157]: https://github.com/import-js/eslint-plugin-import/pull/157
1442
-
1443
- [#2930]: https://github.com/import-js/eslint-plugin-import/issues/2930
1444
- [#2687]: https://github.com/import-js/eslint-plugin-import/issues/2687
1445
- [#2684]: https://github.com/import-js/eslint-plugin-import/issues/2684
1446
- [#2674]: https://github.com/import-js/eslint-plugin-import/issues/2674
1447
- [#2668]: https://github.com/import-js/eslint-plugin-import/issues/2668
1448
- [#2666]: https://github.com/import-js/eslint-plugin-import/issues/2666
1449
- [#2665]: https://github.com/import-js/eslint-plugin-import/issues/2665
1450
- [#2577]: https://github.com/import-js/eslint-plugin-import/issues/2577
1451
- [#2447]: https://github.com/import-js/eslint-plugin-import/issues/2447
1452
- [#2444]: https://github.com/import-js/eslint-plugin-import/issues/2444
1453
- [#2412]: https://github.com/import-js/eslint-plugin-import/issues/2412
1454
- [#2392]: https://github.com/import-js/eslint-plugin-import/issues/2392
1455
- [#2340]: https://github.com/import-js/eslint-plugin-import/issues/2340
1456
- [#2255]: https://github.com/import-js/eslint-plugin-import/issues/2255
1457
- [#2210]: https://github.com/import-js/eslint-plugin-import/issues/2210
1458
- [#2201]: https://github.com/import-js/eslint-plugin-import/issues/2201
1459
- [#2199]: https://github.com/import-js/eslint-plugin-import/issues/2199
1460
- [#2161]: https://github.com/import-js/eslint-plugin-import/issues/2161
1461
- [#2118]: https://github.com/import-js/eslint-plugin-import/issues/2118
1462
- [#2067]: https://github.com/import-js/eslint-plugin-import/issues/2067
1463
- [#2063]: https://github.com/import-js/eslint-plugin-import/issues/2063
1464
- [#2056]: https://github.com/import-js/eslint-plugin-import/issues/2056
1465
- [#1998]: https://github.com/import-js/eslint-plugin-import/issues/1998
1466
- [#1965]: https://github.com/import-js/eslint-plugin-import/issues/1965
1467
- [#1924]: https://github.com/import-js/eslint-plugin-import/issues/1924
1468
- [#1854]: https://github.com/import-js/eslint-plugin-import/issues/1854
1469
- [#1841]: https://github.com/import-js/eslint-plugin-import/issues/1841
1470
- [#1834]: https://github.com/import-js/eslint-plugin-import/issues/1834
1471
- [#1814]: https://github.com/import-js/eslint-plugin-import/issues/1814
1472
- [#1811]: https://github.com/import-js/eslint-plugin-import/issues/1811
1473
- [#1808]: https://github.com/import-js/eslint-plugin-import/issues/1808
1474
- [#1805]: https://github.com/import-js/eslint-plugin-import/issues/1805
1475
- [#1801]: https://github.com/import-js/eslint-plugin-import/issues/1801
1476
- [#1722]: https://github.com/import-js/eslint-plugin-import/issues/1722
1477
- [#1704]: https://github.com/import-js/eslint-plugin-import/issues/1704
1478
- [#1702]: https://github.com/import-js/eslint-plugin-import/issues/1702
1479
- [#1635]: https://github.com/import-js/eslint-plugin-import/issues/1635
1480
- [#1631]: https://github.com/import-js/eslint-plugin-import/issues/1631
1481
- [#1616]: https://github.com/import-js/eslint-plugin-import/issues/1616
1482
- [#1613]: https://github.com/import-js/eslint-plugin-import/issues/1613
1483
- [#1590]: https://github.com/import-js/eslint-plugin-import/issues/1590
1484
- [#1589]: https://github.com/import-js/eslint-plugin-import/issues/1589
1485
- [#1565]: https://github.com/import-js/eslint-plugin-import/issues/1565
1486
- [#1366]: https://github.com/import-js/eslint-plugin-import/issues/1366
1487
- [#1334]: https://github.com/import-js/eslint-plugin-import/issues/1334
1488
- [#1323]: https://github.com/import-js/eslint-plugin-import/issues/1323
1489
- [#1322]: https://github.com/import-js/eslint-plugin-import/issues/1322
1490
- [#1300]: https://github.com/import-js/eslint-plugin-import/issues/1300
1491
- [#1293]: https://github.com/import-js/eslint-plugin-import/issues/1293
1492
- [#1266]: https://github.com/import-js/eslint-plugin-import/issues/1266
1493
- [#1256]: https://github.com/import-js/eslint-plugin-import/issues/1256
1494
- [#1233]: https://github.com/import-js/eslint-plugin-import/issues/1233
1495
- [#1175]: https://github.com/import-js/eslint-plugin-import/issues/1175
1496
- [#1166]: https://github.com/import-js/eslint-plugin-import/issues/1166
1497
- [#1144]: https://github.com/import-js/eslint-plugin-import/issues/1144
1498
- [#1058]: https://github.com/import-js/eslint-plugin-import/issues/1058
1499
- [#1035]: https://github.com/import-js/eslint-plugin-import/issues/1035
1500
- [#931]: https://github.com/import-js/eslint-plugin-import/issues/931
1501
- [#886]: https://github.com/import-js/eslint-plugin-import/issues/886
1502
- [#863]: https://github.com/import-js/eslint-plugin-import/issues/863
1503
- [#842]: https://github.com/import-js/eslint-plugin-import/issues/842
1504
- [#839]: https://github.com/import-js/eslint-plugin-import/issues/839
1505
- [#795]: https://github.com/import-js/eslint-plugin-import/issues/795
1506
- [#793]: https://github.com/import-js/eslint-plugin-import/issues/793
1507
- [#720]: https://github.com/import-js/eslint-plugin-import/issues/720
1508
- [#717]: https://github.com/import-js/eslint-plugin-import/issues/717
1509
- [#686]: https://github.com/import-js/eslint-plugin-import/issues/686
1510
- [#671]: https://github.com/import-js/eslint-plugin-import/issues/671
1511
- [#660]: https://github.com/import-js/eslint-plugin-import/issues/660
1512
- [#653]: https://github.com/import-js/eslint-plugin-import/issues/653
1513
- [#627]: https://github.com/import-js/eslint-plugin-import/issues/627
1514
- [#620]: https://github.com/import-js/eslint-plugin-import/issues/620
1515
- [#609]: https://github.com/import-js/eslint-plugin-import/issues/609
1516
- [#604]: https://github.com/import-js/eslint-plugin-import/issues/604
1517
- [#602]: https://github.com/import-js/eslint-plugin-import/issues/602
1518
- [#601]: https://github.com/import-js/eslint-plugin-import/issues/601
1519
- [#592]: https://github.com/import-js/eslint-plugin-import/issues/592
1520
- [#577]: https://github.com/import-js/eslint-plugin-import/issues/577
1521
- [#570]: https://github.com/import-js/eslint-plugin-import/issues/570
1522
- [#567]: https://github.com/import-js/eslint-plugin-import/issues/567
1523
- [#566]: https://github.com/import-js/eslint-plugin-import/issues/566
1524
- [#545]: https://github.com/import-js/eslint-plugin-import/issues/545
1525
- [#530]: https://github.com/import-js/eslint-plugin-import/issues/530
1526
- [#529]: https://github.com/import-js/eslint-plugin-import/issues/529
1527
- [#519]: https://github.com/import-js/eslint-plugin-import/issues/519
1528
- [#507]: https://github.com/import-js/eslint-plugin-import/issues/507
1529
- [#484]: https://github.com/import-js/eslint-plugin-import/issues/484
1530
- [#478]: https://github.com/import-js/eslint-plugin-import/issues/478
1531
- [#456]: https://github.com/import-js/eslint-plugin-import/issues/456
1532
- [#453]: https://github.com/import-js/eslint-plugin-import/issues/453
1533
- [#452]: https://github.com/import-js/eslint-plugin-import/issues/452
1534
- [#447]: https://github.com/import-js/eslint-plugin-import/issues/447
1535
- [#441]: https://github.com/import-js/eslint-plugin-import/issues/441
1536
- [#423]: https://github.com/import-js/eslint-plugin-import/issues/423
1537
- [#416]: https://github.com/import-js/eslint-plugin-import/issues/416
1538
- [#415]: https://github.com/import-js/eslint-plugin-import/issues/415
1539
- [#402]: https://github.com/import-js/eslint-plugin-import/issues/402
1540
- [#386]: https://github.com/import-js/eslint-plugin-import/issues/386
1541
- [#373]: https://github.com/import-js/eslint-plugin-import/issues/373
1542
- [#370]: https://github.com/import-js/eslint-plugin-import/issues/370
1543
- [#348]: https://github.com/import-js/eslint-plugin-import/issues/348
1544
- [#342]: https://github.com/import-js/eslint-plugin-import/issues/342
1545
- [#328]: https://github.com/import-js/eslint-plugin-import/issues/328
1546
- [#317]: https://github.com/import-js/eslint-plugin-import/issues/317
1547
- [#313]: https://github.com/import-js/eslint-plugin-import/issues/313
1548
- [#311]: https://github.com/import-js/eslint-plugin-import/issues/311
1549
- [#306]: https://github.com/import-js/eslint-plugin-import/issues/306
1550
- [#286]: https://github.com/import-js/eslint-plugin-import/issues/286
1551
- [#283]: https://github.com/import-js/eslint-plugin-import/issues/283
1552
- [#281]: https://github.com/import-js/eslint-plugin-import/issues/281
1553
- [#275]: https://github.com/import-js/eslint-plugin-import/issues/275
1554
- [#272]: https://github.com/import-js/eslint-plugin-import/issues/272
1555
- [#270]: https://github.com/import-js/eslint-plugin-import/issues/270
1556
- [#267]: https://github.com/import-js/eslint-plugin-import/issues/267
1557
- [#266]: https://github.com/import-js/eslint-plugin-import/issues/266
1558
- [#216]: https://github.com/import-js/eslint-plugin-import/issues/216
1559
- [#214]: https://github.com/import-js/eslint-plugin-import/issues/214
1560
- [#210]: https://github.com/import-js/eslint-plugin-import/issues/210
1561
- [#200]: https://github.com/import-js/eslint-plugin-import/issues/200
1562
- [#192]: https://github.com/import-js/eslint-plugin-import/issues/192
1563
- [#191]: https://github.com/import-js/eslint-plugin-import/issues/191
1564
- [#189]: https://github.com/import-js/eslint-plugin-import/issues/189
1565
- [#170]: https://github.com/import-js/eslint-plugin-import/issues/170
1566
- [#155]: https://github.com/import-js/eslint-plugin-import/issues/155
1567
- [#119]: https://github.com/import-js/eslint-plugin-import/issues/119
1568
- [#89]: https://github.com/import-js/eslint-plugin-import/issues/89
1569
-
1570
- [Unreleased]: https://github.com/import-js/eslint-plugin-import/compare/v2.29.1...HEAD
1571
- [2.29.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1
1572
- [2.29.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.1...v2.29.0
1573
- [2.28.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.28.0...v2.28.1
1574
- [2.28.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0
1575
- [2.27.5]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.4...v2.27.5
1576
- [2.27.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.3...v2.27.4
1577
- [2.27.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.2...v2.27.3
1578
- [2.27.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.1...v2.27.2
1579
- [2.27.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.27.0...v2.27.1
1580
- [2.27.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.26.0...v2.27.0
1581
- [2.26.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.4...v2.26.0
1582
- [2.25.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.3...v2.25.4
1583
- [2.25.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.2...v2.25.3
1584
- [2.25.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.1...v2.25.2
1585
- [2.25.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.25.0...v2.25.1
1586
- [2.25.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.24.2...v2.25.0
1587
- [2.24.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.24.1...v2.24.2
1588
- [2.24.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.24.0...v2.24.1
1589
- [2.24.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.4...v2.24.0
1590
- [2.23.4]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.3...v2.23.4
1591
- [2.23.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.2...v2.23.3
1592
- [2.23.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.1...v2.23.2
1593
- [2.23.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.23.0...v2.23.1
1594
- [2.23.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.22.1...v2.23.0
1595
- [2.22.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.22.0...v2.22.1
1596
- [2.22.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.21.1...v2.22.0
1597
- [2.21.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.21.1...v2.21.2
1598
- [2.21.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.21.0...v2.21.1
1599
- [2.21.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.20.2...v2.21.0
1600
- [2.20.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.20.1...v2.20.2
1601
- [2.20.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.20.0...v2.20.1
1602
- [2.19.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.19.1...v2.20.0
1603
- [2.19.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.19.0...v2.19.1
1604
- [2.19.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.2...v2.19.0
1605
- [2.18.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.1...v2.18.2
1606
- [2.18.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.18.0...v2.18.1
1607
- [2.18.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.3...v2.18.0
1608
- [2.17.3]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.2...v2.17.3
1609
- [2.17.2]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.1...v2.17.2
1610
- [2.17.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.17.0...v2.17.1
1611
- [2.17.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.16.0...v2.17.0
1612
- [2.16.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.15.0...v2.16.0
1613
- [2.15.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.14.0...v2.15.0
1614
- [2.14.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.13.0...v2.14.0
1615
- [2.13.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.12.0...v2.13.0
1616
- [2.12.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.11.0...v2.12.0
1617
- [2.11.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.10.0...v2.11.0
1618
- [2.10.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.9.0...v2.10.0
1619
- [2.9.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.8.0...v2.9.0
1620
- [2.8.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.7.0...v2.8.0
1621
- [2.7.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.6.1...v2.7.0
1622
- [2.6.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.6.0...v2.6.1
1623
- [2.6.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.5.0...v2.6.0
1624
- [2.5.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.4.0...v2.5.0
1625
- [2.4.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.3.0...v2.4.0
1626
- [2.3.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.2.0...v2.3.0
1627
- [2.2.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.1.0...v2.2.0
1628
- [2.1.0]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.1...v2.1.0
1629
- [2.0.1]: https://github.com/import-js/eslint-plugin-import/compare/v2.0.0...v2.0.1
1630
- [2.0.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.16.0...v2.0.0
1631
- [1.16.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.15.0...v1.16.0
1632
- [1.15.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.14.0...v1.15.0
1633
- [1.14.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.13.0...v1.14.0
1634
- [1.13.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.12.0...v1.13.0
1635
- [1.12.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.11.1...v1.12.0
1636
- [1.11.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.11.0...v1.11.1
1637
- [1.11.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.3...v1.11.0
1638
- [1.10.3]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.2...v1.10.3
1639
- [1.10.2]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.1...v1.10.2
1640
- [1.10.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.10.0...v1.10.1
1641
- [1.10.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.9.2...v1.10.0
1642
- [1.9.2]: https://github.com/import-js/eslint-plugin-import/compare/v1.9.1...v1.9.2
1643
- [1.9.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.9.0...v1.9.1
1644
- [1.9.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.8.1...v1.9.0
1645
- [1.8.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.8.0...v1.8.1
1646
- [1.8.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.7.0...v1.8.0
1647
- [1.7.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.6.1...v1.7.0
1648
- [1.6.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.6.0...v1.6.1
1649
- [1.6.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.5.0...1.6.0
1650
- [1.5.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.4.0...v1.5.0
1651
- [1.4.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.3.0...v1.4.0
1652
- [1.3.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.2.0...v1.3.0
1653
- [1.2.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.1.0...v1.2.0
1654
- [1.1.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.4...v1.1.0
1655
- [1.0.4]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.3...v1.0.4
1656
- [1.0.3]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.2...v1.0.3
1657
- [1.0.2]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.1...v1.0.2
1658
- [1.0.1]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.0...v1.0.1
1659
- [1.0.0]: https://github.com/import-js/eslint-plugin-import/compare/v1.0.0-beta.0...v1.0.0
1660
- [1.0.0-beta.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.13.0...v1.0.0-beta.0
1661
- [0.13.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.12.1...v0.13.0
1662
- [0.12.2]: https://github.com/import-js/eslint-plugin-import/compare/v0.12.1...v0.12.2
1663
- [0.12.1]: https://github.com/import-js/eslint-plugin-import/compare/v0.12.0...v0.12.1
1664
- [0.12.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.11.0...v0.12.0
1665
- [0.11.0]: https://github.com/import-js/eslint-plugin-import/compare/v0.10.1...v0.11.0
1666
-
1667
- [@1pete]: https://github.com/1pete
1668
- [@3nuc]: https://github.com/3nuc
1669
- [@aamulumi]: https://github.com/aamulumi
1670
- [@aberezkin]: https://github.com/aberezkin
1671
- [@adamborowski]: https://github.com/adamborowski
1672
- [@adjerbetian]: https://github.com/adjerbetian
1673
- [@AdriAt360]: https://github.com/AdriAt360
1674
- [@ai]: https://github.com/ai
1675
- [@aladdin-add]: https://github.com/aladdin-add
1676
- [@alex-page]: https://github.com/alex-page
1677
- [@alexgorbatchev]: https://github.com/alexgorbatchev
1678
- [@andreubotella]: https://github.com/andreubotella
1679
- [@AndrewLeedham]: https://github.com/AndrewLeedham
1680
- [@andyogo]: https://github.com/andyogo
1681
- [@aravindet]: https://github.com/aravindet
1682
- [@arvigeus]: https://github.com/arvigeus
1683
- [@asapach]: https://github.com/asapach
1684
- [@astorije]: https://github.com/astorije
1685
- [@atav32]: https://github.com/atav32
1686
- [@atikenny]: https://github.com/atikenny
1687
- [@atos1990]: https://github.com/atos1990
1688
- [@azyzz228]: https://github.com/azyzz228
1689
- [@barbogast]: https://github.com/barbogast
1690
- [@BarryThePenguin]: https://github.com/BarryThePenguin
1691
- [@be5invis]: https://github.com/be5invis
1692
- [@beatrizrezener]: https://github.com/beatrizrezener
1693
- [@benasher44]: https://github.com/benasher44
1694
- [@benkrejci]: https://github.com/benkrejci
1695
- [@benmosher]: https://github.com/benmosher
1696
- [@benmunro]: https://github.com/benmunro
1697
- [@BenoitZugmeyer]: https://github.com/BenoitZugmeyer
1698
- [@bertyhell]: https://github.com/bertyhell
1699
- [@bicstone]: https://github.com/bicstone
1700
- [@Blasz]: https://github.com/Blasz
1701
- [@bmish]: https://github.com/bmish
1702
- [@borisyankov]: https://github.com/borisyankov
1703
- [@bradennapier]: https://github.com/bradennapier
1704
- [@bradzacher]: https://github.com/bradzacher
1705
- [@brendo]: https://github.com/brendo
1706
- [@brettz9]: https://github.com/brettz9
1707
- [@Chamion]: https://github.com/Chamion
1708
- [@charlessuh]: https://github.com/charlessuh
1709
- [@charpeni]: https://github.com/charpeni
1710
- [@cherryblossom000]: https://github.com/cherryblossom000
1711
- [@chrislloyd]: https://github.com/chrislloyd
1712
- [@christianvuerings]: https://github.com/christianvuerings
1713
- [@christophercurrie]: https://github.com/christophercurrie
1714
- [@cristobal]: https://github.com/cristobal
1715
- [@DamienCassou]: https://github.com/DamienCassou
1716
- [@danny-andrews]: https://github.com/dany-andrews
1717
- [@darkartur]: https://github.com/darkartur
1718
- [@davidbonnet]: https://github.com/davidbonnet
1719
- [@dbrewer5]: https://github.com/dbrewer5
1720
- [@devinrhode2]: https://github.com/devinrhode2
1721
- [@devongovett]: https://github.com/devongovett
1722
- [@dmnd]: https://github.com/dmnd
1723
- [@domdomegg]: https://github.com/domdomegg
1724
- [@duncanbeevers]: https://github.com/duncanbeevers
1725
- [@dwardu]: https://github.com/dwardu
1726
- [@echenley]: https://github.com/echenley
1727
- [@edemaine]: https://github.com/edemaine
1728
- [@eelyafi]: https://github.com/eelyafi
1729
- [@Ephem]: https://github.com/Ephem
1730
- [@ephys]: https://github.com/ephys
1731
- [@eps1lon]: https://github.com/eps1lon
1732
- [@ernestostifano]: https://github.com/ernestostifano
1733
- [@ertrzyiks]: https://github.com/ertrzyiks
1734
- [@fa93hws]: https://github.com/fa93hws
1735
- [@Fdawgs]: https://github.com/Fdawgs
1736
- [@fengkfengk]: https://github.com/fengkfengk
1737
- [@fernandopasik]: https://github.com/fernandopasik
1738
- [@feychenie]: https://github.com/feychenie
1739
- [@fisker]: https://github.com/fisker
1740
- [@FloEdelmann]: https://github.com/FloEdelmann
1741
- [@fooloomanzoo]: https://github.com/fooloomanzoo
1742
- [@foray1010]: https://github.com/foray1010
1743
- [@forivall]: https://github.com/forivall
1744
- [@fsmaia]: https://github.com/fsmaia
1745
- [@fson]: https://github.com/fson
1746
- [@futpib]: https://github.com/futpib
1747
- [@gajus]: https://github.com/gajus
1748
- [@gausie]: https://github.com/gausie
1749
- [@gavriguy]: https://github.com/gavriguy
1750
- [@georeith]: https://github.com/georeith
1751
- [@giodamelio]: https://github.com/giodamelio
1752
- [@gnprice]: https://github.com/gnprice
1753
- [@golergka]: https://github.com/golergka
1754
- [@golopot]: https://github.com/golopot
1755
- [@GoodForOneFare]: https://github.com/GoodForOneFare
1756
- [@graingert]: https://github.com/graingert
1757
- [@grit96]: https://github.com/grit96
1758
- [@guilhermelimak]: https://github.com/guilhermelimak
1759
- [@guillaumewuip]: https://github.com/guillaumewuip
1760
- [@hayes]: https://github.com/hayes
1761
- [@himynameisdave]: https://github.com/himynameisdave
1762
- [@hulkish]: https://github.com/hulkish
1763
- [@hyperupcall]: https://github.com/hyperupcall
1764
- [@Hypnosphi]: https://github.com/Hypnosphi
1765
- [@isiahmeadows]: https://github.com/isiahmeadows
1766
- [@IvanGoncharov]: https://github.com/IvanGoncharov
1767
- [@ivo-stefchev]: https://github.com/ivo-stefchev
1768
- [@jablko]: https://github.com/jablko
1769
- [@jakubsta]: https://github.com/jakubsta
1770
- [@jeffshaver]: https://github.com/jeffshaver
1771
- [@jf248]: https://github.com/jf248
1772
- [@jfmengels]: https://github.com/jfmengels
1773
- [@jimbolla]: https://github.com/jimbolla
1774
- [@jkimbo]: https://github.com/jkimbo
1775
- [@joaovieira]: https://github.com/joaovieira
1776
- [@joe-matsec]: https://github.com/joe-matsec
1777
- [@johndevedu]: https://github.com/johndevedu
1778
- [@johnthagen]: https://github.com/johnthagen
1779
- [@jonboiser]: https://github.com/jonboiser
1780
- [@josh]: https://github.com/josh
1781
- [@JounQin]: https://github.com/JounQin
1782
- [@jquense]: https://github.com/jquense
1783
- [@jseminck]: https://github.com/jseminck
1784
- [@julien1619]: https://github.com/julien1619
1785
- [@justinanastos]: https://github.com/justinanastos
1786
- [@k15a]: https://github.com/k15a
1787
- [@kentcdodds]: https://github.com/kentcdodds
1788
- [@kevin940726]: https://github.com/kevin940726
1789
- [@kgregory]: https://github.com/kgregory
1790
- [@kinland]: https://github.com/kinland
1791
- [@kirill-konshin]: https://github.com/kirill-konshin
1792
- [@kiwka]: https://github.com/kiwka
1793
- [@klimashkin]: https://github.com/klimashkin
1794
- [@kmui2]: https://github.com/kmui2
1795
- [@knpwrs]: https://github.com/knpwrs
1796
- [@KostyaZgara]: https://github.com/KostyaZgara
1797
- [@kylemh]: https://github.com/kylemh
1798
- [@laurens-dg]: https://github.com/laurens-dg
1799
- [@laysent]: https://github.com/laysent
1800
- [@le0nik]: https://github.com/le0nik
1801
- [@leipert]: https://github.com/leipert
1802
- [@lemonmade]: https://github.com/lemonmade
1803
- [@lencioni]: https://github.com/lencioni
1804
- [@leonardodino]: https://github.com/leonardodino
1805
- [@Librazy]: https://github.com/Librazy
1806
- [@liby]: https://github.com/liby
1807
- [@lilling]: https://github.com/lilling
1808
- [@ljharb]: https://github.com/ljharb
1809
- [@ljqx]: https://github.com/ljqx
1810
- [@lo1tuma]: https://github.com/lo1tuma
1811
- [@loganfsmyth]: https://github.com/loganfsmyth
1812
- [@luczsoma]: https://github.com/luczsoma
1813
- [@ludofischer]: https://github.com/ludofischer
1814
- [@Lukas-Kullmann]: https://github.com/Lukas-Kullmann
1815
- [@lukeapage]: https://github.com/lukeapage
1816
- [@lydell]: https://github.com/lydell
1817
- [@magarcia]: https://github.com/magarcia
1818
- [@Mairu]: https://github.com/Mairu
1819
- [@malykhinvi]: https://github.com/malykhinvi
1820
- [@manovotny]: https://github.com/manovotny
1821
- [@manuth]: https://github.com/manuth
1822
- [@marcusdarmstrong]: https://github.com/marcusdarmstrong
1823
- [@mastilver]: https://github.com/mastilver
1824
- [@mathieudutour]: https://github.com/mathieudutour
1825
- [@MatthiasKunnen]: https://github.com/MatthiasKunnen
1826
- [@mattijsbliek]: https://github.com/mattijsbliek
1827
- [@Maxim-Mazurok]: https://github.com/Maxim-Mazurok
1828
- [@maxkomarychev]: https://github.com/maxkomarychev
1829
- [@maxmalov]: https://github.com/maxmalov
1830
- [@meowtec]: https://github.com/meowtec
1831
- [@mgwalker]: https://github.com/mgwalker
1832
- [@mhmadhamster]: https://github.com/MhMadHamster
1833
- [@MikeyBeLike]: https://github.com/MikeyBeLike
1834
- [@mpint]: https://github.com/mpint
1835
- [@mplewis]: https://github.com/mplewis
1836
- [@mrmckeb]: https://github.com/mrmckeb
1837
- [@msvab]: https://github.com/msvab
1838
- [@mx-bernhard]: https://github.com/mx-bernhard
1839
- [@Nfinished]: https://github.com/Nfinished
1840
- [@nickofthyme]: https://github.com/nickofthyme
1841
- [@nicolashenry]: https://github.com/nicolashenry
1842
- [@noelebrun]: https://github.com/noelebrun
1843
- [@ntdb]: https://github.com/ntdb
1844
- [@nwalters512]: https://github.com/nwalters512
1845
- [@ombene]: https://github.com/ombene
1846
- [@Pandemic1617]: https://github.com/Pandemic1617
1847
- [@ota-meshi]: https://github.com/ota-meshi
1848
- [@OutdatedVersion]: https://github.com/OutdatedVersion
1849
- [@panrafal]: https://github.com/panrafal
1850
- [@paztis]: https://github.com/paztis
1851
- [@pcorpet]: https://github.com/pcorpet
1852
- [@Pearce-Ropion]: https://github.com/Pearce-Ropion
1853
- [@Pessimistress]: https://github.com/Pessimistress
1854
- [@pmcelhaney]: https://github.com/pmcelhaney
1855
- [@preco21]: https://github.com/preco21
1856
- [@pri1311]: https://github.com/pri1311
1857
- [@ProdigySim]: https://github.com/ProdigySim
1858
- [@pzhine]: https://github.com/pzhine
1859
- [@ramasilveyra]: https://github.com/ramasilveyra
1860
- [@randallreedjr]: https://github.com/randallreedjr
1861
- [@redbugz]: https://github.com/redbugz
1862
- [@remcohaszing]: https://github.com/remcohaszing
1863
- [@rfermann]: https://github.com/rfermann
1864
- [@rhettlivingston]: https://github.com/rhettlivingston
1865
- [@rhys-vdw]: https://github.com/rhys-vdw
1866
- [@richardxia]: https://github.com/richardxia
1867
- [@robertrossmann]: https://github.com/robertrossmann
1868
- [@rosswarren]: https://github.com/rosswarren
1869
- [@rperello]: https://github.com/rperello
1870
- [@rsolomon]: https://github.com/rsolomon
1871
- [@s-h-a-d-o-w]: https://github.com/s-h-a-d-o-w
1872
- [@saschanaz]: https://github.com/saschanaz
1873
- [@schmidsi]: https://github.com/schmidsi
1874
- [@schmod]: https://github.com/schmod
1875
- [@Schweinepriester]: https://github.com/Schweinepriester
1876
- [@scottnonnenberg]: https://github.com/scottnonnenberg
1877
- [@sergei-startsev]: https://github.com/sergei-startsev
1878
- [@sharmilajesupaul]: https://github.com/sharmilajesupaul
1879
- [@sheepsteak]: https://github.com/sheepsteak
1880
- [@silviogutierrez]: https://github.com/silviogutierrez
1881
- [@SimenB]: https://github.com/SimenB
1882
- [@simmo]: https://github.com/simmo
1883
- [@sindresorhus]: https://github.com/sindresorhus
1884
- [@singles]: https://github.com/singles
1885
- [@skozin]: https://github.com/skozin
1886
- [@skyrpex]: https://github.com/skyrpex
1887
- [@snewcomer]: https://github.com/snewcomer
1888
- [@sompylasar]: https://github.com/sompylasar
1889
- [@soryy708]: https://github.com/soryy708
1890
- [@sosukesuzuki]: https://github.com/sosukesuzuki
1891
- [@spalger]: https://github.com/spalger
1892
- [@st-sloth]: https://github.com/st-sloth
1893
- [@stekycz]: https://github.com/stekycz
1894
- [@stenin-nikita]: https://github.com/stenin-nikita
1895
- [@stephtr]: https://github.com/stephtr
1896
- [@straub]: https://github.com/straub
1897
- [@strawbrary]: https://github.com/strawbrary
1898
- [@stropho]: https://github.com/stropho
1899
- [@sveyret]: https://github.com/sveyret
1900
- [@swernerx]: https://github.com/swernerx
1901
- [@syymza]: https://github.com/syymza
1902
- [@taion]: https://github.com/taion
1903
- [@TakeScoop]: https://github.com/TakeScoop
1904
- [@tapayne88]: https://github.com/tapayne88
1905
- [@Taranys]: https://github.com/Taranys
1906
- [@taye]: https://github.com/taye
1907
- [@TheCrueltySage]: https://github.com/TheCrueltySage
1908
- [@TheJaredWilcurt]: https://github.com/TheJaredWilcurt
1909
- [@tihonove]: https://github.com/tihonove
1910
- [@timkraut]: https://github.com/timkraut
1911
- [@tizmagik]: https://github.com/tizmagik
1912
- [@tomprats]: https://github.com/tomprats
1913
- [@TrevorBurnham]: https://github.com/TrevorBurnham
1914
- [@ttmarek]: https://github.com/ttmarek
1915
- [@vikr01]: https://github.com/vikr01
1916
- [@wenfangdu]: https://github.com/wenfangdu
1917
- [@wKich]: https://github.com/wKich
1918
- [@wschurman]: https://github.com/wschurman
1919
- [@wtgtybhertgeghgtwtg]: https://github.com/wtgtybhertgeghgtwtg
1920
- [@xM8WVqaG]: https://github.com/xM8WVqaG
1921
- [@xpl]: https://github.com/xpl
1922
- [@yndajas]: https://github.com/yndajas
1923
- [@yordis]: https://github.com/yordis
1924
- [@Zamiell]: https://github.com/Zamiell
1925
- [@zloirock]: https://github.com/zloirock