create-packer 1.34.4 → 1.34.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1545) hide show
  1. package/package.json +1 -1
  2. package/template/lib/react/node_modules/.bin/acorn +17 -0
  3. package/template/lib/react/node_modules/.bin/acorn.CMD +12 -0
  4. package/template/lib/react/node_modules/.bin/acorn.ps1 +41 -0
  5. package/template/lib/react/node_modules/.bin/browserslist +17 -0
  6. package/template/lib/react/node_modules/.bin/browserslist.CMD +12 -0
  7. package/template/lib/react/node_modules/.bin/browserslist.ps1 +41 -0
  8. package/template/lib/react/node_modules/.bin/esbuild +17 -0
  9. package/template/lib/react/node_modules/.bin/esbuild.CMD +12 -0
  10. package/template/lib/react/node_modules/.bin/esbuild.ps1 +41 -0
  11. package/template/lib/react/node_modules/.bin/eslint +17 -0
  12. package/template/lib/react/node_modules/.bin/eslint.CMD +12 -0
  13. package/template/lib/react/node_modules/.bin/eslint.ps1 +41 -0
  14. package/template/lib/react/node_modules/.bin/prettier +17 -0
  15. package/template/lib/react/node_modules/.bin/prettier.CMD +12 -0
  16. package/template/lib/react/node_modules/.bin/prettier.ps1 +41 -0
  17. package/template/lib/react/node_modules/.bin/sb +17 -0
  18. package/template/lib/react/node_modules/.bin/sb.CMD +12 -0
  19. package/template/lib/react/node_modules/.bin/sb.ps1 +41 -0
  20. package/template/lib/react/node_modules/.bin/storybook +17 -0
  21. package/template/lib/react/node_modules/.bin/storybook.CMD +12 -0
  22. package/template/lib/react/node_modules/.bin/storybook.ps1 +41 -0
  23. package/template/lib/react/node_modules/.bin/stylelint +17 -0
  24. package/template/lib/react/node_modules/.bin/stylelint.CMD +12 -0
  25. package/template/lib/react/node_modules/.bin/stylelint.ps1 +41 -0
  26. package/template/lib/react/node_modules/.bin/tsc +17 -0
  27. package/template/lib/react/node_modules/.bin/tsc.CMD +12 -0
  28. package/template/lib/react/node_modules/.bin/tsc.ps1 +41 -0
  29. package/template/lib/react/node_modules/.bin/tsserver +17 -0
  30. package/template/lib/react/node_modules/.bin/tsserver.CMD +12 -0
  31. package/template/lib/react/node_modules/.bin/tsserver.ps1 +41 -0
  32. package/template/lib/react/node_modules/.bin/vite +17 -0
  33. package/template/lib/react/node_modules/.bin/vite.CMD +12 -0
  34. package/template/lib/react/node_modules/.bin/vite.ps1 +41 -0
  35. package/template/lib/react/node_modules/eslint/LICENSE +19 -0
  36. package/template/lib/react/node_modules/eslint/README.md +304 -0
  37. package/template/lib/react/node_modules/eslint/bin/eslint.js +173 -0
  38. package/template/lib/react/node_modules/eslint/conf/config-schema.js +93 -0
  39. package/template/lib/react/node_modules/eslint/conf/default-cli-options.js +32 -0
  40. package/template/lib/react/node_modules/eslint/conf/globals.js +154 -0
  41. package/template/lib/react/node_modules/eslint/conf/replacements.json +22 -0
  42. package/template/lib/react/node_modules/eslint/conf/rule-type-list.json +28 -0
  43. package/template/lib/react/node_modules/eslint/lib/api.js +26 -0
  44. package/template/lib/react/node_modules/eslint/lib/cli-engine/cli-engine.js +1078 -0
  45. package/template/lib/react/node_modules/eslint/lib/cli-engine/file-enumerator.js +547 -0
  46. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +60 -0
  47. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/compact.js +60 -0
  48. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +46 -0
  49. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/html.js +351 -0
  50. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +41 -0
  51. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
  52. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
  53. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/junit.js +82 -0
  54. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/stylish.js +101 -0
  55. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/tap.js +95 -0
  56. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/unix.js +58 -0
  57. package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +63 -0
  58. package/template/lib/react/node_modules/eslint/lib/cli-engine/hash.js +35 -0
  59. package/template/lib/react/node_modules/eslint/lib/cli-engine/index.js +7 -0
  60. package/template/lib/react/node_modules/eslint/lib/cli-engine/lint-result-cache.js +203 -0
  61. package/template/lib/react/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
  62. package/template/lib/react/node_modules/eslint/lib/cli-engine/xml-escape.js +34 -0
  63. package/template/lib/react/node_modules/eslint/lib/cli.js +471 -0
  64. package/template/lib/react/node_modules/eslint/lib/config/default-config.js +67 -0
  65. package/template/lib/react/node_modules/eslint/lib/config/flat-config-array.js +274 -0
  66. package/template/lib/react/node_modules/eslint/lib/config/flat-config-helpers.js +111 -0
  67. package/template/lib/react/node_modules/eslint/lib/config/flat-config-schema.js +583 -0
  68. package/template/lib/react/node_modules/eslint/lib/config/rule-validator.js +158 -0
  69. package/template/lib/react/node_modules/eslint/lib/eslint/eslint-helpers.js +902 -0
  70. package/template/lib/react/node_modules/eslint/lib/eslint/eslint.js +700 -0
  71. package/template/lib/react/node_modules/eslint/lib/eslint/flat-eslint.js +1142 -0
  72. package/template/lib/react/node_modules/eslint/lib/eslint/index.js +9 -0
  73. package/template/lib/react/node_modules/eslint/lib/linter/apply-disable-directives.js +465 -0
  74. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +852 -0
  75. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +263 -0
  76. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2348 -0
  77. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +342 -0
  78. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +203 -0
  79. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +349 -0
  80. package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +45 -0
  81. package/template/lib/react/node_modules/eslint/lib/linter/config-comment-parser.js +185 -0
  82. package/template/lib/react/node_modules/eslint/lib/linter/index.js +13 -0
  83. package/template/lib/react/node_modules/eslint/lib/linter/interpolate.js +28 -0
  84. package/template/lib/react/node_modules/eslint/lib/linter/linter.js +2119 -0
  85. package/template/lib/react/node_modules/eslint/lib/linter/node-event-generator.js +354 -0
  86. package/template/lib/react/node_modules/eslint/lib/linter/report-translator.js +369 -0
  87. package/template/lib/react/node_modules/eslint/lib/linter/rule-fixer.js +140 -0
  88. package/template/lib/react/node_modules/eslint/lib/linter/rules.js +80 -0
  89. package/template/lib/react/node_modules/eslint/lib/linter/safe-emitter.js +52 -0
  90. package/template/lib/react/node_modules/eslint/lib/linter/source-code-fixer.js +152 -0
  91. package/template/lib/react/node_modules/eslint/lib/linter/timing.js +161 -0
  92. package/template/lib/react/node_modules/eslint/lib/options.js +398 -0
  93. package/template/lib/react/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +1122 -0
  94. package/template/lib/react/node_modules/eslint/lib/rule-tester/index.js +5 -0
  95. package/template/lib/react/node_modules/eslint/lib/rule-tester/rule-tester.js +1206 -0
  96. package/template/lib/react/node_modules/eslint/lib/rules/accessor-pairs.js +346 -0
  97. package/template/lib/react/node_modules/eslint/lib/rules/array-bracket-newline.js +261 -0
  98. package/template/lib/react/node_modules/eslint/lib/rules/array-bracket-spacing.js +244 -0
  99. package/template/lib/react/node_modules/eslint/lib/rules/array-callback-return.js +446 -0
  100. package/template/lib/react/node_modules/eslint/lib/rules/array-element-newline.js +311 -0
  101. package/template/lib/react/node_modules/eslint/lib/rules/arrow-body-style.js +296 -0
  102. package/template/lib/react/node_modules/eslint/lib/rules/arrow-parens.js +186 -0
  103. package/template/lib/react/node_modules/eslint/lib/rules/arrow-spacing.js +164 -0
  104. package/template/lib/react/node_modules/eslint/lib/rules/block-scoped-var.js +135 -0
  105. package/template/lib/react/node_modules/eslint/lib/rules/block-spacing.js +174 -0
  106. package/template/lib/react/node_modules/eslint/lib/rules/brace-style.js +197 -0
  107. package/template/lib/react/node_modules/eslint/lib/rules/callback-return.js +187 -0
  108. package/template/lib/react/node_modules/eslint/lib/rules/camelcase.js +399 -0
  109. package/template/lib/react/node_modules/eslint/lib/rules/capitalized-comments.js +300 -0
  110. package/template/lib/react/node_modules/eslint/lib/rules/class-methods-use-this.js +187 -0
  111. package/template/lib/react/node_modules/eslint/lib/rules/comma-dangle.js +373 -0
  112. package/template/lib/react/node_modules/eslint/lib/rules/comma-spacing.js +192 -0
  113. package/template/lib/react/node_modules/eslint/lib/rules/comma-style.js +314 -0
  114. package/template/lib/react/node_modules/eslint/lib/rules/complexity.js +165 -0
  115. package/template/lib/react/node_modules/eslint/lib/rules/computed-property-spacing.js +208 -0
  116. package/template/lib/react/node_modules/eslint/lib/rules/consistent-return.js +210 -0
  117. package/template/lib/react/node_modules/eslint/lib/rules/consistent-this.js +153 -0
  118. package/template/lib/react/node_modules/eslint/lib/rules/constructor-super.js +446 -0
  119. package/template/lib/react/node_modules/eslint/lib/rules/curly.js +486 -0
  120. package/template/lib/react/node_modules/eslint/lib/rules/default-case-last.js +44 -0
  121. package/template/lib/react/node_modules/eslint/lib/rules/default-case.js +97 -0
  122. package/template/lib/react/node_modules/eslint/lib/rules/default-param-last.js +62 -0
  123. package/template/lib/react/node_modules/eslint/lib/rules/dot-location.js +108 -0
  124. package/template/lib/react/node_modules/eslint/lib/rules/dot-notation.js +176 -0
  125. package/template/lib/react/node_modules/eslint/lib/rules/eol-last.js +115 -0
  126. package/template/lib/react/node_modules/eslint/lib/rules/eqeqeq.js +174 -0
  127. package/template/lib/react/node_modules/eslint/lib/rules/for-direction.js +140 -0
  128. package/template/lib/react/node_modules/eslint/lib/rules/func-call-spacing.js +233 -0
  129. package/template/lib/react/node_modules/eslint/lib/rules/func-name-matching.js +253 -0
  130. package/template/lib/react/node_modules/eslint/lib/rules/func-names.js +191 -0
  131. package/template/lib/react/node_modules/eslint/lib/rules/func-style.js +98 -0
  132. package/template/lib/react/node_modules/eslint/lib/rules/function-call-argument-newline.js +125 -0
  133. package/template/lib/react/node_modules/eslint/lib/rules/function-paren-newline.js +292 -0
  134. package/template/lib/react/node_modules/eslint/lib/rules/generator-star-spacing.js +209 -0
  135. package/template/lib/react/node_modules/eslint/lib/rules/getter-return.js +204 -0
  136. package/template/lib/react/node_modules/eslint/lib/rules/global-require.js +90 -0
  137. package/template/lib/react/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +215 -0
  138. package/template/lib/react/node_modules/eslint/lib/rules/guard-for-in.js +76 -0
  139. package/template/lib/react/node_modules/eslint/lib/rules/handle-callback-err.js +101 -0
  140. package/template/lib/react/node_modules/eslint/lib/rules/id-blacklist.js +246 -0
  141. package/template/lib/react/node_modules/eslint/lib/rules/id-denylist.js +228 -0
  142. package/template/lib/react/node_modules/eslint/lib/rules/id-length.js +177 -0
  143. package/template/lib/react/node_modules/eslint/lib/rules/id-match.js +299 -0
  144. package/template/lib/react/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +84 -0
  145. package/template/lib/react/node_modules/eslint/lib/rules/indent-legacy.js +1126 -0
  146. package/template/lib/react/node_modules/eslint/lib/rules/indent.js +1803 -0
  147. package/template/lib/react/node_modules/eslint/lib/rules/index.js +306 -0
  148. package/template/lib/react/node_modules/eslint/lib/rules/init-declarations.js +139 -0
  149. package/template/lib/react/node_modules/eslint/lib/rules/jsx-quotes.js +98 -0
  150. package/template/lib/react/node_modules/eslint/lib/rules/key-spacing.js +687 -0
  151. package/template/lib/react/node_modules/eslint/lib/rules/keyword-spacing.js +640 -0
  152. package/template/lib/react/node_modules/eslint/lib/rules/line-comment-position.js +122 -0
  153. package/template/lib/react/node_modules/eslint/lib/rules/linebreak-style.js +108 -0
  154. package/template/lib/react/node_modules/eslint/lib/rules/lines-around-comment.js +471 -0
  155. package/template/lib/react/node_modules/eslint/lib/rules/lines-around-directive.js +201 -0
  156. package/template/lib/react/node_modules/eslint/lib/rules/lines-between-class-members.js +269 -0
  157. package/template/lib/react/node_modules/eslint/lib/rules/logical-assignment-operators.js +504 -0
  158. package/template/lib/react/node_modules/eslint/lib/rules/max-classes-per-file.js +89 -0
  159. package/template/lib/react/node_modules/eslint/lib/rules/max-depth.js +156 -0
  160. package/template/lib/react/node_modules/eslint/lib/rules/max-len.js +440 -0
  161. package/template/lib/react/node_modules/eslint/lib/rules/max-lines-per-function.js +213 -0
  162. package/template/lib/react/node_modules/eslint/lib/rules/max-lines.js +193 -0
  163. package/template/lib/react/node_modules/eslint/lib/rules/max-nested-callbacks.js +117 -0
  164. package/template/lib/react/node_modules/eslint/lib/rules/max-params.js +102 -0
  165. package/template/lib/react/node_modules/eslint/lib/rules/max-statements-per-line.js +199 -0
  166. package/template/lib/react/node_modules/eslint/lib/rules/max-statements.js +184 -0
  167. package/template/lib/react/node_modules/eslint/lib/rules/multiline-comment-style.js +474 -0
  168. package/template/lib/react/node_modules/eslint/lib/rules/multiline-ternary.js +174 -0
  169. package/template/lib/react/node_modules/eslint/lib/rules/new-cap.js +276 -0
  170. package/template/lib/react/node_modules/eslint/lib/rules/new-parens.js +93 -0
  171. package/template/lib/react/node_modules/eslint/lib/rules/newline-after-var.js +253 -0
  172. package/template/lib/react/node_modules/eslint/lib/rules/newline-before-return.js +217 -0
  173. package/template/lib/react/node_modules/eslint/lib/rules/newline-per-chained-call.js +126 -0
  174. package/template/lib/react/node_modules/eslint/lib/rules/no-alert.js +138 -0
  175. package/template/lib/react/node_modules/eslint/lib/rules/no-array-constructor.js +133 -0
  176. package/template/lib/react/node_modules/eslint/lib/rules/no-async-promise-executor.js +39 -0
  177. package/template/lib/react/node_modules/eslint/lib/rules/no-await-in-loop.js +106 -0
  178. package/template/lib/react/node_modules/eslint/lib/rules/no-bitwise.js +119 -0
  179. package/template/lib/react/node_modules/eslint/lib/rules/no-buffer-constructor.js +50 -0
  180. package/template/lib/react/node_modules/eslint/lib/rules/no-caller.js +46 -0
  181. package/template/lib/react/node_modules/eslint/lib/rules/no-case-declarations.js +64 -0
  182. package/template/lib/react/node_modules/eslint/lib/rules/no-catch-shadow.js +82 -0
  183. package/template/lib/react/node_modules/eslint/lib/rules/no-class-assign.js +63 -0
  184. package/template/lib/react/node_modules/eslint/lib/rules/no-compare-neg-zero.js +60 -0
  185. package/template/lib/react/node_modules/eslint/lib/rules/no-cond-assign.js +159 -0
  186. package/template/lib/react/node_modules/eslint/lib/rules/no-confusing-arrow.js +92 -0
  187. package/template/lib/react/node_modules/eslint/lib/rules/no-console.js +207 -0
  188. package/template/lib/react/node_modules/eslint/lib/rules/no-const-assign.js +56 -0
  189. package/template/lib/react/node_modules/eslint/lib/rules/no-constant-binary-expression.js +509 -0
  190. package/template/lib/react/node_modules/eslint/lib/rules/no-constant-condition.js +150 -0
  191. package/template/lib/react/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
  192. package/template/lib/react/node_modules/eslint/lib/rules/no-continue.js +39 -0
  193. package/template/lib/react/node_modules/eslint/lib/rules/no-control-regex.js +138 -0
  194. package/template/lib/react/node_modules/eslint/lib/rules/no-debugger.js +43 -0
  195. package/template/lib/react/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
  196. package/template/lib/react/node_modules/eslint/lib/rules/no-div-regex.js +53 -0
  197. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-args.js +82 -0
  198. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-class-members.js +104 -0
  199. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-else-if.js +122 -0
  200. package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-keys.js +142 -0
  201. package/template/lib/react/node_modules/eslint/lib/rules/no-duplicate-case.js +71 -0
  202. package/template/lib/react/node_modules/eslint/lib/rules/no-duplicate-imports.js +290 -0
  203. package/template/lib/react/node_modules/eslint/lib/rules/no-else-return.js +405 -0
  204. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-character-class.js +76 -0
  205. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-function.js +167 -0
  206. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-pattern.js +78 -0
  207. package/template/lib/react/node_modules/eslint/lib/rules/no-empty-static-block.js +47 -0
  208. package/template/lib/react/node_modules/eslint/lib/rules/no-empty.js +103 -0
  209. package/template/lib/react/node_modules/eslint/lib/rules/no-eq-null.js +46 -0
  210. package/template/lib/react/node_modules/eslint/lib/rules/no-eval.js +286 -0
  211. package/template/lib/react/node_modules/eslint/lib/rules/no-ex-assign.js +54 -0
  212. package/template/lib/react/node_modules/eslint/lib/rules/no-extend-native.js +179 -0
  213. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-bind.js +213 -0
  214. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +317 -0
  215. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-label.js +149 -0
  216. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-parens.js +1322 -0
  217. package/template/lib/react/node_modules/eslint/lib/rules/no-extra-semi.js +147 -0
  218. package/template/lib/react/node_modules/eslint/lib/rules/no-fallthrough.js +196 -0
  219. package/template/lib/react/node_modules/eslint/lib/rules/no-floating-decimal.js +73 -0
  220. package/template/lib/react/node_modules/eslint/lib/rules/no-func-assign.js +78 -0
  221. package/template/lib/react/node_modules/eslint/lib/rules/no-global-assign.js +95 -0
  222. package/template/lib/react/node_modules/eslint/lib/rules/no-implicit-coercion.js +380 -0
  223. package/template/lib/react/node_modules/eslint/lib/rules/no-implicit-globals.js +146 -0
  224. package/template/lib/react/node_modules/eslint/lib/rules/no-implied-eval.js +132 -0
  225. package/template/lib/react/node_modules/eslint/lib/rules/no-import-assign.js +241 -0
  226. package/template/lib/react/node_modules/eslint/lib/rules/no-inline-comments.js +110 -0
  227. package/template/lib/react/node_modules/eslint/lib/rules/no-inner-declarations.js +110 -0
  228. package/template/lib/react/node_modules/eslint/lib/rules/no-invalid-regexp.js +194 -0
  229. package/template/lib/react/node_modules/eslint/lib/rules/no-invalid-this.js +150 -0
  230. package/template/lib/react/node_modules/eslint/lib/rules/no-irregular-whitespace.js +276 -0
  231. package/template/lib/react/node_modules/eslint/lib/rules/no-iterator.js +52 -0
  232. package/template/lib/react/node_modules/eslint/lib/rules/no-label-var.js +80 -0
  233. package/template/lib/react/node_modules/eslint/lib/rules/no-labels.js +149 -0
  234. package/template/lib/react/node_modules/eslint/lib/rules/no-lone-blocks.js +136 -0
  235. package/template/lib/react/node_modules/eslint/lib/rules/no-lonely-if.js +88 -0
  236. package/template/lib/react/node_modules/eslint/lib/rules/no-loop-func.js +206 -0
  237. package/template/lib/react/node_modules/eslint/lib/rules/no-loss-of-precision.js +214 -0
  238. package/template/lib/react/node_modules/eslint/lib/rules/no-magic-numbers.js +243 -0
  239. package/template/lib/react/node_modules/eslint/lib/rules/no-misleading-character-class.js +300 -0
  240. package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-operators.js +229 -0
  241. package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-requires.js +238 -0
  242. package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +116 -0
  243. package/template/lib/react/node_modules/eslint/lib/rules/no-multi-assign.js +67 -0
  244. package/template/lib/react/node_modules/eslint/lib/rules/no-multi-spaces.js +141 -0
  245. package/template/lib/react/node_modules/eslint/lib/rules/no-multi-str.js +65 -0
  246. package/template/lib/react/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +154 -0
  247. package/template/lib/react/node_modules/eslint/lib/rules/no-native-reassign.js +98 -0
  248. package/template/lib/react/node_modules/eslint/lib/rules/no-negated-condition.js +95 -0
  249. package/template/lib/react/node_modules/eslint/lib/rules/no-negated-in-lhs.js +46 -0
  250. package/template/lib/react/node_modules/eslint/lib/rules/no-nested-ternary.js +44 -0
  251. package/template/lib/react/node_modules/eslint/lib/rules/no-new-func.js +87 -0
  252. package/template/lib/react/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +66 -0
  253. package/template/lib/react/node_modules/eslint/lib/rules/no-new-object.js +67 -0
  254. package/template/lib/react/node_modules/eslint/lib/rules/no-new-require.js +50 -0
  255. package/template/lib/react/node_modules/eslint/lib/rules/no-new-symbol.js +56 -0
  256. package/template/lib/react/node_modules/eslint/lib/rules/no-new-wrappers.js +60 -0
  257. package/template/lib/react/node_modules/eslint/lib/rules/no-new.js +43 -0
  258. package/template/lib/react/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +148 -0
  259. package/template/lib/react/node_modules/eslint/lib/rules/no-obj-calls.js +86 -0
  260. package/template/lib/react/node_modules/eslint/lib/rules/no-object-constructor.js +117 -0
  261. package/template/lib/react/node_modules/eslint/lib/rules/no-octal-escape.js +56 -0
  262. package/template/lib/react/node_modules/eslint/lib/rules/no-octal.js +45 -0
  263. package/template/lib/react/node_modules/eslint/lib/rules/no-param-reassign.js +230 -0
  264. package/template/lib/react/node_modules/eslint/lib/rules/no-path-concat.js +64 -0
  265. package/template/lib/react/node_modules/eslint/lib/rules/no-plusplus.js +105 -0
  266. package/template/lib/react/node_modules/eslint/lib/rules/no-process-env.js +51 -0
  267. package/template/lib/react/node_modules/eslint/lib/rules/no-process-exit.js +47 -0
  268. package/template/lib/react/node_modules/eslint/lib/rules/no-promise-executor-return.js +263 -0
  269. package/template/lib/react/node_modules/eslint/lib/rules/no-proto.js +48 -0
  270. package/template/lib/react/node_modules/eslint/lib/rules/no-prototype-builtins.js +159 -0
  271. package/template/lib/react/node_modules/eslint/lib/rules/no-redeclare.js +174 -0
  272. package/template/lib/react/node_modules/eslint/lib/rules/no-regex-spaces.js +197 -0
  273. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-exports.js +193 -0
  274. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-globals.js +124 -0
  275. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-imports.js +410 -0
  276. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-modules.js +213 -0
  277. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-properties.js +168 -0
  278. package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-syntax.js +70 -0
  279. package/template/lib/react/node_modules/eslint/lib/rules/no-return-assign.js +80 -0
  280. package/template/lib/react/node_modules/eslint/lib/rules/no-return-await.js +135 -0
  281. package/template/lib/react/node_modules/eslint/lib/rules/no-script-url.js +61 -0
  282. package/template/lib/react/node_modules/eslint/lib/rules/no-self-assign.js +183 -0
  283. package/template/lib/react/node_modules/eslint/lib/rules/no-self-compare.js +60 -0
  284. package/template/lib/react/node_modules/eslint/lib/rules/no-sequences.js +138 -0
  285. package/template/lib/react/node_modules/eslint/lib/rules/no-setter-return.js +226 -0
  286. package/template/lib/react/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +65 -0
  287. package/template/lib/react/node_modules/eslint/lib/rules/no-shadow.js +336 -0
  288. package/template/lib/react/node_modules/eslint/lib/rules/no-spaced-func.js +83 -0
  289. package/template/lib/react/node_modules/eslint/lib/rules/no-sparse-arrays.js +50 -0
  290. package/template/lib/react/node_modules/eslint/lib/rules/no-sync.js +64 -0
  291. package/template/lib/react/node_modules/eslint/lib/rules/no-tabs.js +81 -0
  292. package/template/lib/react/node_modules/eslint/lib/rules/no-template-curly-in-string.js +44 -0
  293. package/template/lib/react/node_modules/eslint/lib/rules/no-ternary.js +41 -0
  294. package/template/lib/react/node_modules/eslint/lib/rules/no-this-before-super.js +331 -0
  295. package/template/lib/react/node_modules/eslint/lib/rules/no-throw-literal.js +51 -0
  296. package/template/lib/react/node_modules/eslint/lib/rules/no-trailing-spaces.js +193 -0
  297. package/template/lib/react/node_modules/eslint/lib/rules/no-undef-init.js +75 -0
  298. package/template/lib/react/node_modules/eslint/lib/rules/no-undef.js +79 -0
  299. package/template/lib/react/node_modules/eslint/lib/rules/no-undefined.js +86 -0
  300. package/template/lib/react/node_modules/eslint/lib/rules/no-underscore-dangle.js +335 -0
  301. package/template/lib/react/node_modules/eslint/lib/rules/no-unexpected-multiline.js +120 -0
  302. package/template/lib/react/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
  303. package/template/lib/react/node_modules/eslint/lib/rules/no-unneeded-ternary.js +166 -0
  304. package/template/lib/react/node_modules/eslint/lib/rules/no-unreachable-loop.js +185 -0
  305. package/template/lib/react/node_modules/eslint/lib/rules/no-unreachable.js +293 -0
  306. package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-finally.js +111 -0
  307. package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-negation.js +128 -0
  308. package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +205 -0
  309. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-expressions.js +186 -0
  310. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-labels.js +143 -0
  311. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-private-class-members.js +195 -0
  312. package/template/lib/react/node_modules/eslint/lib/rules/no-unused-vars.js +718 -0
  313. package/template/lib/react/node_modules/eslint/lib/rules/no-use-before-define.js +348 -0
  314. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-backreference.js +194 -0
  315. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-call.js +90 -0
  316. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
  317. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-computed-key.js +168 -0
  318. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-concat.js +115 -0
  319. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-constructor.js +189 -0
  320. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-escape.js +333 -0
  321. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-rename.js +172 -0
  322. package/template/lib/react/node_modules/eslint/lib/rules/no-useless-return.js +364 -0
  323. package/template/lib/react/node_modules/eslint/lib/rules/no-var.js +334 -0
  324. package/template/lib/react/node_modules/eslint/lib/rules/no-void.js +64 -0
  325. package/template/lib/react/node_modules/eslint/lib/rules/no-warning-comments.js +201 -0
  326. package/template/lib/react/node_modules/eslint/lib/rules/no-whitespace-before-property.js +116 -0
  327. package/template/lib/react/node_modules/eslint/lib/rules/no-with.js +39 -0
  328. package/template/lib/react/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +127 -0
  329. package/template/lib/react/node_modules/eslint/lib/rules/object-curly-newline.js +324 -0
  330. package/template/lib/react/node_modules/eslint/lib/rules/object-curly-spacing.js +311 -0
  331. package/template/lib/react/node_modules/eslint/lib/rules/object-property-newline.js +102 -0
  332. package/template/lib/react/node_modules/eslint/lib/rules/object-shorthand.js +520 -0
  333. package/template/lib/react/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +95 -0
  334. package/template/lib/react/node_modules/eslint/lib/rules/one-var.js +567 -0
  335. package/template/lib/react/node_modules/eslint/lib/rules/operator-assignment.js +209 -0
  336. package/template/lib/react/node_modules/eslint/lib/rules/operator-linebreak.js +253 -0
  337. package/template/lib/react/node_modules/eslint/lib/rules/padded-blocks.js +310 -0
  338. package/template/lib/react/node_modules/eslint/lib/rules/padding-line-between-statements.js +590 -0
  339. package/template/lib/react/node_modules/eslint/lib/rules/prefer-arrow-callback.js +381 -0
  340. package/template/lib/react/node_modules/eslint/lib/rules/prefer-const.js +501 -0
  341. package/template/lib/react/node_modules/eslint/lib/rules/prefer-destructuring.js +301 -0
  342. package/template/lib/react/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +191 -0
  343. package/template/lib/react/node_modules/eslint/lib/rules/prefer-named-capture-group.js +178 -0
  344. package/template/lib/react/node_modules/eslint/lib/rules/prefer-numeric-literals.js +148 -0
  345. package/template/lib/react/node_modules/eslint/lib/rules/prefer-object-has-own.js +114 -0
  346. package/template/lib/react/node_modules/eslint/lib/rules/prefer-object-spread.js +298 -0
  347. package/template/lib/react/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +132 -0
  348. package/template/lib/react/node_modules/eslint/lib/rules/prefer-reflect.js +127 -0
  349. package/template/lib/react/node_modules/eslint/lib/rules/prefer-regex-literals.js +507 -0
  350. package/template/lib/react/node_modules/eslint/lib/rules/prefer-rest-params.js +118 -0
  351. package/template/lib/react/node_modules/eslint/lib/rules/prefer-spread.js +87 -0
  352. package/template/lib/react/node_modules/eslint/lib/rules/prefer-template.js +275 -0
  353. package/template/lib/react/node_modules/eslint/lib/rules/quote-props.js +310 -0
  354. package/template/lib/react/node_modules/eslint/lib/rules/quotes.js +350 -0
  355. package/template/lib/react/node_modules/eslint/lib/rules/radix.js +198 -0
  356. package/template/lib/react/node_modules/eslint/lib/rules/require-atomic-updates.js +331 -0
  357. package/template/lib/react/node_modules/eslint/lib/rules/require-await.js +113 -0
  358. package/template/lib/react/node_modules/eslint/lib/rules/require-jsdoc.js +122 -0
  359. package/template/lib/react/node_modules/eslint/lib/rules/require-unicode-regexp.js +129 -0
  360. package/template/lib/react/node_modules/eslint/lib/rules/require-yield.js +77 -0
  361. package/template/lib/react/node_modules/eslint/lib/rules/rest-spread-spacing.js +123 -0
  362. package/template/lib/react/node_modules/eslint/lib/rules/semi-spacing.js +248 -0
  363. package/template/lib/react/node_modules/eslint/lib/rules/semi-style.js +158 -0
  364. package/template/lib/react/node_modules/eslint/lib/rules/semi.js +438 -0
  365. package/template/lib/react/node_modules/eslint/lib/rules/sort-imports.js +241 -0
  366. package/template/lib/react/node_modules/eslint/lib/rules/sort-keys.js +230 -0
  367. package/template/lib/react/node_modules/eslint/lib/rules/sort-vars.js +104 -0
  368. package/template/lib/react/node_modules/eslint/lib/rules/space-before-blocks.js +204 -0
  369. package/template/lib/react/node_modules/eslint/lib/rules/space-before-function-paren.js +167 -0
  370. package/template/lib/react/node_modules/eslint/lib/rules/space-in-parens.js +285 -0
  371. package/template/lib/react/node_modules/eslint/lib/rules/space-infix-ops.js +198 -0
  372. package/template/lib/react/node_modules/eslint/lib/rules/space-unary-ops.js +324 -0
  373. package/template/lib/react/node_modules/eslint/lib/rules/spaced-comment.js +385 -0
  374. package/template/lib/react/node_modules/eslint/lib/rules/strict.js +277 -0
  375. package/template/lib/react/node_modules/eslint/lib/rules/switch-colon-spacing.js +132 -0
  376. package/template/lib/react/node_modules/eslint/lib/rules/symbol-description.js +73 -0
  377. package/template/lib/react/node_modules/eslint/lib/rules/template-curly-spacing.js +144 -0
  378. package/template/lib/react/node_modules/eslint/lib/rules/template-tag-spacing.js +93 -0
  379. package/template/lib/react/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
  380. package/template/lib/react/node_modules/eslint/lib/rules/use-isnan.js +141 -0
  381. package/template/lib/react/node_modules/eslint/lib/rules/utils/ast-utils.js +2282 -0
  382. package/template/lib/react/node_modules/eslint/lib/rules/utils/fix-tracker.js +114 -0
  383. package/template/lib/react/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
  384. package/template/lib/react/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +115 -0
  385. package/template/lib/react/node_modules/eslint/lib/rules/utils/patterns/letters.js +36 -0
  386. package/template/lib/react/node_modules/eslint/lib/rules/utils/regular-expressions.js +42 -0
  387. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/index.js +11 -0
  388. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
  389. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
  390. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
  391. package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
  392. package/template/lib/react/node_modules/eslint/lib/rules/valid-jsdoc.js +516 -0
  393. package/template/lib/react/node_modules/eslint/lib/rules/valid-typeof.js +127 -0
  394. package/template/lib/react/node_modules/eslint/lib/rules/vars-on-top.js +157 -0
  395. package/template/lib/react/node_modules/eslint/lib/rules/wrap-iife.js +207 -0
  396. package/template/lib/react/node_modules/eslint/lib/rules/wrap-regex.js +61 -0
  397. package/template/lib/react/node_modules/eslint/lib/rules/yield-star-spacing.js +130 -0
  398. package/template/lib/react/node_modules/eslint/lib/rules/yoda.js +353 -0
  399. package/template/lib/react/node_modules/eslint/lib/shared/ajv.js +34 -0
  400. package/template/lib/react/node_modules/eslint/lib/shared/ast-utils.js +29 -0
  401. package/template/lib/react/node_modules/eslint/lib/shared/config-validator.js +347 -0
  402. package/template/lib/react/node_modules/eslint/lib/shared/deprecation-warnings.js +58 -0
  403. package/template/lib/react/node_modules/eslint/lib/shared/directives.js +15 -0
  404. package/template/lib/react/node_modules/eslint/lib/shared/logging.js +30 -0
  405. package/template/lib/react/node_modules/eslint/lib/shared/relative-module-resolver.js +50 -0
  406. package/template/lib/react/node_modules/eslint/lib/shared/runtime-info.js +167 -0
  407. package/template/lib/react/node_modules/eslint/lib/shared/severity.js +49 -0
  408. package/template/lib/react/node_modules/eslint/lib/shared/string-utils.js +60 -0
  409. package/template/lib/react/node_modules/eslint/lib/shared/traverser.js +195 -0
  410. package/template/lib/react/node_modules/eslint/lib/shared/types.js +216 -0
  411. package/template/lib/react/node_modules/eslint/lib/source-code/index.js +5 -0
  412. package/template/lib/react/node_modules/eslint/lib/source-code/source-code.js +1055 -0
  413. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +57 -0
  414. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +58 -0
  415. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/cursor.js +76 -0
  416. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/cursors.js +90 -0
  417. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +39 -0
  418. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +43 -0
  419. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +57 -0
  420. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +63 -0
  421. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/index.js +627 -0
  422. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +40 -0
  423. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +38 -0
  424. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +42 -0
  425. package/template/lib/react/node_modules/eslint/lib/source-code/token-store/utils.js +107 -0
  426. package/template/lib/react/node_modules/eslint/lib/unsupported-api.js +30 -0
  427. package/template/lib/react/node_modules/eslint/messages/all-files-ignored.js +16 -0
  428. package/template/lib/react/node_modules/eslint/messages/eslintrc-incompat.js +98 -0
  429. package/template/lib/react/node_modules/eslint/messages/eslintrc-plugins.js +24 -0
  430. package/template/lib/react/node_modules/eslint/messages/extend-config-missing.js +13 -0
  431. package/template/lib/react/node_modules/eslint/messages/failed-to-read-json.js +11 -0
  432. package/template/lib/react/node_modules/eslint/messages/file-not-found.js +10 -0
  433. package/template/lib/react/node_modules/eslint/messages/invalid-rule-options.js +17 -0
  434. package/template/lib/react/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
  435. package/template/lib/react/node_modules/eslint/messages/no-config-found.js +15 -0
  436. package/template/lib/react/node_modules/eslint/messages/plugin-conflict.js +22 -0
  437. package/template/lib/react/node_modules/eslint/messages/plugin-invalid.js +16 -0
  438. package/template/lib/react/node_modules/eslint/messages/plugin-missing.js +19 -0
  439. package/template/lib/react/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
  440. package/template/lib/react/node_modules/eslint/messages/shared.js +18 -0
  441. package/template/lib/react/node_modules/eslint/messages/whitespace-found.js +11 -0
  442. package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint +17 -0
  443. package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint.CMD +12 -0
  444. package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint.ps1 +41 -0
  445. package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml +17 -0
  446. package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml.CMD +12 -0
  447. package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml.ps1 +41 -0
  448. package/template/lib/react/node_modules/eslint/package.json +179 -0
  449. package/template/lib/react/node_modules/eslint-import-resolver-typescript/LICENSE +5 -0
  450. package/template/lib/react/node_modules/eslint-import-resolver-typescript/README.md +232 -0
  451. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.cjs +278 -0
  452. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.d.ts +20 -0
  453. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.es2020.mjs +251 -0
  454. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.js +252 -0
  455. package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.js.map +1 -0
  456. package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint +17 -0
  457. package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.CMD +12 -0
  458. package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.ps1 +41 -0
  459. package/template/lib/react/node_modules/eslint-import-resolver-typescript/package.json +108 -0
  460. package/template/lib/react/node_modules/eslint-import-resolver-typescript/shim.d.ts +4 -0
  461. package/template/lib/react/node_modules/eslint-plugin-import/CHANGELOG.md +1925 -0
  462. package/template/lib/react/node_modules/eslint-plugin-import/CONTRIBUTING.md +84 -0
  463. package/template/lib/react/node_modules/eslint-plugin-import/LICENSE +22 -0
  464. package/template/lib/react/node_modules/eslint-plugin-import/README.md +500 -0
  465. package/template/lib/react/node_modules/eslint-plugin-import/RELEASE.md +54 -0
  466. package/template/lib/react/node_modules/eslint-plugin-import/SECURITY.md +11 -0
  467. package/template/lib/react/node_modules/eslint-plugin-import/config/electron.js +8 -0
  468. package/template/lib/react/node_modules/eslint-plugin-import/config/errors.js +14 -0
  469. package/template/lib/react/node_modules/eslint-plugin-import/config/react-native.js +13 -0
  470. package/template/lib/react/node_modules/eslint-plugin-import/config/react.js +18 -0
  471. package/template/lib/react/node_modules/eslint-plugin-import/config/recommended.js +28 -0
  472. package/template/lib/react/node_modules/eslint-plugin-import/config/stage-0.js +12 -0
  473. package/template/lib/react/node_modules/eslint-plugin-import/config/typescript.js +34 -0
  474. package/template/lib/react/node_modules/eslint-plugin-import/config/warnings.js +12 -0
  475. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +91 -0
  476. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/default.md +72 -0
  477. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +92 -0
  478. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/export.md +37 -0
  479. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/exports-last.md +51 -0
  480. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/extensions.md +174 -0
  481. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/first.md +75 -0
  482. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/group-exports.md +118 -0
  483. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/imports-first.md +9 -0
  484. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +70 -0
  485. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/named.md +102 -0
  486. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/namespace.md +106 -0
  487. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +167 -0
  488. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +54 -0
  489. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-amd.md +37 -0
  490. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +83 -0
  491. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +96 -0
  492. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +111 -0
  493. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +65 -0
  494. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +62 -0
  495. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +109 -0
  496. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +25 -0
  497. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +49 -0
  498. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +139 -0
  499. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +81 -0
  500. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +136 -0
  501. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +54 -0
  502. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +52 -0
  503. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +53 -0
  504. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +36 -0
  505. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +79 -0
  506. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +44 -0
  507. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +42 -0
  508. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +70 -0
  509. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +123 -0
  510. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +198 -0
  511. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +32 -0
  512. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +60 -0
  513. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +110 -0
  514. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +125 -0
  515. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +85 -0
  516. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +39 -0
  517. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/order.md +365 -0
  518. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +185 -0
  519. package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +57 -0
  520. package/template/lib/react/node_modules/eslint-plugin-import/lib/ExportMap.js +856 -0
  521. package/template/lib/react/node_modules/eslint-plugin-import/lib/core/importType.js +129 -0
  522. package/template/lib/react/node_modules/eslint-plugin-import/lib/core/packagePath.js +22 -0
  523. package/template/lib/react/node_modules/eslint-plugin-import/lib/core/staticRequire.js +11 -0
  524. package/template/lib/react/node_modules/eslint-plugin-import/lib/docsUrl.js +8 -0
  525. package/template/lib/react/node_modules/eslint-plugin-import/lib/importDeclaration.js +5 -0
  526. package/template/lib/react/node_modules/eslint-plugin-import/lib/index.js +71 -0
  527. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +221 -0
  528. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/default.js +40 -0
  529. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +120 -0
  530. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/export.js +250 -0
  531. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/exports-last.js +40 -0
  532. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/extensions.js +193 -0
  533. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/first.js +144 -0
  534. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/group-exports.js +155 -0
  535. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/imports-first.js +16 -0
  536. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +60 -0
  537. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/named.js +143 -0
  538. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/namespace.js +218 -0
  539. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +237 -0
  540. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +40 -0
  541. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-amd.js +47 -0
  542. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +103 -0
  543. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +141 -0
  544. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +158 -0
  545. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +43 -0
  546. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +138 -0
  547. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +354 -0
  548. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +77 -0
  549. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +105 -0
  550. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +301 -0
  551. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +85 -0
  552. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +144 -0
  553. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +59 -0
  554. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +96 -0
  555. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +45 -0
  556. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +31 -0
  557. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +39 -0
  558. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +175 -0
  559. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +44 -0
  560. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +71 -0
  561. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +48 -0
  562. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +245 -0
  563. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +39 -0
  564. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +79 -0
  565. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +60 -0
  566. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +945 -0
  567. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +147 -0
  568. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +26 -0
  569. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/order.js +785 -0
  570. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +116 -0
  571. package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +38 -0
  572. package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/LICENSE +22 -0
  573. package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/README.md +21 -0
  574. package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/index.js +41 -0
  575. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint +17 -0
  576. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint.CMD +12 -0
  577. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint.ps1 +41 -0
  578. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver +17 -0
  579. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver.CMD +12 -0
  580. package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver.ps1 +41 -0
  581. package/template/lib/react/node_modules/eslint-plugin-import/package.json +124 -0
  582. package/template/lib/react/node_modules/eslint-plugin-prettier/LICENSE.md +24 -0
  583. package/template/lib/react/node_modules/eslint-plugin-prettier/README.md +202 -0
  584. package/template/lib/react/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.d.ts +5 -0
  585. package/template/lib/react/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js +254 -0
  586. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint +17 -0
  587. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier +17 -0
  588. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.CMD +12 -0
  589. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.ps1 +41 -0
  590. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.CMD +12 -0
  591. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.ps1 +41 -0
  592. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier +17 -0
  593. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.CMD +12 -0
  594. package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.ps1 +41 -0
  595. package/template/lib/react/node_modules/eslint-plugin-prettier/package.json +101 -0
  596. package/template/lib/react/node_modules/eslint-plugin-prettier/recommended.d.ts +5 -0
  597. package/template/lib/react/node_modules/eslint-plugin-prettier/recommended.js +17 -0
  598. package/template/lib/react/node_modules/eslint-plugin-prettier/worker.js +181 -0
  599. package/template/lib/react/node_modules/eslint-plugin-react/LICENSE +22 -0
  600. package/template/lib/react/node_modules/eslint-plugin-react/README.md +420 -0
  601. package/template/lib/react/node_modules/eslint-plugin-react/configs/all.js +39 -0
  602. package/template/lib/react/node_modules/eslint-plugin-react/configs/jsx-runtime.js +18 -0
  603. package/template/lib/react/node_modules/eslint-plugin-react/configs/recommended.js +34 -0
  604. package/template/lib/react/node_modules/eslint-plugin-react/index.js +31 -0
  605. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/boolean-prop-naming.js +400 -0
  606. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/button-has-type.js +163 -0
  607. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/default-props-match-prop-types.js +108 -0
  608. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/destructuring-assignment.js +280 -0
  609. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/display-name.js +283 -0
  610. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-component-props.js +134 -0
  611. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-dom-props.js +121 -0
  612. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-elements.js +114 -0
  613. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-foreign-prop-types.js +134 -0
  614. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-prop-types.js +293 -0
  615. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/function-component-definition.js +284 -0
  616. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/hook-use-state.js +203 -0
  617. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/iframe-missing-sandbox.js +142 -0
  618. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/index.js +106 -0
  619. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-boolean-value.js +159 -0
  620. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-child-element-spacing.js +116 -0
  621. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-closing-bracket-location.js +308 -0
  622. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-closing-tag-location.js +73 -0
  623. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-brace-presence.js +414 -0
  624. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-newline.js +184 -0
  625. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-spacing.js +430 -0
  626. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-equals-spacing.js +110 -0
  627. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-filename-extension.js +110 -0
  628. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js +80 -0
  629. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-fragments.js +209 -0
  630. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-handler-names.js +171 -0
  631. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-indent-props.js +213 -0
  632. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-indent.js +441 -0
  633. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-key.js +293 -0
  634. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-max-depth.js +162 -0
  635. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-max-props-per-line.js +154 -0
  636. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-newline.js +168 -0
  637. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-bind.js +208 -0
  638. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-comment-textnodes.js +64 -0
  639. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-constructed-context-values.js +225 -0
  640. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-duplicate-props.js +76 -0
  641. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-leaked-render.js +186 -0
  642. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-literals.js +195 -0
  643. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-script-url.js +97 -0
  644. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-target-blank.js +283 -0
  645. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-undef.js +115 -0
  646. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-useless-fragment.js +257 -0
  647. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-one-expression-per-line.js +233 -0
  648. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-pascal-case.js +163 -0
  649. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces.js +134 -0
  650. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-spreading.js +141 -0
  651. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-sort-default-props.js +188 -0
  652. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-sort-props.js +530 -0
  653. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-space-before-closing.js +96 -0
  654. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-tag-spacing.js +323 -0
  655. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-uses-react.js +46 -0
  656. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-uses-vars.js +60 -0
  657. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-wrap-multilines.js +260 -0
  658. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-access-state-in-setstate.js +187 -0
  659. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-adjacent-inline-elements.js +125 -0
  660. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-array-index-key.js +288 -0
  661. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-arrow-function-lifecycle.js +144 -0
  662. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-children-prop.js +119 -0
  663. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-danger-with-children.js +155 -0
  664. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-danger.js +74 -0
  665. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-deprecated.js +258 -0
  666. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-did-mount-set-state.js +10 -0
  667. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-did-update-set-state.js +10 -0
  668. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-direct-mutation-state.js +154 -0
  669. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-find-dom-node.js +50 -0
  670. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-invalid-html-attribute.js +639 -0
  671. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-is-mounted.js +55 -0
  672. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-multi-comp.js +80 -0
  673. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-namespace.js +61 -0
  674. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-object-type-as-default-prop.js +103 -0
  675. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-redundant-should-component-update.js +87 -0
  676. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-render-return-value.js +81 -0
  677. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-set-state.js +88 -0
  678. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-string-refs.js +119 -0
  679. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-this-in-sfc.js +46 -0
  680. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-typos.js +257 -0
  681. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unescaped-entities.js +133 -0
  682. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unknown-property.js +609 -0
  683. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unsafe.js +153 -0
  684. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unstable-nested-components.js +491 -0
  685. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-class-component-methods.js +257 -0
  686. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-prop-types.js +173 -0
  687. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-state.js +522 -0
  688. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-will-update-set-state.js +14 -0
  689. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-es6-class.js +57 -0
  690. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-exact-props.js +161 -0
  691. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-read-only-props.js +116 -0
  692. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-stateless-function.js +390 -0
  693. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prop-types.js +201 -0
  694. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/react-in-jsx-scope.js +56 -0
  695. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-default-props.js +193 -0
  696. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-optimization.js +239 -0
  697. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-render-return.js +104 -0
  698. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/self-closing-comp.js +103 -0
  699. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-comp.js +446 -0
  700. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-default-props.js +174 -0
  701. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-prop-types.js +266 -0
  702. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/state-in-constructor.js +67 -0
  703. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/static-property-placement.js +187 -0
  704. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/style-prop-object.js +137 -0
  705. package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/void-dom-elements-no-children.js +165 -0
  706. package/template/lib/react/node_modules/eslint-plugin-react/lib/types.d.ts +28 -0
  707. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/Components.js +946 -0
  708. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/annotations.js +32 -0
  709. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/ast.js +461 -0
  710. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/componentUtil.js +182 -0
  711. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/defaultProps.js +268 -0
  712. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/docsUrl.js +7 -0
  713. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/error.js +14 -0
  714. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js +16 -0
  715. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isCreateContext.js +53 -0
  716. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isCreateElement.js +33 -0
  717. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isDestructuredFromPragmaImport.js +79 -0
  718. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isFirstLetterCapitalized.js +16 -0
  719. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/jsx.js +196 -0
  720. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/lifecycleMethods.js +30 -0
  721. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/linkComponents.js +49 -0
  722. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/log.js +14 -0
  723. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/makeNoMethodSetStateRule.js +119 -0
  724. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/message.js +8 -0
  725. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/pragma.js +72 -0
  726. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propTypes.js +1248 -0
  727. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propTypesSort.js +211 -0
  728. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propWrapper.js +61 -0
  729. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/props.js +103 -0
  730. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/report.js +12 -0
  731. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/usedPropTypes.js +569 -0
  732. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/variable.js +94 -0
  733. package/template/lib/react/node_modules/eslint-plugin-react/lib/util/version.js +161 -0
  734. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint +17 -0
  735. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint.CMD +12 -0
  736. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint.ps1 +41 -0
  737. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve +17 -0
  738. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve.CMD +12 -0
  739. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve.ps1 +41 -0
  740. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver +17 -0
  741. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver.CMD +12 -0
  742. package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver.ps1 +41 -0
  743. package/template/lib/react/node_modules/eslint-plugin-react/package.json +106 -0
  744. package/template/lib/react/node_modules/eslint-plugin-react-hooks/LICENSE +21 -0
  745. package/template/lib/react/node_modules/eslint-plugin-react-hooks/README.md +75 -0
  746. package/template/lib/react/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js +2458 -0
  747. package/template/lib/react/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.production.min.js +63 -0
  748. package/template/lib/react/node_modules/eslint-plugin-react-hooks/index.js +9 -0
  749. package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint +17 -0
  750. package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint.CMD +12 -0
  751. package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint.ps1 +41 -0
  752. package/template/lib/react/node_modules/eslint-plugin-react-hooks/package.json +39 -0
  753. package/template/lib/react/node_modules/prettier/LICENSE +4857 -0
  754. package/template/lib/react/node_modules/prettier/README.md +109 -0
  755. package/template/lib/react/node_modules/prettier/bin/prettier.cjs +68 -0
  756. package/template/lib/react/node_modules/prettier/doc.d.ts +243 -0
  757. package/template/lib/react/node_modules/prettier/doc.js +1328 -0
  758. package/template/lib/react/node_modules/prettier/doc.mjs +1300 -0
  759. package/template/lib/react/node_modules/prettier/index.cjs +648 -0
  760. package/template/lib/react/node_modules/prettier/index.d.ts +940 -0
  761. package/template/lib/react/node_modules/prettier/index.mjs +24255 -0
  762. package/template/lib/react/node_modules/prettier/internal/cli.mjs +7089 -0
  763. package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier +17 -0
  764. package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier.CMD +12 -0
  765. package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier.ps1 +41 -0
  766. package/template/lib/react/node_modules/prettier/package.json +198 -0
  767. package/template/lib/react/node_modules/prettier/plugins/acorn.d.ts +6 -0
  768. package/template/lib/react/node_modules/prettier/plugins/acorn.js +13 -0
  769. package/template/lib/react/node_modules/prettier/plugins/acorn.mjs +13 -0
  770. package/template/lib/react/node_modules/prettier/plugins/angular.d.ts +8 -0
  771. package/template/lib/react/node_modules/prettier/plugins/angular.js +1 -0
  772. package/template/lib/react/node_modules/prettier/plugins/angular.mjs +1 -0
  773. package/template/lib/react/node_modules/prettier/plugins/babel.d.ts +18 -0
  774. package/template/lib/react/node_modules/prettier/plugins/babel.js +16 -0
  775. package/template/lib/react/node_modules/prettier/plugins/babel.mjs +16 -0
  776. package/template/lib/react/node_modules/prettier/plugins/estree.d.ts +1 -0
  777. package/template/lib/react/node_modules/prettier/plugins/estree.js +36 -0
  778. package/template/lib/react/node_modules/prettier/plugins/estree.mjs +36 -0
  779. package/template/lib/react/node_modules/prettier/plugins/flow.d.ts +5 -0
  780. package/template/lib/react/node_modules/prettier/plugins/flow.js +21 -0
  781. package/template/lib/react/node_modules/prettier/plugins/flow.mjs +21 -0
  782. package/template/lib/react/node_modules/prettier/plugins/glimmer.d.ts +5 -0
  783. package/template/lib/react/node_modules/prettier/plugins/glimmer.js +30 -0
  784. package/template/lib/react/node_modules/prettier/plugins/glimmer.mjs +30 -0
  785. package/template/lib/react/node_modules/prettier/plugins/graphql.d.ts +5 -0
  786. package/template/lib/react/node_modules/prettier/plugins/graphql.js +29 -0
  787. package/template/lib/react/node_modules/prettier/plugins/graphql.mjs +29 -0
  788. package/template/lib/react/node_modules/prettier/plugins/html.d.ts +8 -0
  789. package/template/lib/react/node_modules/prettier/plugins/html.js +19 -0
  790. package/template/lib/react/node_modules/prettier/plugins/html.mjs +19 -0
  791. package/template/lib/react/node_modules/prettier/plugins/markdown.d.ts +7 -0
  792. package/template/lib/react/node_modules/prettier/plugins/markdown.js +59 -0
  793. package/template/lib/react/node_modules/prettier/plugins/markdown.mjs +59 -0
  794. package/template/lib/react/node_modules/prettier/plugins/meriyah.d.ts +5 -0
  795. package/template/lib/react/node_modules/prettier/plugins/meriyah.js +5 -0
  796. package/template/lib/react/node_modules/prettier/plugins/meriyah.mjs +5 -0
  797. package/template/lib/react/node_modules/prettier/plugins/postcss.d.ts +7 -0
  798. package/template/lib/react/node_modules/prettier/plugins/postcss.js +49 -0
  799. package/template/lib/react/node_modules/prettier/plugins/postcss.mjs +49 -0
  800. package/template/lib/react/node_modules/prettier/plugins/typescript.d.ts +5 -0
  801. package/template/lib/react/node_modules/prettier/plugins/typescript.js +25 -0
  802. package/template/lib/react/node_modules/prettier/plugins/typescript.mjs +25 -0
  803. package/template/lib/react/node_modules/prettier/plugins/yaml.d.ts +5 -0
  804. package/template/lib/react/node_modules/prettier/plugins/yaml.js +161 -0
  805. package/template/lib/react/node_modules/prettier/plugins/yaml.mjs +161 -0
  806. package/template/lib/react/node_modules/prettier/standalone.d.ts +33 -0
  807. package/template/lib/react/node_modules/prettier/standalone.js +34 -0
  808. package/template/lib/react/node_modules/prettier/standalone.mjs +34 -0
  809. package/template/lib/react/node_modules/prop-types/LICENSE +21 -0
  810. package/template/lib/react/node_modules/prop-types/README.md +302 -0
  811. package/template/lib/react/node_modules/prop-types/checkPropTypes.js +103 -0
  812. package/template/lib/react/node_modules/prop-types/factory.js +19 -0
  813. package/template/lib/react/node_modules/prop-types/factoryWithThrowingShims.js +65 -0
  814. package/template/lib/react/node_modules/prop-types/factoryWithTypeCheckers.js +610 -0
  815. package/template/lib/react/node_modules/prop-types/index.js +19 -0
  816. package/template/lib/react/node_modules/prop-types/lib/ReactPropTypesSecret.js +12 -0
  817. package/template/lib/react/node_modules/prop-types/lib/has.js +1 -0
  818. package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify +17 -0
  819. package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify.CMD +12 -0
  820. package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify.ps1 +41 -0
  821. package/template/lib/react/node_modules/prop-types/package.json +60 -0
  822. package/template/lib/react/node_modules/prop-types/prop-types.js +1315 -0
  823. package/template/lib/react/node_modules/prop-types/prop-types.min.js +1 -0
  824. package/template/lib/react/node_modules/react/LICENSE +21 -0
  825. package/template/lib/react/node_modules/react/README.md +37 -0
  826. package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1296 -0
  827. package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
  828. package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
  829. package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.development.js +1314 -0
  830. package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
  831. package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
  832. package/template/lib/react/node_modules/react/cjs/react.development.js +2739 -0
  833. package/template/lib/react/node_modules/react/cjs/react.production.min.js +26 -0
  834. package/template/lib/react/node_modules/react/cjs/react.shared-subset.development.js +20 -0
  835. package/template/lib/react/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
  836. package/template/lib/react/node_modules/react/index.js +7 -0
  837. package/template/lib/react/node_modules/react/jsx-dev-runtime.js +7 -0
  838. package/template/lib/react/node_modules/react/jsx-runtime.js +7 -0
  839. package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify +17 -0
  840. package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify.CMD +12 -0
  841. package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify.ps1 +41 -0
  842. package/template/lib/react/node_modules/react/package.json +47 -0
  843. package/template/lib/react/node_modules/react/react.shared-subset.js +7 -0
  844. package/template/lib/react/node_modules/react/umd/react.development.js +3342 -0
  845. package/template/lib/react/node_modules/react/umd/react.production.min.js +31 -0
  846. package/template/lib/react/node_modules/react/umd/react.profiling.min.js +31 -0
  847. package/template/lib/react/node_modules/react-dom/LICENSE +21 -0
  848. package/template/lib/react/node_modules/react-dom/README.md +60 -0
  849. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +7018 -0
  850. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
  851. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +7078 -0
  852. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
  853. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.browser.development.js +7003 -0
  854. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
  855. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.node.development.js +7059 -0
  856. package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
  857. package/template/lib/react/node_modules/react-dom/cjs/react-dom-test-utils.development.js +1741 -0
  858. package/template/lib/react/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +40 -0
  859. package/template/lib/react/node_modules/react-dom/cjs/react-dom.development.js +29868 -0
  860. package/template/lib/react/node_modules/react-dom/cjs/react-dom.production.min.js +323 -0
  861. package/template/lib/react/node_modules/react-dom/cjs/react-dom.profiling.min.js +367 -0
  862. package/template/lib/react/node_modules/react-dom/client.js +25 -0
  863. package/template/lib/react/node_modules/react-dom/index.js +38 -0
  864. package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify +17 -0
  865. package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify.CMD +12 -0
  866. package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify.ps1 +41 -0
  867. package/template/lib/react/node_modules/react-dom/package.json +62 -0
  868. package/template/lib/react/node_modules/react-dom/profiling.js +38 -0
  869. package/template/lib/react/node_modules/react-dom/server.browser.js +17 -0
  870. package/template/lib/react/node_modules/react-dom/server.js +3 -0
  871. package/template/lib/react/node_modules/react-dom/server.node.js +17 -0
  872. package/template/lib/react/node_modules/react-dom/test-utils.js +7 -0
  873. package/template/lib/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +7015 -0
  874. package/template/lib/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +75 -0
  875. package/template/lib/react/node_modules/react-dom/umd/react-dom-server.browser.development.js +7000 -0
  876. package/template/lib/react/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +76 -0
  877. package/template/lib/react/node_modules/react-dom/umd/react-dom-test-utils.development.js +1737 -0
  878. package/template/lib/react/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +33 -0
  879. package/template/lib/react/node_modules/react-dom/umd/react-dom.development.js +29869 -0
  880. package/template/lib/react/node_modules/react-dom/umd/react-dom.production.min.js +267 -0
  881. package/template/lib/react/node_modules/react-dom/umd/react-dom.profiling.min.js +285 -0
  882. package/template/lib/react/node_modules/stylelint-config-standard-scss/LICENSE +21 -0
  883. package/template/lib/react/node_modules/stylelint-config-standard-scss/README.md +50 -0
  884. package/template/lib/react/node_modules/stylelint-config-standard-scss/index.js +67 -0
  885. package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint +17 -0
  886. package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.CMD +12 -0
  887. package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.ps1 +41 -0
  888. package/template/lib/react/node_modules/stylelint-config-standard-scss/package.json +58 -0
  889. package/template/lib/ts/node_modules/.bin/acorn +17 -0
  890. package/template/lib/ts/node_modules/.bin/acorn.CMD +12 -0
  891. package/template/lib/ts/node_modules/.bin/acorn.ps1 +41 -0
  892. package/template/lib/ts/node_modules/.bin/eslint +17 -0
  893. package/template/lib/ts/node_modules/.bin/eslint.CMD +12 -0
  894. package/template/lib/ts/node_modules/.bin/eslint.ps1 +41 -0
  895. package/template/lib/ts/node_modules/.bin/prettier +17 -0
  896. package/template/lib/ts/node_modules/.bin/prettier.CMD +12 -0
  897. package/template/lib/ts/node_modules/.bin/prettier.ps1 +41 -0
  898. package/template/lib/ts/node_modules/.bin/stylelint +17 -0
  899. package/template/lib/ts/node_modules/.bin/stylelint.CMD +12 -0
  900. package/template/lib/ts/node_modules/.bin/stylelint.ps1 +41 -0
  901. package/template/lib/ts/node_modules/.bin/tsc +17 -0
  902. package/template/lib/ts/node_modules/.bin/tsc.CMD +12 -0
  903. package/template/lib/ts/node_modules/.bin/tsc.ps1 +41 -0
  904. package/template/lib/ts/node_modules/.bin/tsserver +17 -0
  905. package/template/lib/ts/node_modules/.bin/tsserver.CMD +12 -0
  906. package/template/lib/ts/node_modules/.bin/tsserver.ps1 +41 -0
  907. package/template/lib/ts/node_modules/.bin/vitest +17 -0
  908. package/template/lib/ts/node_modules/.bin/vitest.CMD +12 -0
  909. package/template/lib/ts/node_modules/.bin/vitest.ps1 +41 -0
  910. package/template/lib/ts/node_modules/eslint/LICENSE +19 -0
  911. package/template/lib/ts/node_modules/eslint/README.md +304 -0
  912. package/template/lib/ts/node_modules/eslint/bin/eslint.js +173 -0
  913. package/template/lib/ts/node_modules/eslint/conf/config-schema.js +93 -0
  914. package/template/lib/ts/node_modules/eslint/conf/default-cli-options.js +32 -0
  915. package/template/lib/ts/node_modules/eslint/conf/globals.js +154 -0
  916. package/template/lib/ts/node_modules/eslint/conf/replacements.json +22 -0
  917. package/template/lib/ts/node_modules/eslint/conf/rule-type-list.json +28 -0
  918. package/template/lib/ts/node_modules/eslint/lib/api.js +26 -0
  919. package/template/lib/ts/node_modules/eslint/lib/cli-engine/cli-engine.js +1078 -0
  920. package/template/lib/ts/node_modules/eslint/lib/cli-engine/file-enumerator.js +547 -0
  921. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +60 -0
  922. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/compact.js +60 -0
  923. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +46 -0
  924. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/html.js +351 -0
  925. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +41 -0
  926. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
  927. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
  928. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/junit.js +82 -0
  929. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/stylish.js +101 -0
  930. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/tap.js +95 -0
  931. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/unix.js +58 -0
  932. package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +63 -0
  933. package/template/lib/ts/node_modules/eslint/lib/cli-engine/hash.js +35 -0
  934. package/template/lib/ts/node_modules/eslint/lib/cli-engine/index.js +7 -0
  935. package/template/lib/ts/node_modules/eslint/lib/cli-engine/lint-result-cache.js +203 -0
  936. package/template/lib/ts/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
  937. package/template/lib/ts/node_modules/eslint/lib/cli-engine/xml-escape.js +34 -0
  938. package/template/lib/ts/node_modules/eslint/lib/cli.js +471 -0
  939. package/template/lib/ts/node_modules/eslint/lib/config/default-config.js +67 -0
  940. package/template/lib/ts/node_modules/eslint/lib/config/flat-config-array.js +274 -0
  941. package/template/lib/ts/node_modules/eslint/lib/config/flat-config-helpers.js +111 -0
  942. package/template/lib/ts/node_modules/eslint/lib/config/flat-config-schema.js +583 -0
  943. package/template/lib/ts/node_modules/eslint/lib/config/rule-validator.js +158 -0
  944. package/template/lib/ts/node_modules/eslint/lib/eslint/eslint-helpers.js +902 -0
  945. package/template/lib/ts/node_modules/eslint/lib/eslint/eslint.js +700 -0
  946. package/template/lib/ts/node_modules/eslint/lib/eslint/flat-eslint.js +1142 -0
  947. package/template/lib/ts/node_modules/eslint/lib/eslint/index.js +9 -0
  948. package/template/lib/ts/node_modules/eslint/lib/linter/apply-disable-directives.js +465 -0
  949. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +852 -0
  950. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +263 -0
  951. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2348 -0
  952. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +342 -0
  953. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +203 -0
  954. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +349 -0
  955. package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +45 -0
  956. package/template/lib/ts/node_modules/eslint/lib/linter/config-comment-parser.js +185 -0
  957. package/template/lib/ts/node_modules/eslint/lib/linter/index.js +13 -0
  958. package/template/lib/ts/node_modules/eslint/lib/linter/interpolate.js +28 -0
  959. package/template/lib/ts/node_modules/eslint/lib/linter/linter.js +2119 -0
  960. package/template/lib/ts/node_modules/eslint/lib/linter/node-event-generator.js +354 -0
  961. package/template/lib/ts/node_modules/eslint/lib/linter/report-translator.js +369 -0
  962. package/template/lib/ts/node_modules/eslint/lib/linter/rule-fixer.js +140 -0
  963. package/template/lib/ts/node_modules/eslint/lib/linter/rules.js +80 -0
  964. package/template/lib/ts/node_modules/eslint/lib/linter/safe-emitter.js +52 -0
  965. package/template/lib/ts/node_modules/eslint/lib/linter/source-code-fixer.js +152 -0
  966. package/template/lib/ts/node_modules/eslint/lib/linter/timing.js +161 -0
  967. package/template/lib/ts/node_modules/eslint/lib/options.js +398 -0
  968. package/template/lib/ts/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +1122 -0
  969. package/template/lib/ts/node_modules/eslint/lib/rule-tester/index.js +5 -0
  970. package/template/lib/ts/node_modules/eslint/lib/rule-tester/rule-tester.js +1206 -0
  971. package/template/lib/ts/node_modules/eslint/lib/rules/accessor-pairs.js +346 -0
  972. package/template/lib/ts/node_modules/eslint/lib/rules/array-bracket-newline.js +261 -0
  973. package/template/lib/ts/node_modules/eslint/lib/rules/array-bracket-spacing.js +244 -0
  974. package/template/lib/ts/node_modules/eslint/lib/rules/array-callback-return.js +446 -0
  975. package/template/lib/ts/node_modules/eslint/lib/rules/array-element-newline.js +311 -0
  976. package/template/lib/ts/node_modules/eslint/lib/rules/arrow-body-style.js +296 -0
  977. package/template/lib/ts/node_modules/eslint/lib/rules/arrow-parens.js +186 -0
  978. package/template/lib/ts/node_modules/eslint/lib/rules/arrow-spacing.js +164 -0
  979. package/template/lib/ts/node_modules/eslint/lib/rules/block-scoped-var.js +135 -0
  980. package/template/lib/ts/node_modules/eslint/lib/rules/block-spacing.js +174 -0
  981. package/template/lib/ts/node_modules/eslint/lib/rules/brace-style.js +197 -0
  982. package/template/lib/ts/node_modules/eslint/lib/rules/callback-return.js +187 -0
  983. package/template/lib/ts/node_modules/eslint/lib/rules/camelcase.js +399 -0
  984. package/template/lib/ts/node_modules/eslint/lib/rules/capitalized-comments.js +300 -0
  985. package/template/lib/ts/node_modules/eslint/lib/rules/class-methods-use-this.js +187 -0
  986. package/template/lib/ts/node_modules/eslint/lib/rules/comma-dangle.js +373 -0
  987. package/template/lib/ts/node_modules/eslint/lib/rules/comma-spacing.js +192 -0
  988. package/template/lib/ts/node_modules/eslint/lib/rules/comma-style.js +314 -0
  989. package/template/lib/ts/node_modules/eslint/lib/rules/complexity.js +165 -0
  990. package/template/lib/ts/node_modules/eslint/lib/rules/computed-property-spacing.js +208 -0
  991. package/template/lib/ts/node_modules/eslint/lib/rules/consistent-return.js +210 -0
  992. package/template/lib/ts/node_modules/eslint/lib/rules/consistent-this.js +153 -0
  993. package/template/lib/ts/node_modules/eslint/lib/rules/constructor-super.js +446 -0
  994. package/template/lib/ts/node_modules/eslint/lib/rules/curly.js +486 -0
  995. package/template/lib/ts/node_modules/eslint/lib/rules/default-case-last.js +44 -0
  996. package/template/lib/ts/node_modules/eslint/lib/rules/default-case.js +97 -0
  997. package/template/lib/ts/node_modules/eslint/lib/rules/default-param-last.js +62 -0
  998. package/template/lib/ts/node_modules/eslint/lib/rules/dot-location.js +108 -0
  999. package/template/lib/ts/node_modules/eslint/lib/rules/dot-notation.js +176 -0
  1000. package/template/lib/ts/node_modules/eslint/lib/rules/eol-last.js +115 -0
  1001. package/template/lib/ts/node_modules/eslint/lib/rules/eqeqeq.js +174 -0
  1002. package/template/lib/ts/node_modules/eslint/lib/rules/for-direction.js +140 -0
  1003. package/template/lib/ts/node_modules/eslint/lib/rules/func-call-spacing.js +233 -0
  1004. package/template/lib/ts/node_modules/eslint/lib/rules/func-name-matching.js +253 -0
  1005. package/template/lib/ts/node_modules/eslint/lib/rules/func-names.js +191 -0
  1006. package/template/lib/ts/node_modules/eslint/lib/rules/func-style.js +98 -0
  1007. package/template/lib/ts/node_modules/eslint/lib/rules/function-call-argument-newline.js +125 -0
  1008. package/template/lib/ts/node_modules/eslint/lib/rules/function-paren-newline.js +292 -0
  1009. package/template/lib/ts/node_modules/eslint/lib/rules/generator-star-spacing.js +209 -0
  1010. package/template/lib/ts/node_modules/eslint/lib/rules/getter-return.js +204 -0
  1011. package/template/lib/ts/node_modules/eslint/lib/rules/global-require.js +90 -0
  1012. package/template/lib/ts/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +215 -0
  1013. package/template/lib/ts/node_modules/eslint/lib/rules/guard-for-in.js +76 -0
  1014. package/template/lib/ts/node_modules/eslint/lib/rules/handle-callback-err.js +101 -0
  1015. package/template/lib/ts/node_modules/eslint/lib/rules/id-blacklist.js +246 -0
  1016. package/template/lib/ts/node_modules/eslint/lib/rules/id-denylist.js +228 -0
  1017. package/template/lib/ts/node_modules/eslint/lib/rules/id-length.js +177 -0
  1018. package/template/lib/ts/node_modules/eslint/lib/rules/id-match.js +299 -0
  1019. package/template/lib/ts/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +84 -0
  1020. package/template/lib/ts/node_modules/eslint/lib/rules/indent-legacy.js +1126 -0
  1021. package/template/lib/ts/node_modules/eslint/lib/rules/indent.js +1803 -0
  1022. package/template/lib/ts/node_modules/eslint/lib/rules/index.js +306 -0
  1023. package/template/lib/ts/node_modules/eslint/lib/rules/init-declarations.js +139 -0
  1024. package/template/lib/ts/node_modules/eslint/lib/rules/jsx-quotes.js +98 -0
  1025. package/template/lib/ts/node_modules/eslint/lib/rules/key-spacing.js +687 -0
  1026. package/template/lib/ts/node_modules/eslint/lib/rules/keyword-spacing.js +640 -0
  1027. package/template/lib/ts/node_modules/eslint/lib/rules/line-comment-position.js +122 -0
  1028. package/template/lib/ts/node_modules/eslint/lib/rules/linebreak-style.js +108 -0
  1029. package/template/lib/ts/node_modules/eslint/lib/rules/lines-around-comment.js +471 -0
  1030. package/template/lib/ts/node_modules/eslint/lib/rules/lines-around-directive.js +201 -0
  1031. package/template/lib/ts/node_modules/eslint/lib/rules/lines-between-class-members.js +269 -0
  1032. package/template/lib/ts/node_modules/eslint/lib/rules/logical-assignment-operators.js +504 -0
  1033. package/template/lib/ts/node_modules/eslint/lib/rules/max-classes-per-file.js +89 -0
  1034. package/template/lib/ts/node_modules/eslint/lib/rules/max-depth.js +156 -0
  1035. package/template/lib/ts/node_modules/eslint/lib/rules/max-len.js +440 -0
  1036. package/template/lib/ts/node_modules/eslint/lib/rules/max-lines-per-function.js +213 -0
  1037. package/template/lib/ts/node_modules/eslint/lib/rules/max-lines.js +193 -0
  1038. package/template/lib/ts/node_modules/eslint/lib/rules/max-nested-callbacks.js +117 -0
  1039. package/template/lib/ts/node_modules/eslint/lib/rules/max-params.js +102 -0
  1040. package/template/lib/ts/node_modules/eslint/lib/rules/max-statements-per-line.js +199 -0
  1041. package/template/lib/ts/node_modules/eslint/lib/rules/max-statements.js +184 -0
  1042. package/template/lib/ts/node_modules/eslint/lib/rules/multiline-comment-style.js +474 -0
  1043. package/template/lib/ts/node_modules/eslint/lib/rules/multiline-ternary.js +174 -0
  1044. package/template/lib/ts/node_modules/eslint/lib/rules/new-cap.js +276 -0
  1045. package/template/lib/ts/node_modules/eslint/lib/rules/new-parens.js +93 -0
  1046. package/template/lib/ts/node_modules/eslint/lib/rules/newline-after-var.js +253 -0
  1047. package/template/lib/ts/node_modules/eslint/lib/rules/newline-before-return.js +217 -0
  1048. package/template/lib/ts/node_modules/eslint/lib/rules/newline-per-chained-call.js +126 -0
  1049. package/template/lib/ts/node_modules/eslint/lib/rules/no-alert.js +138 -0
  1050. package/template/lib/ts/node_modules/eslint/lib/rules/no-array-constructor.js +133 -0
  1051. package/template/lib/ts/node_modules/eslint/lib/rules/no-async-promise-executor.js +39 -0
  1052. package/template/lib/ts/node_modules/eslint/lib/rules/no-await-in-loop.js +106 -0
  1053. package/template/lib/ts/node_modules/eslint/lib/rules/no-bitwise.js +119 -0
  1054. package/template/lib/ts/node_modules/eslint/lib/rules/no-buffer-constructor.js +50 -0
  1055. package/template/lib/ts/node_modules/eslint/lib/rules/no-caller.js +46 -0
  1056. package/template/lib/ts/node_modules/eslint/lib/rules/no-case-declarations.js +64 -0
  1057. package/template/lib/ts/node_modules/eslint/lib/rules/no-catch-shadow.js +82 -0
  1058. package/template/lib/ts/node_modules/eslint/lib/rules/no-class-assign.js +63 -0
  1059. package/template/lib/ts/node_modules/eslint/lib/rules/no-compare-neg-zero.js +60 -0
  1060. package/template/lib/ts/node_modules/eslint/lib/rules/no-cond-assign.js +159 -0
  1061. package/template/lib/ts/node_modules/eslint/lib/rules/no-confusing-arrow.js +92 -0
  1062. package/template/lib/ts/node_modules/eslint/lib/rules/no-console.js +207 -0
  1063. package/template/lib/ts/node_modules/eslint/lib/rules/no-const-assign.js +56 -0
  1064. package/template/lib/ts/node_modules/eslint/lib/rules/no-constant-binary-expression.js +509 -0
  1065. package/template/lib/ts/node_modules/eslint/lib/rules/no-constant-condition.js +150 -0
  1066. package/template/lib/ts/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
  1067. package/template/lib/ts/node_modules/eslint/lib/rules/no-continue.js +39 -0
  1068. package/template/lib/ts/node_modules/eslint/lib/rules/no-control-regex.js +138 -0
  1069. package/template/lib/ts/node_modules/eslint/lib/rules/no-debugger.js +43 -0
  1070. package/template/lib/ts/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
  1071. package/template/lib/ts/node_modules/eslint/lib/rules/no-div-regex.js +53 -0
  1072. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-args.js +82 -0
  1073. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-class-members.js +104 -0
  1074. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-else-if.js +122 -0
  1075. package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-keys.js +142 -0
  1076. package/template/lib/ts/node_modules/eslint/lib/rules/no-duplicate-case.js +71 -0
  1077. package/template/lib/ts/node_modules/eslint/lib/rules/no-duplicate-imports.js +290 -0
  1078. package/template/lib/ts/node_modules/eslint/lib/rules/no-else-return.js +405 -0
  1079. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-character-class.js +76 -0
  1080. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-function.js +167 -0
  1081. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-pattern.js +78 -0
  1082. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-static-block.js +47 -0
  1083. package/template/lib/ts/node_modules/eslint/lib/rules/no-empty.js +103 -0
  1084. package/template/lib/ts/node_modules/eslint/lib/rules/no-eq-null.js +46 -0
  1085. package/template/lib/ts/node_modules/eslint/lib/rules/no-eval.js +286 -0
  1086. package/template/lib/ts/node_modules/eslint/lib/rules/no-ex-assign.js +54 -0
  1087. package/template/lib/ts/node_modules/eslint/lib/rules/no-extend-native.js +179 -0
  1088. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-bind.js +213 -0
  1089. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +317 -0
  1090. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-label.js +149 -0
  1091. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-parens.js +1322 -0
  1092. package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-semi.js +147 -0
  1093. package/template/lib/ts/node_modules/eslint/lib/rules/no-fallthrough.js +196 -0
  1094. package/template/lib/ts/node_modules/eslint/lib/rules/no-floating-decimal.js +73 -0
  1095. package/template/lib/ts/node_modules/eslint/lib/rules/no-func-assign.js +78 -0
  1096. package/template/lib/ts/node_modules/eslint/lib/rules/no-global-assign.js +95 -0
  1097. package/template/lib/ts/node_modules/eslint/lib/rules/no-implicit-coercion.js +380 -0
  1098. package/template/lib/ts/node_modules/eslint/lib/rules/no-implicit-globals.js +146 -0
  1099. package/template/lib/ts/node_modules/eslint/lib/rules/no-implied-eval.js +132 -0
  1100. package/template/lib/ts/node_modules/eslint/lib/rules/no-import-assign.js +241 -0
  1101. package/template/lib/ts/node_modules/eslint/lib/rules/no-inline-comments.js +110 -0
  1102. package/template/lib/ts/node_modules/eslint/lib/rules/no-inner-declarations.js +110 -0
  1103. package/template/lib/ts/node_modules/eslint/lib/rules/no-invalid-regexp.js +194 -0
  1104. package/template/lib/ts/node_modules/eslint/lib/rules/no-invalid-this.js +150 -0
  1105. package/template/lib/ts/node_modules/eslint/lib/rules/no-irregular-whitespace.js +276 -0
  1106. package/template/lib/ts/node_modules/eslint/lib/rules/no-iterator.js +52 -0
  1107. package/template/lib/ts/node_modules/eslint/lib/rules/no-label-var.js +80 -0
  1108. package/template/lib/ts/node_modules/eslint/lib/rules/no-labels.js +149 -0
  1109. package/template/lib/ts/node_modules/eslint/lib/rules/no-lone-blocks.js +136 -0
  1110. package/template/lib/ts/node_modules/eslint/lib/rules/no-lonely-if.js +88 -0
  1111. package/template/lib/ts/node_modules/eslint/lib/rules/no-loop-func.js +206 -0
  1112. package/template/lib/ts/node_modules/eslint/lib/rules/no-loss-of-precision.js +214 -0
  1113. package/template/lib/ts/node_modules/eslint/lib/rules/no-magic-numbers.js +243 -0
  1114. package/template/lib/ts/node_modules/eslint/lib/rules/no-misleading-character-class.js +300 -0
  1115. package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-operators.js +229 -0
  1116. package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-requires.js +238 -0
  1117. package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +116 -0
  1118. package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-assign.js +67 -0
  1119. package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-spaces.js +141 -0
  1120. package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-str.js +65 -0
  1121. package/template/lib/ts/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +154 -0
  1122. package/template/lib/ts/node_modules/eslint/lib/rules/no-native-reassign.js +98 -0
  1123. package/template/lib/ts/node_modules/eslint/lib/rules/no-negated-condition.js +95 -0
  1124. package/template/lib/ts/node_modules/eslint/lib/rules/no-negated-in-lhs.js +46 -0
  1125. package/template/lib/ts/node_modules/eslint/lib/rules/no-nested-ternary.js +44 -0
  1126. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-func.js +87 -0
  1127. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +66 -0
  1128. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-object.js +67 -0
  1129. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-require.js +50 -0
  1130. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-symbol.js +56 -0
  1131. package/template/lib/ts/node_modules/eslint/lib/rules/no-new-wrappers.js +60 -0
  1132. package/template/lib/ts/node_modules/eslint/lib/rules/no-new.js +43 -0
  1133. package/template/lib/ts/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +148 -0
  1134. package/template/lib/ts/node_modules/eslint/lib/rules/no-obj-calls.js +86 -0
  1135. package/template/lib/ts/node_modules/eslint/lib/rules/no-object-constructor.js +117 -0
  1136. package/template/lib/ts/node_modules/eslint/lib/rules/no-octal-escape.js +56 -0
  1137. package/template/lib/ts/node_modules/eslint/lib/rules/no-octal.js +45 -0
  1138. package/template/lib/ts/node_modules/eslint/lib/rules/no-param-reassign.js +230 -0
  1139. package/template/lib/ts/node_modules/eslint/lib/rules/no-path-concat.js +64 -0
  1140. package/template/lib/ts/node_modules/eslint/lib/rules/no-plusplus.js +105 -0
  1141. package/template/lib/ts/node_modules/eslint/lib/rules/no-process-env.js +51 -0
  1142. package/template/lib/ts/node_modules/eslint/lib/rules/no-process-exit.js +47 -0
  1143. package/template/lib/ts/node_modules/eslint/lib/rules/no-promise-executor-return.js +263 -0
  1144. package/template/lib/ts/node_modules/eslint/lib/rules/no-proto.js +48 -0
  1145. package/template/lib/ts/node_modules/eslint/lib/rules/no-prototype-builtins.js +159 -0
  1146. package/template/lib/ts/node_modules/eslint/lib/rules/no-redeclare.js +174 -0
  1147. package/template/lib/ts/node_modules/eslint/lib/rules/no-regex-spaces.js +197 -0
  1148. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-exports.js +193 -0
  1149. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-globals.js +124 -0
  1150. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-imports.js +410 -0
  1151. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-modules.js +213 -0
  1152. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-properties.js +168 -0
  1153. package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-syntax.js +70 -0
  1154. package/template/lib/ts/node_modules/eslint/lib/rules/no-return-assign.js +80 -0
  1155. package/template/lib/ts/node_modules/eslint/lib/rules/no-return-await.js +135 -0
  1156. package/template/lib/ts/node_modules/eslint/lib/rules/no-script-url.js +61 -0
  1157. package/template/lib/ts/node_modules/eslint/lib/rules/no-self-assign.js +183 -0
  1158. package/template/lib/ts/node_modules/eslint/lib/rules/no-self-compare.js +60 -0
  1159. package/template/lib/ts/node_modules/eslint/lib/rules/no-sequences.js +138 -0
  1160. package/template/lib/ts/node_modules/eslint/lib/rules/no-setter-return.js +226 -0
  1161. package/template/lib/ts/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +65 -0
  1162. package/template/lib/ts/node_modules/eslint/lib/rules/no-shadow.js +336 -0
  1163. package/template/lib/ts/node_modules/eslint/lib/rules/no-spaced-func.js +83 -0
  1164. package/template/lib/ts/node_modules/eslint/lib/rules/no-sparse-arrays.js +50 -0
  1165. package/template/lib/ts/node_modules/eslint/lib/rules/no-sync.js +64 -0
  1166. package/template/lib/ts/node_modules/eslint/lib/rules/no-tabs.js +81 -0
  1167. package/template/lib/ts/node_modules/eslint/lib/rules/no-template-curly-in-string.js +44 -0
  1168. package/template/lib/ts/node_modules/eslint/lib/rules/no-ternary.js +41 -0
  1169. package/template/lib/ts/node_modules/eslint/lib/rules/no-this-before-super.js +331 -0
  1170. package/template/lib/ts/node_modules/eslint/lib/rules/no-throw-literal.js +51 -0
  1171. package/template/lib/ts/node_modules/eslint/lib/rules/no-trailing-spaces.js +193 -0
  1172. package/template/lib/ts/node_modules/eslint/lib/rules/no-undef-init.js +75 -0
  1173. package/template/lib/ts/node_modules/eslint/lib/rules/no-undef.js +79 -0
  1174. package/template/lib/ts/node_modules/eslint/lib/rules/no-undefined.js +86 -0
  1175. package/template/lib/ts/node_modules/eslint/lib/rules/no-underscore-dangle.js +335 -0
  1176. package/template/lib/ts/node_modules/eslint/lib/rules/no-unexpected-multiline.js +120 -0
  1177. package/template/lib/ts/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
  1178. package/template/lib/ts/node_modules/eslint/lib/rules/no-unneeded-ternary.js +166 -0
  1179. package/template/lib/ts/node_modules/eslint/lib/rules/no-unreachable-loop.js +185 -0
  1180. package/template/lib/ts/node_modules/eslint/lib/rules/no-unreachable.js +293 -0
  1181. package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-finally.js +111 -0
  1182. package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-negation.js +128 -0
  1183. package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +205 -0
  1184. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-expressions.js +186 -0
  1185. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-labels.js +143 -0
  1186. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-private-class-members.js +195 -0
  1187. package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-vars.js +718 -0
  1188. package/template/lib/ts/node_modules/eslint/lib/rules/no-use-before-define.js +348 -0
  1189. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-backreference.js +194 -0
  1190. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-call.js +90 -0
  1191. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
  1192. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-computed-key.js +168 -0
  1193. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-concat.js +115 -0
  1194. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-constructor.js +189 -0
  1195. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-escape.js +333 -0
  1196. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-rename.js +172 -0
  1197. package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-return.js +364 -0
  1198. package/template/lib/ts/node_modules/eslint/lib/rules/no-var.js +334 -0
  1199. package/template/lib/ts/node_modules/eslint/lib/rules/no-void.js +64 -0
  1200. package/template/lib/ts/node_modules/eslint/lib/rules/no-warning-comments.js +201 -0
  1201. package/template/lib/ts/node_modules/eslint/lib/rules/no-whitespace-before-property.js +116 -0
  1202. package/template/lib/ts/node_modules/eslint/lib/rules/no-with.js +39 -0
  1203. package/template/lib/ts/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +127 -0
  1204. package/template/lib/ts/node_modules/eslint/lib/rules/object-curly-newline.js +324 -0
  1205. package/template/lib/ts/node_modules/eslint/lib/rules/object-curly-spacing.js +311 -0
  1206. package/template/lib/ts/node_modules/eslint/lib/rules/object-property-newline.js +102 -0
  1207. package/template/lib/ts/node_modules/eslint/lib/rules/object-shorthand.js +520 -0
  1208. package/template/lib/ts/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +95 -0
  1209. package/template/lib/ts/node_modules/eslint/lib/rules/one-var.js +567 -0
  1210. package/template/lib/ts/node_modules/eslint/lib/rules/operator-assignment.js +209 -0
  1211. package/template/lib/ts/node_modules/eslint/lib/rules/operator-linebreak.js +253 -0
  1212. package/template/lib/ts/node_modules/eslint/lib/rules/padded-blocks.js +310 -0
  1213. package/template/lib/ts/node_modules/eslint/lib/rules/padding-line-between-statements.js +590 -0
  1214. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-arrow-callback.js +381 -0
  1215. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-const.js +501 -0
  1216. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-destructuring.js +301 -0
  1217. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +191 -0
  1218. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-named-capture-group.js +178 -0
  1219. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-numeric-literals.js +148 -0
  1220. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-object-has-own.js +114 -0
  1221. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-object-spread.js +298 -0
  1222. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +132 -0
  1223. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-reflect.js +127 -0
  1224. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-regex-literals.js +507 -0
  1225. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-rest-params.js +118 -0
  1226. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-spread.js +87 -0
  1227. package/template/lib/ts/node_modules/eslint/lib/rules/prefer-template.js +275 -0
  1228. package/template/lib/ts/node_modules/eslint/lib/rules/quote-props.js +310 -0
  1229. package/template/lib/ts/node_modules/eslint/lib/rules/quotes.js +350 -0
  1230. package/template/lib/ts/node_modules/eslint/lib/rules/radix.js +198 -0
  1231. package/template/lib/ts/node_modules/eslint/lib/rules/require-atomic-updates.js +331 -0
  1232. package/template/lib/ts/node_modules/eslint/lib/rules/require-await.js +113 -0
  1233. package/template/lib/ts/node_modules/eslint/lib/rules/require-jsdoc.js +122 -0
  1234. package/template/lib/ts/node_modules/eslint/lib/rules/require-unicode-regexp.js +129 -0
  1235. package/template/lib/ts/node_modules/eslint/lib/rules/require-yield.js +77 -0
  1236. package/template/lib/ts/node_modules/eslint/lib/rules/rest-spread-spacing.js +123 -0
  1237. package/template/lib/ts/node_modules/eslint/lib/rules/semi-spacing.js +248 -0
  1238. package/template/lib/ts/node_modules/eslint/lib/rules/semi-style.js +158 -0
  1239. package/template/lib/ts/node_modules/eslint/lib/rules/semi.js +438 -0
  1240. package/template/lib/ts/node_modules/eslint/lib/rules/sort-imports.js +241 -0
  1241. package/template/lib/ts/node_modules/eslint/lib/rules/sort-keys.js +230 -0
  1242. package/template/lib/ts/node_modules/eslint/lib/rules/sort-vars.js +104 -0
  1243. package/template/lib/ts/node_modules/eslint/lib/rules/space-before-blocks.js +204 -0
  1244. package/template/lib/ts/node_modules/eslint/lib/rules/space-before-function-paren.js +167 -0
  1245. package/template/lib/ts/node_modules/eslint/lib/rules/space-in-parens.js +285 -0
  1246. package/template/lib/ts/node_modules/eslint/lib/rules/space-infix-ops.js +198 -0
  1247. package/template/lib/ts/node_modules/eslint/lib/rules/space-unary-ops.js +324 -0
  1248. package/template/lib/ts/node_modules/eslint/lib/rules/spaced-comment.js +385 -0
  1249. package/template/lib/ts/node_modules/eslint/lib/rules/strict.js +277 -0
  1250. package/template/lib/ts/node_modules/eslint/lib/rules/switch-colon-spacing.js +132 -0
  1251. package/template/lib/ts/node_modules/eslint/lib/rules/symbol-description.js +73 -0
  1252. package/template/lib/ts/node_modules/eslint/lib/rules/template-curly-spacing.js +144 -0
  1253. package/template/lib/ts/node_modules/eslint/lib/rules/template-tag-spacing.js +93 -0
  1254. package/template/lib/ts/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
  1255. package/template/lib/ts/node_modules/eslint/lib/rules/use-isnan.js +141 -0
  1256. package/template/lib/ts/node_modules/eslint/lib/rules/utils/ast-utils.js +2282 -0
  1257. package/template/lib/ts/node_modules/eslint/lib/rules/utils/fix-tracker.js +114 -0
  1258. package/template/lib/ts/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
  1259. package/template/lib/ts/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +115 -0
  1260. package/template/lib/ts/node_modules/eslint/lib/rules/utils/patterns/letters.js +36 -0
  1261. package/template/lib/ts/node_modules/eslint/lib/rules/utils/regular-expressions.js +42 -0
  1262. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/index.js +11 -0
  1263. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
  1264. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
  1265. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
  1266. package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
  1267. package/template/lib/ts/node_modules/eslint/lib/rules/valid-jsdoc.js +516 -0
  1268. package/template/lib/ts/node_modules/eslint/lib/rules/valid-typeof.js +127 -0
  1269. package/template/lib/ts/node_modules/eslint/lib/rules/vars-on-top.js +157 -0
  1270. package/template/lib/ts/node_modules/eslint/lib/rules/wrap-iife.js +207 -0
  1271. package/template/lib/ts/node_modules/eslint/lib/rules/wrap-regex.js +61 -0
  1272. package/template/lib/ts/node_modules/eslint/lib/rules/yield-star-spacing.js +130 -0
  1273. package/template/lib/ts/node_modules/eslint/lib/rules/yoda.js +353 -0
  1274. package/template/lib/ts/node_modules/eslint/lib/shared/ajv.js +34 -0
  1275. package/template/lib/ts/node_modules/eslint/lib/shared/ast-utils.js +29 -0
  1276. package/template/lib/ts/node_modules/eslint/lib/shared/config-validator.js +347 -0
  1277. package/template/lib/ts/node_modules/eslint/lib/shared/deprecation-warnings.js +58 -0
  1278. package/template/lib/ts/node_modules/eslint/lib/shared/directives.js +15 -0
  1279. package/template/lib/ts/node_modules/eslint/lib/shared/logging.js +30 -0
  1280. package/template/lib/ts/node_modules/eslint/lib/shared/relative-module-resolver.js +50 -0
  1281. package/template/lib/ts/node_modules/eslint/lib/shared/runtime-info.js +167 -0
  1282. package/template/lib/ts/node_modules/eslint/lib/shared/severity.js +49 -0
  1283. package/template/lib/ts/node_modules/eslint/lib/shared/string-utils.js +60 -0
  1284. package/template/lib/ts/node_modules/eslint/lib/shared/traverser.js +195 -0
  1285. package/template/lib/ts/node_modules/eslint/lib/shared/types.js +216 -0
  1286. package/template/lib/ts/node_modules/eslint/lib/source-code/index.js +5 -0
  1287. package/template/lib/ts/node_modules/eslint/lib/source-code/source-code.js +1055 -0
  1288. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +57 -0
  1289. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +58 -0
  1290. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/cursor.js +76 -0
  1291. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/cursors.js +90 -0
  1292. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +39 -0
  1293. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +43 -0
  1294. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +57 -0
  1295. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +63 -0
  1296. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/index.js +627 -0
  1297. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +40 -0
  1298. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +38 -0
  1299. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +42 -0
  1300. package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/utils.js +107 -0
  1301. package/template/lib/ts/node_modules/eslint/lib/unsupported-api.js +30 -0
  1302. package/template/lib/ts/node_modules/eslint/messages/all-files-ignored.js +16 -0
  1303. package/template/lib/ts/node_modules/eslint/messages/eslintrc-incompat.js +98 -0
  1304. package/template/lib/ts/node_modules/eslint/messages/eslintrc-plugins.js +24 -0
  1305. package/template/lib/ts/node_modules/eslint/messages/extend-config-missing.js +13 -0
  1306. package/template/lib/ts/node_modules/eslint/messages/failed-to-read-json.js +11 -0
  1307. package/template/lib/ts/node_modules/eslint/messages/file-not-found.js +10 -0
  1308. package/template/lib/ts/node_modules/eslint/messages/invalid-rule-options.js +17 -0
  1309. package/template/lib/ts/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
  1310. package/template/lib/ts/node_modules/eslint/messages/no-config-found.js +15 -0
  1311. package/template/lib/ts/node_modules/eslint/messages/plugin-conflict.js +22 -0
  1312. package/template/lib/ts/node_modules/eslint/messages/plugin-invalid.js +16 -0
  1313. package/template/lib/ts/node_modules/eslint/messages/plugin-missing.js +19 -0
  1314. package/template/lib/ts/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
  1315. package/template/lib/ts/node_modules/eslint/messages/shared.js +18 -0
  1316. package/template/lib/ts/node_modules/eslint/messages/whitespace-found.js +11 -0
  1317. package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint +17 -0
  1318. package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint.CMD +12 -0
  1319. package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint.ps1 +41 -0
  1320. package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml +17 -0
  1321. package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml.CMD +12 -0
  1322. package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml.ps1 +41 -0
  1323. package/template/lib/ts/node_modules/eslint/package.json +179 -0
  1324. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/LICENSE +5 -0
  1325. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/README.md +232 -0
  1326. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.cjs +278 -0
  1327. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.d.ts +20 -0
  1328. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.es2020.mjs +251 -0
  1329. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.js +252 -0
  1330. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.js.map +1 -0
  1331. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint +17 -0
  1332. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.CMD +12 -0
  1333. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.ps1 +41 -0
  1334. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/package.json +108 -0
  1335. package/template/lib/ts/node_modules/eslint-import-resolver-typescript/shim.d.ts +4 -0
  1336. package/template/lib/ts/node_modules/eslint-plugin-import/CHANGELOG.md +1925 -0
  1337. package/template/lib/ts/node_modules/eslint-plugin-import/CONTRIBUTING.md +84 -0
  1338. package/template/lib/ts/node_modules/eslint-plugin-import/LICENSE +22 -0
  1339. package/template/lib/ts/node_modules/eslint-plugin-import/README.md +500 -0
  1340. package/template/lib/ts/node_modules/eslint-plugin-import/RELEASE.md +54 -0
  1341. package/template/lib/ts/node_modules/eslint-plugin-import/SECURITY.md +11 -0
  1342. package/template/lib/ts/node_modules/eslint-plugin-import/config/electron.js +8 -0
  1343. package/template/lib/ts/node_modules/eslint-plugin-import/config/errors.js +14 -0
  1344. package/template/lib/ts/node_modules/eslint-plugin-import/config/react-native.js +13 -0
  1345. package/template/lib/ts/node_modules/eslint-plugin-import/config/react.js +18 -0
  1346. package/template/lib/ts/node_modules/eslint-plugin-import/config/recommended.js +28 -0
  1347. package/template/lib/ts/node_modules/eslint-plugin-import/config/stage-0.js +12 -0
  1348. package/template/lib/ts/node_modules/eslint-plugin-import/config/typescript.js +34 -0
  1349. package/template/lib/ts/node_modules/eslint-plugin-import/config/warnings.js +12 -0
  1350. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +91 -0
  1351. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/default.md +72 -0
  1352. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +92 -0
  1353. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/export.md +37 -0
  1354. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/exports-last.md +51 -0
  1355. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/extensions.md +174 -0
  1356. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/first.md +75 -0
  1357. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/group-exports.md +118 -0
  1358. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/imports-first.md +9 -0
  1359. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +70 -0
  1360. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/named.md +102 -0
  1361. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/namespace.md +106 -0
  1362. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +167 -0
  1363. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +54 -0
  1364. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-amd.md +37 -0
  1365. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +83 -0
  1366. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +96 -0
  1367. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +111 -0
  1368. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +65 -0
  1369. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +62 -0
  1370. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +109 -0
  1371. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +25 -0
  1372. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +49 -0
  1373. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +139 -0
  1374. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +81 -0
  1375. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +136 -0
  1376. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +54 -0
  1377. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +52 -0
  1378. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +53 -0
  1379. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +36 -0
  1380. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +79 -0
  1381. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +44 -0
  1382. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +42 -0
  1383. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +70 -0
  1384. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +123 -0
  1385. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +198 -0
  1386. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +32 -0
  1387. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +60 -0
  1388. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +110 -0
  1389. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +125 -0
  1390. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +85 -0
  1391. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +39 -0
  1392. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/order.md +365 -0
  1393. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +185 -0
  1394. package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +57 -0
  1395. package/template/lib/ts/node_modules/eslint-plugin-import/lib/ExportMap.js +856 -0
  1396. package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/importType.js +129 -0
  1397. package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/packagePath.js +22 -0
  1398. package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/staticRequire.js +11 -0
  1399. package/template/lib/ts/node_modules/eslint-plugin-import/lib/docsUrl.js +8 -0
  1400. package/template/lib/ts/node_modules/eslint-plugin-import/lib/importDeclaration.js +5 -0
  1401. package/template/lib/ts/node_modules/eslint-plugin-import/lib/index.js +71 -0
  1402. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +221 -0
  1403. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/default.js +40 -0
  1404. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +120 -0
  1405. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/export.js +250 -0
  1406. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/exports-last.js +40 -0
  1407. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/extensions.js +193 -0
  1408. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/first.js +144 -0
  1409. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/group-exports.js +155 -0
  1410. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/imports-first.js +16 -0
  1411. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +60 -0
  1412. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/named.js +143 -0
  1413. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/namespace.js +218 -0
  1414. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +237 -0
  1415. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +40 -0
  1416. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-amd.js +47 -0
  1417. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +103 -0
  1418. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +141 -0
  1419. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +158 -0
  1420. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +43 -0
  1421. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +138 -0
  1422. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +354 -0
  1423. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +77 -0
  1424. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +105 -0
  1425. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +301 -0
  1426. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +85 -0
  1427. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +144 -0
  1428. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +59 -0
  1429. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +96 -0
  1430. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +45 -0
  1431. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +31 -0
  1432. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +39 -0
  1433. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +175 -0
  1434. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +44 -0
  1435. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +71 -0
  1436. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +48 -0
  1437. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +245 -0
  1438. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +39 -0
  1439. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +79 -0
  1440. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +60 -0
  1441. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +945 -0
  1442. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +147 -0
  1443. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +26 -0
  1444. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/order.js +785 -0
  1445. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +116 -0
  1446. package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +38 -0
  1447. package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/LICENSE +22 -0
  1448. package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/README.md +21 -0
  1449. package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/index.js +41 -0
  1450. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint +17 -0
  1451. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint.CMD +12 -0
  1452. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint.ps1 +41 -0
  1453. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver +17 -0
  1454. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver.CMD +12 -0
  1455. package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver.ps1 +41 -0
  1456. package/template/lib/ts/node_modules/eslint-plugin-import/package.json +124 -0
  1457. package/template/lib/ts/node_modules/eslint-plugin-prettier/LICENSE.md +24 -0
  1458. package/template/lib/ts/node_modules/eslint-plugin-prettier/README.md +202 -0
  1459. package/template/lib/ts/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.d.ts +5 -0
  1460. package/template/lib/ts/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js +254 -0
  1461. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint +17 -0
  1462. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier +17 -0
  1463. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.CMD +12 -0
  1464. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.ps1 +41 -0
  1465. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.CMD +12 -0
  1466. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.ps1 +41 -0
  1467. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier +17 -0
  1468. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.CMD +12 -0
  1469. package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.ps1 +41 -0
  1470. package/template/lib/ts/node_modules/eslint-plugin-prettier/package.json +101 -0
  1471. package/template/lib/ts/node_modules/eslint-plugin-prettier/recommended.d.ts +5 -0
  1472. package/template/lib/ts/node_modules/eslint-plugin-prettier/recommended.js +17 -0
  1473. package/template/lib/ts/node_modules/eslint-plugin-prettier/worker.js +181 -0
  1474. package/template/lib/ts/node_modules/prettier/LICENSE +4857 -0
  1475. package/template/lib/ts/node_modules/prettier/README.md +109 -0
  1476. package/template/lib/ts/node_modules/prettier/bin/prettier.cjs +68 -0
  1477. package/template/lib/ts/node_modules/prettier/doc.d.ts +243 -0
  1478. package/template/lib/ts/node_modules/prettier/doc.js +1328 -0
  1479. package/template/lib/ts/node_modules/prettier/doc.mjs +1300 -0
  1480. package/template/lib/ts/node_modules/prettier/index.cjs +648 -0
  1481. package/template/lib/ts/node_modules/prettier/index.d.ts +940 -0
  1482. package/template/lib/ts/node_modules/prettier/index.mjs +24255 -0
  1483. package/template/lib/ts/node_modules/prettier/internal/cli.mjs +7089 -0
  1484. package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier +17 -0
  1485. package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier.CMD +12 -0
  1486. package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier.ps1 +41 -0
  1487. package/template/lib/ts/node_modules/prettier/package.json +198 -0
  1488. package/template/lib/ts/node_modules/prettier/plugins/acorn.d.ts +6 -0
  1489. package/template/lib/ts/node_modules/prettier/plugins/acorn.js +13 -0
  1490. package/template/lib/ts/node_modules/prettier/plugins/acorn.mjs +13 -0
  1491. package/template/lib/ts/node_modules/prettier/plugins/angular.d.ts +8 -0
  1492. package/template/lib/ts/node_modules/prettier/plugins/angular.js +1 -0
  1493. package/template/lib/ts/node_modules/prettier/plugins/angular.mjs +1 -0
  1494. package/template/lib/ts/node_modules/prettier/plugins/babel.d.ts +18 -0
  1495. package/template/lib/ts/node_modules/prettier/plugins/babel.js +16 -0
  1496. package/template/lib/ts/node_modules/prettier/plugins/babel.mjs +16 -0
  1497. package/template/lib/ts/node_modules/prettier/plugins/estree.d.ts +1 -0
  1498. package/template/lib/ts/node_modules/prettier/plugins/estree.js +36 -0
  1499. package/template/lib/ts/node_modules/prettier/plugins/estree.mjs +36 -0
  1500. package/template/lib/ts/node_modules/prettier/plugins/flow.d.ts +5 -0
  1501. package/template/lib/ts/node_modules/prettier/plugins/flow.js +21 -0
  1502. package/template/lib/ts/node_modules/prettier/plugins/flow.mjs +21 -0
  1503. package/template/lib/ts/node_modules/prettier/plugins/glimmer.d.ts +5 -0
  1504. package/template/lib/ts/node_modules/prettier/plugins/glimmer.js +30 -0
  1505. package/template/lib/ts/node_modules/prettier/plugins/glimmer.mjs +30 -0
  1506. package/template/lib/ts/node_modules/prettier/plugins/graphql.d.ts +5 -0
  1507. package/template/lib/ts/node_modules/prettier/plugins/graphql.js +29 -0
  1508. package/template/lib/ts/node_modules/prettier/plugins/graphql.mjs +29 -0
  1509. package/template/lib/ts/node_modules/prettier/plugins/html.d.ts +8 -0
  1510. package/template/lib/ts/node_modules/prettier/plugins/html.js +19 -0
  1511. package/template/lib/ts/node_modules/prettier/plugins/html.mjs +19 -0
  1512. package/template/lib/ts/node_modules/prettier/plugins/markdown.d.ts +7 -0
  1513. package/template/lib/ts/node_modules/prettier/plugins/markdown.js +59 -0
  1514. package/template/lib/ts/node_modules/prettier/plugins/markdown.mjs +59 -0
  1515. package/template/lib/ts/node_modules/prettier/plugins/meriyah.d.ts +5 -0
  1516. package/template/lib/ts/node_modules/prettier/plugins/meriyah.js +5 -0
  1517. package/template/lib/ts/node_modules/prettier/plugins/meriyah.mjs +5 -0
  1518. package/template/lib/ts/node_modules/prettier/plugins/postcss.d.ts +7 -0
  1519. package/template/lib/ts/node_modules/prettier/plugins/postcss.js +49 -0
  1520. package/template/lib/ts/node_modules/prettier/plugins/postcss.mjs +49 -0
  1521. package/template/lib/ts/node_modules/prettier/plugins/typescript.d.ts +5 -0
  1522. package/template/lib/ts/node_modules/prettier/plugins/typescript.js +25 -0
  1523. package/template/lib/ts/node_modules/prettier/plugins/typescript.mjs +25 -0
  1524. package/template/lib/ts/node_modules/prettier/plugins/yaml.d.ts +5 -0
  1525. package/template/lib/ts/node_modules/prettier/plugins/yaml.js +161 -0
  1526. package/template/lib/ts/node_modules/prettier/plugins/yaml.mjs +161 -0
  1527. package/template/lib/ts/node_modules/prettier/standalone.d.ts +33 -0
  1528. package/template/lib/ts/node_modules/prettier/standalone.js +34 -0
  1529. package/template/lib/ts/node_modules/prettier/standalone.mjs +34 -0
  1530. package/template/lib/ts/node_modules/stylelint-config-standard-scss/LICENSE +21 -0
  1531. package/template/lib/ts/node_modules/stylelint-config-standard-scss/README.md +50 -0
  1532. package/template/lib/ts/node_modules/stylelint-config-standard-scss/index.js +67 -0
  1533. package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint +17 -0
  1534. package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.CMD +12 -0
  1535. package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.ps1 +41 -0
  1536. package/template/lib/ts/node_modules/stylelint-config-standard-scss/package.json +58 -0
  1537. package/template/lib/workspace/packages/react/.stylelintrc +1 -1
  1538. package/template/lib/workspace/packages/react/package.json +1 -1
  1539. package/template/web-app/react/.stylelintrc +1 -1
  1540. package/template/web-app/react/package.json +1 -1
  1541. package/template/web-app/react-webpack/.stylelintrc +1 -1
  1542. package/template/web-app/react-webpack/package.json +1 -1
  1543. package/template/web-extension/.stylelintrc +1 -1
  1544. package/template/web-extension/package.json +1 -1
  1545. package/template/web-extension/vite.config.ts +1 -1
@@ -0,0 +1,1925 @@
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