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.
- package/package.json +1 -1
- package/template/lib/react/node_modules/.bin/acorn +17 -0
- package/template/lib/react/node_modules/.bin/acorn.CMD +12 -0
- package/template/lib/react/node_modules/.bin/acorn.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/browserslist +17 -0
- package/template/lib/react/node_modules/.bin/browserslist.CMD +12 -0
- package/template/lib/react/node_modules/.bin/browserslist.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/esbuild +17 -0
- package/template/lib/react/node_modules/.bin/esbuild.CMD +12 -0
- package/template/lib/react/node_modules/.bin/esbuild.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/prettier +17 -0
- package/template/lib/react/node_modules/.bin/prettier.CMD +12 -0
- package/template/lib/react/node_modules/.bin/prettier.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/sb +17 -0
- package/template/lib/react/node_modules/.bin/sb.CMD +12 -0
- package/template/lib/react/node_modules/.bin/sb.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/storybook +17 -0
- package/template/lib/react/node_modules/.bin/storybook.CMD +12 -0
- package/template/lib/react/node_modules/.bin/storybook.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/stylelint +17 -0
- package/template/lib/react/node_modules/.bin/stylelint.CMD +12 -0
- package/template/lib/react/node_modules/.bin/stylelint.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/tsc +17 -0
- package/template/lib/react/node_modules/.bin/tsc.CMD +12 -0
- package/template/lib/react/node_modules/.bin/tsc.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/tsserver +17 -0
- package/template/lib/react/node_modules/.bin/tsserver.CMD +12 -0
- package/template/lib/react/node_modules/.bin/tsserver.ps1 +41 -0
- package/template/lib/react/node_modules/.bin/vite +17 -0
- package/template/lib/react/node_modules/.bin/vite.CMD +12 -0
- package/template/lib/react/node_modules/.bin/vite.ps1 +41 -0
- package/template/lib/react/node_modules/eslint/LICENSE +19 -0
- package/template/lib/react/node_modules/eslint/README.md +304 -0
- package/template/lib/react/node_modules/eslint/bin/eslint.js +173 -0
- package/template/lib/react/node_modules/eslint/conf/config-schema.js +93 -0
- package/template/lib/react/node_modules/eslint/conf/default-cli-options.js +32 -0
- package/template/lib/react/node_modules/eslint/conf/globals.js +154 -0
- package/template/lib/react/node_modules/eslint/conf/replacements.json +22 -0
- package/template/lib/react/node_modules/eslint/conf/rule-type-list.json +28 -0
- package/template/lib/react/node_modules/eslint/lib/api.js +26 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/cli-engine.js +1078 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/file-enumerator.js +547 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +60 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/compact.js +60 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +46 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/html.js +351 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +41 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/junit.js +82 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/stylish.js +101 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/tap.js +95 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/unix.js +58 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +63 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/hash.js +35 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/index.js +7 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/lint-result-cache.js +203 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
- package/template/lib/react/node_modules/eslint/lib/cli-engine/xml-escape.js +34 -0
- package/template/lib/react/node_modules/eslint/lib/cli.js +471 -0
- package/template/lib/react/node_modules/eslint/lib/config/default-config.js +67 -0
- package/template/lib/react/node_modules/eslint/lib/config/flat-config-array.js +274 -0
- package/template/lib/react/node_modules/eslint/lib/config/flat-config-helpers.js +111 -0
- package/template/lib/react/node_modules/eslint/lib/config/flat-config-schema.js +583 -0
- package/template/lib/react/node_modules/eslint/lib/config/rule-validator.js +158 -0
- package/template/lib/react/node_modules/eslint/lib/eslint/eslint-helpers.js +902 -0
- package/template/lib/react/node_modules/eslint/lib/eslint/eslint.js +700 -0
- package/template/lib/react/node_modules/eslint/lib/eslint/flat-eslint.js +1142 -0
- package/template/lib/react/node_modules/eslint/lib/eslint/index.js +9 -0
- package/template/lib/react/node_modules/eslint/lib/linter/apply-disable-directives.js +465 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +852 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +263 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2348 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +342 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +203 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +349 -0
- package/template/lib/react/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +45 -0
- package/template/lib/react/node_modules/eslint/lib/linter/config-comment-parser.js +185 -0
- package/template/lib/react/node_modules/eslint/lib/linter/index.js +13 -0
- package/template/lib/react/node_modules/eslint/lib/linter/interpolate.js +28 -0
- package/template/lib/react/node_modules/eslint/lib/linter/linter.js +2119 -0
- package/template/lib/react/node_modules/eslint/lib/linter/node-event-generator.js +354 -0
- package/template/lib/react/node_modules/eslint/lib/linter/report-translator.js +369 -0
- package/template/lib/react/node_modules/eslint/lib/linter/rule-fixer.js +140 -0
- package/template/lib/react/node_modules/eslint/lib/linter/rules.js +80 -0
- package/template/lib/react/node_modules/eslint/lib/linter/safe-emitter.js +52 -0
- package/template/lib/react/node_modules/eslint/lib/linter/source-code-fixer.js +152 -0
- package/template/lib/react/node_modules/eslint/lib/linter/timing.js +161 -0
- package/template/lib/react/node_modules/eslint/lib/options.js +398 -0
- package/template/lib/react/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +1122 -0
- package/template/lib/react/node_modules/eslint/lib/rule-tester/index.js +5 -0
- package/template/lib/react/node_modules/eslint/lib/rule-tester/rule-tester.js +1206 -0
- package/template/lib/react/node_modules/eslint/lib/rules/accessor-pairs.js +346 -0
- package/template/lib/react/node_modules/eslint/lib/rules/array-bracket-newline.js +261 -0
- package/template/lib/react/node_modules/eslint/lib/rules/array-bracket-spacing.js +244 -0
- package/template/lib/react/node_modules/eslint/lib/rules/array-callback-return.js +446 -0
- package/template/lib/react/node_modules/eslint/lib/rules/array-element-newline.js +311 -0
- package/template/lib/react/node_modules/eslint/lib/rules/arrow-body-style.js +296 -0
- package/template/lib/react/node_modules/eslint/lib/rules/arrow-parens.js +186 -0
- package/template/lib/react/node_modules/eslint/lib/rules/arrow-spacing.js +164 -0
- package/template/lib/react/node_modules/eslint/lib/rules/block-scoped-var.js +135 -0
- package/template/lib/react/node_modules/eslint/lib/rules/block-spacing.js +174 -0
- package/template/lib/react/node_modules/eslint/lib/rules/brace-style.js +197 -0
- package/template/lib/react/node_modules/eslint/lib/rules/callback-return.js +187 -0
- package/template/lib/react/node_modules/eslint/lib/rules/camelcase.js +399 -0
- package/template/lib/react/node_modules/eslint/lib/rules/capitalized-comments.js +300 -0
- package/template/lib/react/node_modules/eslint/lib/rules/class-methods-use-this.js +187 -0
- package/template/lib/react/node_modules/eslint/lib/rules/comma-dangle.js +373 -0
- package/template/lib/react/node_modules/eslint/lib/rules/comma-spacing.js +192 -0
- package/template/lib/react/node_modules/eslint/lib/rules/comma-style.js +314 -0
- package/template/lib/react/node_modules/eslint/lib/rules/complexity.js +165 -0
- package/template/lib/react/node_modules/eslint/lib/rules/computed-property-spacing.js +208 -0
- package/template/lib/react/node_modules/eslint/lib/rules/consistent-return.js +210 -0
- package/template/lib/react/node_modules/eslint/lib/rules/consistent-this.js +153 -0
- package/template/lib/react/node_modules/eslint/lib/rules/constructor-super.js +446 -0
- package/template/lib/react/node_modules/eslint/lib/rules/curly.js +486 -0
- package/template/lib/react/node_modules/eslint/lib/rules/default-case-last.js +44 -0
- package/template/lib/react/node_modules/eslint/lib/rules/default-case.js +97 -0
- package/template/lib/react/node_modules/eslint/lib/rules/default-param-last.js +62 -0
- package/template/lib/react/node_modules/eslint/lib/rules/dot-location.js +108 -0
- package/template/lib/react/node_modules/eslint/lib/rules/dot-notation.js +176 -0
- package/template/lib/react/node_modules/eslint/lib/rules/eol-last.js +115 -0
- package/template/lib/react/node_modules/eslint/lib/rules/eqeqeq.js +174 -0
- package/template/lib/react/node_modules/eslint/lib/rules/for-direction.js +140 -0
- package/template/lib/react/node_modules/eslint/lib/rules/func-call-spacing.js +233 -0
- package/template/lib/react/node_modules/eslint/lib/rules/func-name-matching.js +253 -0
- package/template/lib/react/node_modules/eslint/lib/rules/func-names.js +191 -0
- package/template/lib/react/node_modules/eslint/lib/rules/func-style.js +98 -0
- package/template/lib/react/node_modules/eslint/lib/rules/function-call-argument-newline.js +125 -0
- package/template/lib/react/node_modules/eslint/lib/rules/function-paren-newline.js +292 -0
- package/template/lib/react/node_modules/eslint/lib/rules/generator-star-spacing.js +209 -0
- package/template/lib/react/node_modules/eslint/lib/rules/getter-return.js +204 -0
- package/template/lib/react/node_modules/eslint/lib/rules/global-require.js +90 -0
- package/template/lib/react/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +215 -0
- package/template/lib/react/node_modules/eslint/lib/rules/guard-for-in.js +76 -0
- package/template/lib/react/node_modules/eslint/lib/rules/handle-callback-err.js +101 -0
- package/template/lib/react/node_modules/eslint/lib/rules/id-blacklist.js +246 -0
- package/template/lib/react/node_modules/eslint/lib/rules/id-denylist.js +228 -0
- package/template/lib/react/node_modules/eslint/lib/rules/id-length.js +177 -0
- package/template/lib/react/node_modules/eslint/lib/rules/id-match.js +299 -0
- package/template/lib/react/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +84 -0
- package/template/lib/react/node_modules/eslint/lib/rules/indent-legacy.js +1126 -0
- package/template/lib/react/node_modules/eslint/lib/rules/indent.js +1803 -0
- package/template/lib/react/node_modules/eslint/lib/rules/index.js +306 -0
- package/template/lib/react/node_modules/eslint/lib/rules/init-declarations.js +139 -0
- package/template/lib/react/node_modules/eslint/lib/rules/jsx-quotes.js +98 -0
- package/template/lib/react/node_modules/eslint/lib/rules/key-spacing.js +687 -0
- package/template/lib/react/node_modules/eslint/lib/rules/keyword-spacing.js +640 -0
- package/template/lib/react/node_modules/eslint/lib/rules/line-comment-position.js +122 -0
- package/template/lib/react/node_modules/eslint/lib/rules/linebreak-style.js +108 -0
- package/template/lib/react/node_modules/eslint/lib/rules/lines-around-comment.js +471 -0
- package/template/lib/react/node_modules/eslint/lib/rules/lines-around-directive.js +201 -0
- package/template/lib/react/node_modules/eslint/lib/rules/lines-between-class-members.js +269 -0
- package/template/lib/react/node_modules/eslint/lib/rules/logical-assignment-operators.js +504 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-classes-per-file.js +89 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-depth.js +156 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-len.js +440 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-lines-per-function.js +213 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-lines.js +193 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-nested-callbacks.js +117 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-params.js +102 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-statements-per-line.js +199 -0
- package/template/lib/react/node_modules/eslint/lib/rules/max-statements.js +184 -0
- package/template/lib/react/node_modules/eslint/lib/rules/multiline-comment-style.js +474 -0
- package/template/lib/react/node_modules/eslint/lib/rules/multiline-ternary.js +174 -0
- package/template/lib/react/node_modules/eslint/lib/rules/new-cap.js +276 -0
- package/template/lib/react/node_modules/eslint/lib/rules/new-parens.js +93 -0
- package/template/lib/react/node_modules/eslint/lib/rules/newline-after-var.js +253 -0
- package/template/lib/react/node_modules/eslint/lib/rules/newline-before-return.js +217 -0
- package/template/lib/react/node_modules/eslint/lib/rules/newline-per-chained-call.js +126 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-alert.js +138 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-array-constructor.js +133 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-async-promise-executor.js +39 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-await-in-loop.js +106 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-bitwise.js +119 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-buffer-constructor.js +50 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-caller.js +46 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-case-declarations.js +64 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-catch-shadow.js +82 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-class-assign.js +63 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-compare-neg-zero.js +60 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-cond-assign.js +159 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-confusing-arrow.js +92 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-console.js +207 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-const-assign.js +56 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-constant-binary-expression.js +509 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-constant-condition.js +150 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-continue.js +39 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-control-regex.js +138 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-debugger.js +43 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-div-regex.js +53 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-args.js +82 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-class-members.js +104 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-else-if.js +122 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-dupe-keys.js +142 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-duplicate-case.js +71 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-duplicate-imports.js +290 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-else-return.js +405 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-empty-character-class.js +76 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-empty-function.js +167 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-empty-pattern.js +78 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-empty-static-block.js +47 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-empty.js +103 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-eq-null.js +46 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-eval.js +286 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-ex-assign.js +54 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-extend-native.js +179 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-extra-bind.js +213 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +317 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-extra-label.js +149 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-extra-parens.js +1322 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-extra-semi.js +147 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-fallthrough.js +196 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-floating-decimal.js +73 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-func-assign.js +78 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-global-assign.js +95 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-implicit-coercion.js +380 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-implicit-globals.js +146 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-implied-eval.js +132 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-import-assign.js +241 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-inline-comments.js +110 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-inner-declarations.js +110 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-invalid-regexp.js +194 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-invalid-this.js +150 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-irregular-whitespace.js +276 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-iterator.js +52 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-label-var.js +80 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-labels.js +149 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-lone-blocks.js +136 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-lonely-if.js +88 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-loop-func.js +206 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-loss-of-precision.js +214 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-magic-numbers.js +243 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-misleading-character-class.js +300 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-operators.js +229 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-requires.js +238 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +116 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-multi-assign.js +67 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-multi-spaces.js +141 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-multi-str.js +65 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +154 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-native-reassign.js +98 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-negated-condition.js +95 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-negated-in-lhs.js +46 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-nested-ternary.js +44 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new-func.js +87 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +66 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new-object.js +67 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new-require.js +50 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new-symbol.js +56 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new-wrappers.js +60 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-new.js +43 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +148 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-obj-calls.js +86 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-object-constructor.js +117 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-octal-escape.js +56 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-octal.js +45 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-param-reassign.js +230 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-path-concat.js +64 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-plusplus.js +105 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-process-env.js +51 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-process-exit.js +47 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-promise-executor-return.js +263 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-proto.js +48 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-prototype-builtins.js +159 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-redeclare.js +174 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-regex-spaces.js +197 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-exports.js +193 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-globals.js +124 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-imports.js +410 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-modules.js +213 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-properties.js +168 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-restricted-syntax.js +70 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-return-assign.js +80 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-return-await.js +135 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-script-url.js +61 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-self-assign.js +183 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-self-compare.js +60 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-sequences.js +138 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-setter-return.js +226 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +65 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-shadow.js +336 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-spaced-func.js +83 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-sparse-arrays.js +50 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-sync.js +64 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-tabs.js +81 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-template-curly-in-string.js +44 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-ternary.js +41 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-this-before-super.js +331 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-throw-literal.js +51 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-trailing-spaces.js +193 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-undef-init.js +75 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-undef.js +79 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-undefined.js +86 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-underscore-dangle.js +335 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unexpected-multiline.js +120 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unneeded-ternary.js +166 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unreachable-loop.js +185 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unreachable.js +293 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-finally.js +111 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-negation.js +128 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +205 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unused-expressions.js +186 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unused-labels.js +143 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unused-private-class-members.js +195 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-unused-vars.js +718 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-use-before-define.js +348 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-backreference.js +194 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-call.js +90 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-computed-key.js +168 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-concat.js +115 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-constructor.js +189 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-escape.js +333 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-rename.js +172 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-useless-return.js +364 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-var.js +334 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-void.js +64 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-warning-comments.js +201 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-whitespace-before-property.js +116 -0
- package/template/lib/react/node_modules/eslint/lib/rules/no-with.js +39 -0
- package/template/lib/react/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +127 -0
- package/template/lib/react/node_modules/eslint/lib/rules/object-curly-newline.js +324 -0
- package/template/lib/react/node_modules/eslint/lib/rules/object-curly-spacing.js +311 -0
- package/template/lib/react/node_modules/eslint/lib/rules/object-property-newline.js +102 -0
- package/template/lib/react/node_modules/eslint/lib/rules/object-shorthand.js +520 -0
- package/template/lib/react/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +95 -0
- package/template/lib/react/node_modules/eslint/lib/rules/one-var.js +567 -0
- package/template/lib/react/node_modules/eslint/lib/rules/operator-assignment.js +209 -0
- package/template/lib/react/node_modules/eslint/lib/rules/operator-linebreak.js +253 -0
- package/template/lib/react/node_modules/eslint/lib/rules/padded-blocks.js +310 -0
- package/template/lib/react/node_modules/eslint/lib/rules/padding-line-between-statements.js +590 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-arrow-callback.js +381 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-const.js +501 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-destructuring.js +301 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +191 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-named-capture-group.js +178 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-numeric-literals.js +148 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-object-has-own.js +114 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-object-spread.js +298 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +132 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-reflect.js +127 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-regex-literals.js +507 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-rest-params.js +118 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-spread.js +87 -0
- package/template/lib/react/node_modules/eslint/lib/rules/prefer-template.js +275 -0
- package/template/lib/react/node_modules/eslint/lib/rules/quote-props.js +310 -0
- package/template/lib/react/node_modules/eslint/lib/rules/quotes.js +350 -0
- package/template/lib/react/node_modules/eslint/lib/rules/radix.js +198 -0
- package/template/lib/react/node_modules/eslint/lib/rules/require-atomic-updates.js +331 -0
- package/template/lib/react/node_modules/eslint/lib/rules/require-await.js +113 -0
- package/template/lib/react/node_modules/eslint/lib/rules/require-jsdoc.js +122 -0
- package/template/lib/react/node_modules/eslint/lib/rules/require-unicode-regexp.js +129 -0
- package/template/lib/react/node_modules/eslint/lib/rules/require-yield.js +77 -0
- package/template/lib/react/node_modules/eslint/lib/rules/rest-spread-spacing.js +123 -0
- package/template/lib/react/node_modules/eslint/lib/rules/semi-spacing.js +248 -0
- package/template/lib/react/node_modules/eslint/lib/rules/semi-style.js +158 -0
- package/template/lib/react/node_modules/eslint/lib/rules/semi.js +438 -0
- package/template/lib/react/node_modules/eslint/lib/rules/sort-imports.js +241 -0
- package/template/lib/react/node_modules/eslint/lib/rules/sort-keys.js +230 -0
- package/template/lib/react/node_modules/eslint/lib/rules/sort-vars.js +104 -0
- package/template/lib/react/node_modules/eslint/lib/rules/space-before-blocks.js +204 -0
- package/template/lib/react/node_modules/eslint/lib/rules/space-before-function-paren.js +167 -0
- package/template/lib/react/node_modules/eslint/lib/rules/space-in-parens.js +285 -0
- package/template/lib/react/node_modules/eslint/lib/rules/space-infix-ops.js +198 -0
- package/template/lib/react/node_modules/eslint/lib/rules/space-unary-ops.js +324 -0
- package/template/lib/react/node_modules/eslint/lib/rules/spaced-comment.js +385 -0
- package/template/lib/react/node_modules/eslint/lib/rules/strict.js +277 -0
- package/template/lib/react/node_modules/eslint/lib/rules/switch-colon-spacing.js +132 -0
- package/template/lib/react/node_modules/eslint/lib/rules/symbol-description.js +73 -0
- package/template/lib/react/node_modules/eslint/lib/rules/template-curly-spacing.js +144 -0
- package/template/lib/react/node_modules/eslint/lib/rules/template-tag-spacing.js +93 -0
- package/template/lib/react/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
- package/template/lib/react/node_modules/eslint/lib/rules/use-isnan.js +141 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/ast-utils.js +2282 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/fix-tracker.js +114 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +115 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/patterns/letters.js +36 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/regular-expressions.js +42 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/index.js +11 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
- package/template/lib/react/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
- package/template/lib/react/node_modules/eslint/lib/rules/valid-jsdoc.js +516 -0
- package/template/lib/react/node_modules/eslint/lib/rules/valid-typeof.js +127 -0
- package/template/lib/react/node_modules/eslint/lib/rules/vars-on-top.js +157 -0
- package/template/lib/react/node_modules/eslint/lib/rules/wrap-iife.js +207 -0
- package/template/lib/react/node_modules/eslint/lib/rules/wrap-regex.js +61 -0
- package/template/lib/react/node_modules/eslint/lib/rules/yield-star-spacing.js +130 -0
- package/template/lib/react/node_modules/eslint/lib/rules/yoda.js +353 -0
- package/template/lib/react/node_modules/eslint/lib/shared/ajv.js +34 -0
- package/template/lib/react/node_modules/eslint/lib/shared/ast-utils.js +29 -0
- package/template/lib/react/node_modules/eslint/lib/shared/config-validator.js +347 -0
- package/template/lib/react/node_modules/eslint/lib/shared/deprecation-warnings.js +58 -0
- package/template/lib/react/node_modules/eslint/lib/shared/directives.js +15 -0
- package/template/lib/react/node_modules/eslint/lib/shared/logging.js +30 -0
- package/template/lib/react/node_modules/eslint/lib/shared/relative-module-resolver.js +50 -0
- package/template/lib/react/node_modules/eslint/lib/shared/runtime-info.js +167 -0
- package/template/lib/react/node_modules/eslint/lib/shared/severity.js +49 -0
- package/template/lib/react/node_modules/eslint/lib/shared/string-utils.js +60 -0
- package/template/lib/react/node_modules/eslint/lib/shared/traverser.js +195 -0
- package/template/lib/react/node_modules/eslint/lib/shared/types.js +216 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/index.js +5 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/source-code.js +1055 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +57 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +58 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/cursor.js +76 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/cursors.js +90 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +39 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +43 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +57 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +63 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/index.js +627 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +40 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +38 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +42 -0
- package/template/lib/react/node_modules/eslint/lib/source-code/token-store/utils.js +107 -0
- package/template/lib/react/node_modules/eslint/lib/unsupported-api.js +30 -0
- package/template/lib/react/node_modules/eslint/messages/all-files-ignored.js +16 -0
- package/template/lib/react/node_modules/eslint/messages/eslintrc-incompat.js +98 -0
- package/template/lib/react/node_modules/eslint/messages/eslintrc-plugins.js +24 -0
- package/template/lib/react/node_modules/eslint/messages/extend-config-missing.js +13 -0
- package/template/lib/react/node_modules/eslint/messages/failed-to-read-json.js +11 -0
- package/template/lib/react/node_modules/eslint/messages/file-not-found.js +10 -0
- package/template/lib/react/node_modules/eslint/messages/invalid-rule-options.js +17 -0
- package/template/lib/react/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
- package/template/lib/react/node_modules/eslint/messages/no-config-found.js +15 -0
- package/template/lib/react/node_modules/eslint/messages/plugin-conflict.js +22 -0
- package/template/lib/react/node_modules/eslint/messages/plugin-invalid.js +16 -0
- package/template/lib/react/node_modules/eslint/messages/plugin-missing.js +19 -0
- package/template/lib/react/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
- package/template/lib/react/node_modules/eslint/messages/shared.js +18 -0
- package/template/lib/react/node_modules/eslint/messages/whitespace-found.js +11 -0
- package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/eslint/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml +17 -0
- package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml.CMD +12 -0
- package/template/lib/react/node_modules/eslint/node_modules/.bin/js-yaml.ps1 +41 -0
- package/template/lib/react/node_modules/eslint/package.json +179 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/LICENSE +5 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/README.md +232 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.cjs +278 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.d.ts +20 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.es2020.mjs +251 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.js +252 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/lib/index.js.map +1 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/package.json +108 -0
- package/template/lib/react/node_modules/eslint-import-resolver-typescript/shim.d.ts +4 -0
- package/template/lib/react/node_modules/eslint-plugin-import/CHANGELOG.md +1925 -0
- package/template/lib/react/node_modules/eslint-plugin-import/CONTRIBUTING.md +84 -0
- package/template/lib/react/node_modules/eslint-plugin-import/LICENSE +22 -0
- package/template/lib/react/node_modules/eslint-plugin-import/README.md +500 -0
- package/template/lib/react/node_modules/eslint-plugin-import/RELEASE.md +54 -0
- package/template/lib/react/node_modules/eslint-plugin-import/SECURITY.md +11 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/electron.js +8 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/errors.js +14 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/react-native.js +13 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/react.js +18 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/recommended.js +28 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/stage-0.js +12 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/typescript.js +34 -0
- package/template/lib/react/node_modules/eslint-plugin-import/config/warnings.js +12 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +91 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/default.md +72 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +92 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/export.md +37 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/exports-last.md +51 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/extensions.md +174 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/first.md +75 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/group-exports.md +118 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/imports-first.md +9 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +70 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/named.md +102 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/namespace.md +106 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +167 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +54 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-amd.md +37 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +83 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +96 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +111 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +65 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +62 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +109 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +25 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +49 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +139 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +81 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +136 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +54 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +52 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +53 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +36 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +79 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +44 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +42 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +70 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +123 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +198 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +32 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +60 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +110 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +125 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +85 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +39 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/order.md +365 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +185 -0
- package/template/lib/react/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +57 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/ExportMap.js +856 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/core/importType.js +129 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/core/packagePath.js +22 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/core/staticRequire.js +11 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/docsUrl.js +8 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/importDeclaration.js +5 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/index.js +71 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +221 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/default.js +40 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +120 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/export.js +250 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/exports-last.js +40 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/extensions.js +193 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/first.js +144 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/group-exports.js +155 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/imports-first.js +16 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +60 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/named.js +143 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/namespace.js +218 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +237 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +40 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-amd.js +47 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +103 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +141 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +158 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +43 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +138 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +354 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +77 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +105 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +301 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +85 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +144 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +59 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +96 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +45 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +31 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +39 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +175 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +44 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +71 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +48 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +245 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +39 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +79 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +60 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +945 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +147 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +26 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/order.js +785 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +116 -0
- package/template/lib/react/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +38 -0
- package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/LICENSE +22 -0
- package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/README.md +21 -0
- package/template/lib/react/node_modules/eslint-plugin-import/memo-parser/index.js +41 -0
- package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver +17 -0
- package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-import/node_modules/.bin/semver.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-import/package.json +124 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/LICENSE.md +24 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/README.md +202 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.d.ts +5 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js +254 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier +17 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier +17 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/package.json +101 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/recommended.d.ts +5 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/recommended.js +17 -0
- package/template/lib/react/node_modules/eslint-plugin-prettier/worker.js +181 -0
- package/template/lib/react/node_modules/eslint-plugin-react/LICENSE +22 -0
- package/template/lib/react/node_modules/eslint-plugin-react/README.md +420 -0
- package/template/lib/react/node_modules/eslint-plugin-react/configs/all.js +39 -0
- package/template/lib/react/node_modules/eslint-plugin-react/configs/jsx-runtime.js +18 -0
- package/template/lib/react/node_modules/eslint-plugin-react/configs/recommended.js +34 -0
- package/template/lib/react/node_modules/eslint-plugin-react/index.js +31 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/boolean-prop-naming.js +400 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/button-has-type.js +163 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/default-props-match-prop-types.js +108 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/destructuring-assignment.js +280 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/display-name.js +283 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-component-props.js +134 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-dom-props.js +121 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-elements.js +114 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-foreign-prop-types.js +134 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/forbid-prop-types.js +293 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/function-component-definition.js +284 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/hook-use-state.js +203 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/iframe-missing-sandbox.js +142 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/index.js +106 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-boolean-value.js +159 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-child-element-spacing.js +116 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-closing-bracket-location.js +308 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-closing-tag-location.js +73 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-brace-presence.js +414 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-newline.js +184 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-curly-spacing.js +430 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-equals-spacing.js +110 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-filename-extension.js +110 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js +80 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-fragments.js +209 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-handler-names.js +171 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-indent-props.js +213 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-indent.js +441 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-key.js +293 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-max-depth.js +162 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-max-props-per-line.js +154 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-newline.js +168 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-bind.js +208 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-comment-textnodes.js +64 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-constructed-context-values.js +225 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-duplicate-props.js +76 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-leaked-render.js +186 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-literals.js +195 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-script-url.js +97 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-target-blank.js +283 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-undef.js +115 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-no-useless-fragment.js +257 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-one-expression-per-line.js +233 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-pascal-case.js +163 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces.js +134 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-spreading.js +141 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-sort-default-props.js +188 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-sort-props.js +530 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-space-before-closing.js +96 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-tag-spacing.js +323 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-uses-react.js +46 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-uses-vars.js +60 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/jsx-wrap-multilines.js +260 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-access-state-in-setstate.js +187 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-adjacent-inline-elements.js +125 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-array-index-key.js +288 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-arrow-function-lifecycle.js +144 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-children-prop.js +119 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-danger-with-children.js +155 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-danger.js +74 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-deprecated.js +258 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-did-mount-set-state.js +10 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-did-update-set-state.js +10 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-direct-mutation-state.js +154 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-find-dom-node.js +50 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-invalid-html-attribute.js +639 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-is-mounted.js +55 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-multi-comp.js +80 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-namespace.js +61 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-object-type-as-default-prop.js +103 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-redundant-should-component-update.js +87 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-render-return-value.js +81 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-set-state.js +88 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-string-refs.js +119 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-this-in-sfc.js +46 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-typos.js +257 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unescaped-entities.js +133 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unknown-property.js +609 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unsafe.js +153 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unstable-nested-components.js +491 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-class-component-methods.js +257 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-prop-types.js +173 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-unused-state.js +522 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/no-will-update-set-state.js +14 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-es6-class.js +57 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-exact-props.js +161 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-read-only-props.js +116 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prefer-stateless-function.js +390 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/prop-types.js +201 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/react-in-jsx-scope.js +56 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-default-props.js +193 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-optimization.js +239 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/require-render-return.js +104 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/self-closing-comp.js +103 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-comp.js +446 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-default-props.js +174 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/sort-prop-types.js +266 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/state-in-constructor.js +67 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/static-property-placement.js +187 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/style-prop-object.js +137 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/rules/void-dom-elements-no-children.js +165 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/types.d.ts +28 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/Components.js +946 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/annotations.js +32 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/ast.js +461 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/componentUtil.js +182 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/defaultProps.js +268 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/docsUrl.js +7 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/error.js +14 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js +16 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isCreateContext.js +53 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isCreateElement.js +33 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isDestructuredFromPragmaImport.js +79 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/isFirstLetterCapitalized.js +16 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/jsx.js +196 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/lifecycleMethods.js +30 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/linkComponents.js +49 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/log.js +14 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/makeNoMethodSetStateRule.js +119 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/message.js +8 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/pragma.js +72 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propTypes.js +1248 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propTypesSort.js +211 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/propWrapper.js +61 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/props.js +103 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/report.js +12 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/usedPropTypes.js +569 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/variable.js +94 -0
- package/template/lib/react/node_modules/eslint-plugin-react/lib/util/version.js +161 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve +17 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/resolve.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver +17 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-react/node_modules/.bin/semver.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-react/package.json +106 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/LICENSE +21 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/README.md +75 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js +2458 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.production.min.js +63 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/index.js +9 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint +17 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/react/node_modules/eslint-plugin-react-hooks/package.json +39 -0
- package/template/lib/react/node_modules/prettier/LICENSE +4857 -0
- package/template/lib/react/node_modules/prettier/README.md +109 -0
- package/template/lib/react/node_modules/prettier/bin/prettier.cjs +68 -0
- package/template/lib/react/node_modules/prettier/doc.d.ts +243 -0
- package/template/lib/react/node_modules/prettier/doc.js +1328 -0
- package/template/lib/react/node_modules/prettier/doc.mjs +1300 -0
- package/template/lib/react/node_modules/prettier/index.cjs +648 -0
- package/template/lib/react/node_modules/prettier/index.d.ts +940 -0
- package/template/lib/react/node_modules/prettier/index.mjs +24255 -0
- package/template/lib/react/node_modules/prettier/internal/cli.mjs +7089 -0
- package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier +17 -0
- package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier.CMD +12 -0
- package/template/lib/react/node_modules/prettier/node_modules/.bin/prettier.ps1 +41 -0
- package/template/lib/react/node_modules/prettier/package.json +198 -0
- package/template/lib/react/node_modules/prettier/plugins/acorn.d.ts +6 -0
- package/template/lib/react/node_modules/prettier/plugins/acorn.js +13 -0
- package/template/lib/react/node_modules/prettier/plugins/acorn.mjs +13 -0
- package/template/lib/react/node_modules/prettier/plugins/angular.d.ts +8 -0
- package/template/lib/react/node_modules/prettier/plugins/angular.js +1 -0
- package/template/lib/react/node_modules/prettier/plugins/angular.mjs +1 -0
- package/template/lib/react/node_modules/prettier/plugins/babel.d.ts +18 -0
- package/template/lib/react/node_modules/prettier/plugins/babel.js +16 -0
- package/template/lib/react/node_modules/prettier/plugins/babel.mjs +16 -0
- package/template/lib/react/node_modules/prettier/plugins/estree.d.ts +1 -0
- package/template/lib/react/node_modules/prettier/plugins/estree.js +36 -0
- package/template/lib/react/node_modules/prettier/plugins/estree.mjs +36 -0
- package/template/lib/react/node_modules/prettier/plugins/flow.d.ts +5 -0
- package/template/lib/react/node_modules/prettier/plugins/flow.js +21 -0
- package/template/lib/react/node_modules/prettier/plugins/flow.mjs +21 -0
- package/template/lib/react/node_modules/prettier/plugins/glimmer.d.ts +5 -0
- package/template/lib/react/node_modules/prettier/plugins/glimmer.js +30 -0
- package/template/lib/react/node_modules/prettier/plugins/glimmer.mjs +30 -0
- package/template/lib/react/node_modules/prettier/plugins/graphql.d.ts +5 -0
- package/template/lib/react/node_modules/prettier/plugins/graphql.js +29 -0
- package/template/lib/react/node_modules/prettier/plugins/graphql.mjs +29 -0
- package/template/lib/react/node_modules/prettier/plugins/html.d.ts +8 -0
- package/template/lib/react/node_modules/prettier/plugins/html.js +19 -0
- package/template/lib/react/node_modules/prettier/plugins/html.mjs +19 -0
- package/template/lib/react/node_modules/prettier/plugins/markdown.d.ts +7 -0
- package/template/lib/react/node_modules/prettier/plugins/markdown.js +59 -0
- package/template/lib/react/node_modules/prettier/plugins/markdown.mjs +59 -0
- package/template/lib/react/node_modules/prettier/plugins/meriyah.d.ts +5 -0
- package/template/lib/react/node_modules/prettier/plugins/meriyah.js +5 -0
- package/template/lib/react/node_modules/prettier/plugins/meriyah.mjs +5 -0
- package/template/lib/react/node_modules/prettier/plugins/postcss.d.ts +7 -0
- package/template/lib/react/node_modules/prettier/plugins/postcss.js +49 -0
- package/template/lib/react/node_modules/prettier/plugins/postcss.mjs +49 -0
- package/template/lib/react/node_modules/prettier/plugins/typescript.d.ts +5 -0
- package/template/lib/react/node_modules/prettier/plugins/typescript.js +25 -0
- package/template/lib/react/node_modules/prettier/plugins/typescript.mjs +25 -0
- package/template/lib/react/node_modules/prettier/plugins/yaml.d.ts +5 -0
- package/template/lib/react/node_modules/prettier/plugins/yaml.js +161 -0
- package/template/lib/react/node_modules/prettier/plugins/yaml.mjs +161 -0
- package/template/lib/react/node_modules/prettier/standalone.d.ts +33 -0
- package/template/lib/react/node_modules/prettier/standalone.js +34 -0
- package/template/lib/react/node_modules/prettier/standalone.mjs +34 -0
- package/template/lib/react/node_modules/prop-types/LICENSE +21 -0
- package/template/lib/react/node_modules/prop-types/README.md +302 -0
- package/template/lib/react/node_modules/prop-types/checkPropTypes.js +103 -0
- package/template/lib/react/node_modules/prop-types/factory.js +19 -0
- package/template/lib/react/node_modules/prop-types/factoryWithThrowingShims.js +65 -0
- package/template/lib/react/node_modules/prop-types/factoryWithTypeCheckers.js +610 -0
- package/template/lib/react/node_modules/prop-types/index.js +19 -0
- package/template/lib/react/node_modules/prop-types/lib/ReactPropTypesSecret.js +12 -0
- package/template/lib/react/node_modules/prop-types/lib/has.js +1 -0
- package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify +17 -0
- package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify.CMD +12 -0
- package/template/lib/react/node_modules/prop-types/node_modules/.bin/loose-envify.ps1 +41 -0
- package/template/lib/react/node_modules/prop-types/package.json +60 -0
- package/template/lib/react/node_modules/prop-types/prop-types.js +1315 -0
- package/template/lib/react/node_modules/prop-types/prop-types.min.js +1 -0
- package/template/lib/react/node_modules/react/LICENSE +21 -0
- package/template/lib/react/node_modules/react/README.md +37 -0
- package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1296 -0
- package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
- package/template/lib/react/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
- package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.development.js +1314 -0
- package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
- package/template/lib/react/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
- package/template/lib/react/node_modules/react/cjs/react.development.js +2739 -0
- package/template/lib/react/node_modules/react/cjs/react.production.min.js +26 -0
- package/template/lib/react/node_modules/react/cjs/react.shared-subset.development.js +20 -0
- package/template/lib/react/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
- package/template/lib/react/node_modules/react/index.js +7 -0
- package/template/lib/react/node_modules/react/jsx-dev-runtime.js +7 -0
- package/template/lib/react/node_modules/react/jsx-runtime.js +7 -0
- package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify +17 -0
- package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify.CMD +12 -0
- package/template/lib/react/node_modules/react/node_modules/.bin/loose-envify.ps1 +41 -0
- package/template/lib/react/node_modules/react/package.json +47 -0
- package/template/lib/react/node_modules/react/react.shared-subset.js +7 -0
- package/template/lib/react/node_modules/react/umd/react.development.js +3342 -0
- package/template/lib/react/node_modules/react/umd/react.production.min.js +31 -0
- package/template/lib/react/node_modules/react/umd/react.profiling.min.js +31 -0
- package/template/lib/react/node_modules/react-dom/LICENSE +21 -0
- package/template/lib/react/node_modules/react-dom/README.md +60 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +7018 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +7078 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.browser.development.js +7003 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.node.development.js +7059 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-test-utils.development.js +1741 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js +40 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom.development.js +29868 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom.production.min.js +323 -0
- package/template/lib/react/node_modules/react-dom/cjs/react-dom.profiling.min.js +367 -0
- package/template/lib/react/node_modules/react-dom/client.js +25 -0
- package/template/lib/react/node_modules/react-dom/index.js +38 -0
- package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify +17 -0
- package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify.CMD +12 -0
- package/template/lib/react/node_modules/react-dom/node_modules/.bin/loose-envify.ps1 +41 -0
- package/template/lib/react/node_modules/react-dom/package.json +62 -0
- package/template/lib/react/node_modules/react-dom/profiling.js +38 -0
- package/template/lib/react/node_modules/react-dom/server.browser.js +17 -0
- package/template/lib/react/node_modules/react-dom/server.js +3 -0
- package/template/lib/react/node_modules/react-dom/server.node.js +17 -0
- package/template/lib/react/node_modules/react-dom/test-utils.js +7 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.development.js +7015 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom-server-legacy.browser.production.min.js +75 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom-server.browser.development.js +7000 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom-server.browser.production.min.js +76 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom-test-utils.development.js +1737 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom-test-utils.production.min.js +33 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom.development.js +29869 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom.production.min.js +267 -0
- package/template/lib/react/node_modules/react-dom/umd/react-dom.profiling.min.js +285 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/LICENSE +21 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/README.md +50 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/index.js +67 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint +17 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.CMD +12 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.ps1 +41 -0
- package/template/lib/react/node_modules/stylelint-config-standard-scss/package.json +58 -0
- package/template/lib/ts/node_modules/.bin/acorn +17 -0
- package/template/lib/ts/node_modules/.bin/acorn.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/acorn.ps1 +41 -0
- package/template/lib/ts/node_modules/.bin/eslint +17 -0
- package/template/lib/ts/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/ts/node_modules/.bin/prettier +17 -0
- package/template/lib/ts/node_modules/.bin/prettier.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/prettier.ps1 +41 -0
- package/template/lib/ts/node_modules/.bin/stylelint +17 -0
- package/template/lib/ts/node_modules/.bin/stylelint.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/stylelint.ps1 +41 -0
- package/template/lib/ts/node_modules/.bin/tsc +17 -0
- package/template/lib/ts/node_modules/.bin/tsc.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/tsc.ps1 +41 -0
- package/template/lib/ts/node_modules/.bin/tsserver +17 -0
- package/template/lib/ts/node_modules/.bin/tsserver.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/tsserver.ps1 +41 -0
- package/template/lib/ts/node_modules/.bin/vitest +17 -0
- package/template/lib/ts/node_modules/.bin/vitest.CMD +12 -0
- package/template/lib/ts/node_modules/.bin/vitest.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint/LICENSE +19 -0
- package/template/lib/ts/node_modules/eslint/README.md +304 -0
- package/template/lib/ts/node_modules/eslint/bin/eslint.js +173 -0
- package/template/lib/ts/node_modules/eslint/conf/config-schema.js +93 -0
- package/template/lib/ts/node_modules/eslint/conf/default-cli-options.js +32 -0
- package/template/lib/ts/node_modules/eslint/conf/globals.js +154 -0
- package/template/lib/ts/node_modules/eslint/conf/replacements.json +22 -0
- package/template/lib/ts/node_modules/eslint/conf/rule-type-list.json +28 -0
- package/template/lib/ts/node_modules/eslint/lib/api.js +26 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/cli-engine.js +1078 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/file-enumerator.js +547 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +60 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/compact.js +60 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +46 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/html.js +351 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +41 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/junit.js +82 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/stylish.js +101 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/tap.js +95 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/unix.js +58 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +63 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/hash.js +35 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/index.js +7 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/lint-result-cache.js +203 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
- package/template/lib/ts/node_modules/eslint/lib/cli-engine/xml-escape.js +34 -0
- package/template/lib/ts/node_modules/eslint/lib/cli.js +471 -0
- package/template/lib/ts/node_modules/eslint/lib/config/default-config.js +67 -0
- package/template/lib/ts/node_modules/eslint/lib/config/flat-config-array.js +274 -0
- package/template/lib/ts/node_modules/eslint/lib/config/flat-config-helpers.js +111 -0
- package/template/lib/ts/node_modules/eslint/lib/config/flat-config-schema.js +583 -0
- package/template/lib/ts/node_modules/eslint/lib/config/rule-validator.js +158 -0
- package/template/lib/ts/node_modules/eslint/lib/eslint/eslint-helpers.js +902 -0
- package/template/lib/ts/node_modules/eslint/lib/eslint/eslint.js +700 -0
- package/template/lib/ts/node_modules/eslint/lib/eslint/flat-eslint.js +1142 -0
- package/template/lib/ts/node_modules/eslint/lib/eslint/index.js +9 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/apply-disable-directives.js +465 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +852 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +263 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2348 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +342 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +203 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +349 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +45 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/config-comment-parser.js +185 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/index.js +13 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/interpolate.js +28 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/linter.js +2119 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/node-event-generator.js +354 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/report-translator.js +369 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/rule-fixer.js +140 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/rules.js +80 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/safe-emitter.js +52 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/source-code-fixer.js +152 -0
- package/template/lib/ts/node_modules/eslint/lib/linter/timing.js +161 -0
- package/template/lib/ts/node_modules/eslint/lib/options.js +398 -0
- package/template/lib/ts/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +1122 -0
- package/template/lib/ts/node_modules/eslint/lib/rule-tester/index.js +5 -0
- package/template/lib/ts/node_modules/eslint/lib/rule-tester/rule-tester.js +1206 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/accessor-pairs.js +346 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/array-bracket-newline.js +261 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/array-bracket-spacing.js +244 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/array-callback-return.js +446 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/array-element-newline.js +311 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/arrow-body-style.js +296 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/arrow-parens.js +186 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/arrow-spacing.js +164 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/block-scoped-var.js +135 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/block-spacing.js +174 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/brace-style.js +197 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/callback-return.js +187 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/camelcase.js +399 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/capitalized-comments.js +300 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/class-methods-use-this.js +187 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/comma-dangle.js +373 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/comma-spacing.js +192 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/comma-style.js +314 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/complexity.js +165 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/computed-property-spacing.js +208 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/consistent-return.js +210 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/consistent-this.js +153 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/constructor-super.js +446 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/curly.js +486 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/default-case-last.js +44 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/default-case.js +97 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/default-param-last.js +62 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/dot-location.js +108 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/dot-notation.js +176 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/eol-last.js +115 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/eqeqeq.js +174 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/for-direction.js +140 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/func-call-spacing.js +233 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/func-name-matching.js +253 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/func-names.js +191 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/func-style.js +98 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/function-call-argument-newline.js +125 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/function-paren-newline.js +292 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/generator-star-spacing.js +209 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/getter-return.js +204 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/global-require.js +90 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +215 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/guard-for-in.js +76 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/handle-callback-err.js +101 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/id-blacklist.js +246 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/id-denylist.js +228 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/id-length.js +177 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/id-match.js +299 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +84 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/indent-legacy.js +1126 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/indent.js +1803 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/index.js +306 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/init-declarations.js +139 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/jsx-quotes.js +98 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/key-spacing.js +687 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/keyword-spacing.js +640 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/line-comment-position.js +122 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/linebreak-style.js +108 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/lines-around-comment.js +471 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/lines-around-directive.js +201 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/lines-between-class-members.js +269 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/logical-assignment-operators.js +504 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-classes-per-file.js +89 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-depth.js +156 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-len.js +440 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-lines-per-function.js +213 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-lines.js +193 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-nested-callbacks.js +117 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-params.js +102 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-statements-per-line.js +199 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/max-statements.js +184 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/multiline-comment-style.js +474 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/multiline-ternary.js +174 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/new-cap.js +276 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/new-parens.js +93 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/newline-after-var.js +253 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/newline-before-return.js +217 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/newline-per-chained-call.js +126 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-alert.js +138 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-array-constructor.js +133 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-async-promise-executor.js +39 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-await-in-loop.js +106 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-bitwise.js +119 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-buffer-constructor.js +50 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-caller.js +46 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-case-declarations.js +64 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-catch-shadow.js +82 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-class-assign.js +63 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-compare-neg-zero.js +60 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-cond-assign.js +159 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-confusing-arrow.js +92 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-console.js +207 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-const-assign.js +56 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-constant-binary-expression.js +509 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-constant-condition.js +150 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-continue.js +39 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-control-regex.js +138 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-debugger.js +43 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-div-regex.js +53 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-args.js +82 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-class-members.js +104 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-else-if.js +122 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-dupe-keys.js +142 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-duplicate-case.js +71 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-duplicate-imports.js +290 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-else-return.js +405 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-character-class.js +76 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-function.js +167 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-pattern.js +78 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-empty-static-block.js +47 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-empty.js +103 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-eq-null.js +46 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-eval.js +286 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-ex-assign.js +54 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-extend-native.js +179 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-bind.js +213 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +317 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-label.js +149 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-parens.js +1322 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-extra-semi.js +147 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-fallthrough.js +196 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-floating-decimal.js +73 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-func-assign.js +78 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-global-assign.js +95 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-implicit-coercion.js +380 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-implicit-globals.js +146 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-implied-eval.js +132 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-import-assign.js +241 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-inline-comments.js +110 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-inner-declarations.js +110 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-invalid-regexp.js +194 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-invalid-this.js +150 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-irregular-whitespace.js +276 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-iterator.js +52 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-label-var.js +80 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-labels.js +149 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-lone-blocks.js +136 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-lonely-if.js +88 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-loop-func.js +206 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-loss-of-precision.js +214 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-magic-numbers.js +243 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-misleading-character-class.js +300 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-operators.js +229 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-requires.js +238 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +116 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-assign.js +67 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-spaces.js +141 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-multi-str.js +65 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +154 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-native-reassign.js +98 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-negated-condition.js +95 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-negated-in-lhs.js +46 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-nested-ternary.js +44 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new-func.js +87 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +66 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new-object.js +67 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new-require.js +50 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new-symbol.js +56 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new-wrappers.js +60 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-new.js +43 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +148 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-obj-calls.js +86 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-object-constructor.js +117 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-octal-escape.js +56 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-octal.js +45 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-param-reassign.js +230 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-path-concat.js +64 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-plusplus.js +105 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-process-env.js +51 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-process-exit.js +47 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-promise-executor-return.js +263 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-proto.js +48 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-prototype-builtins.js +159 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-redeclare.js +174 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-regex-spaces.js +197 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-exports.js +193 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-globals.js +124 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-imports.js +410 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-modules.js +213 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-properties.js +168 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-restricted-syntax.js +70 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-return-assign.js +80 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-return-await.js +135 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-script-url.js +61 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-self-assign.js +183 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-self-compare.js +60 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-sequences.js +138 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-setter-return.js +226 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +65 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-shadow.js +336 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-spaced-func.js +83 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-sparse-arrays.js +50 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-sync.js +64 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-tabs.js +81 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-template-curly-in-string.js +44 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-ternary.js +41 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-this-before-super.js +331 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-throw-literal.js +51 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-trailing-spaces.js +193 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-undef-init.js +75 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-undef.js +79 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-undefined.js +86 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-underscore-dangle.js +335 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unexpected-multiline.js +120 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unneeded-ternary.js +166 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unreachable-loop.js +185 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unreachable.js +293 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-finally.js +111 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-negation.js +128 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +205 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-expressions.js +186 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-labels.js +143 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-private-class-members.js +195 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-unused-vars.js +718 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-use-before-define.js +348 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-backreference.js +194 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-call.js +90 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-computed-key.js +168 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-concat.js +115 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-constructor.js +189 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-escape.js +333 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-rename.js +172 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-useless-return.js +364 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-var.js +334 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-void.js +64 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-warning-comments.js +201 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-whitespace-before-property.js +116 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/no-with.js +39 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +127 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/object-curly-newline.js +324 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/object-curly-spacing.js +311 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/object-property-newline.js +102 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/object-shorthand.js +520 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +95 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/one-var.js +567 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/operator-assignment.js +209 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/operator-linebreak.js +253 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/padded-blocks.js +310 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/padding-line-between-statements.js +590 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-arrow-callback.js +381 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-const.js +501 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-destructuring.js +301 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +191 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-named-capture-group.js +178 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-numeric-literals.js +148 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-object-has-own.js +114 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-object-spread.js +298 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +132 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-reflect.js +127 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-regex-literals.js +507 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-rest-params.js +118 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-spread.js +87 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/prefer-template.js +275 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/quote-props.js +310 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/quotes.js +350 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/radix.js +198 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/require-atomic-updates.js +331 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/require-await.js +113 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/require-jsdoc.js +122 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/require-unicode-regexp.js +129 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/require-yield.js +77 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/rest-spread-spacing.js +123 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/semi-spacing.js +248 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/semi-style.js +158 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/semi.js +438 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/sort-imports.js +241 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/sort-keys.js +230 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/sort-vars.js +104 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/space-before-blocks.js +204 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/space-before-function-paren.js +167 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/space-in-parens.js +285 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/space-infix-ops.js +198 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/space-unary-ops.js +324 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/spaced-comment.js +385 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/strict.js +277 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/switch-colon-spacing.js +132 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/symbol-description.js +73 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/template-curly-spacing.js +144 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/template-tag-spacing.js +93 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/use-isnan.js +141 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/ast-utils.js +2282 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/fix-tracker.js +114 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +115 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/patterns/letters.js +36 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/regular-expressions.js +42 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/index.js +11 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/valid-jsdoc.js +516 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/valid-typeof.js +127 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/vars-on-top.js +157 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/wrap-iife.js +207 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/wrap-regex.js +61 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/yield-star-spacing.js +130 -0
- package/template/lib/ts/node_modules/eslint/lib/rules/yoda.js +353 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/ajv.js +34 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/ast-utils.js +29 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/config-validator.js +347 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/deprecation-warnings.js +58 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/directives.js +15 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/logging.js +30 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/relative-module-resolver.js +50 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/runtime-info.js +167 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/severity.js +49 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/string-utils.js +60 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/traverser.js +195 -0
- package/template/lib/ts/node_modules/eslint/lib/shared/types.js +216 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/index.js +5 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/source-code.js +1055 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +57 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +58 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/cursor.js +76 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/cursors.js +90 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +39 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +43 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +57 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +63 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/index.js +627 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +40 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +38 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +42 -0
- package/template/lib/ts/node_modules/eslint/lib/source-code/token-store/utils.js +107 -0
- package/template/lib/ts/node_modules/eslint/lib/unsupported-api.js +30 -0
- package/template/lib/ts/node_modules/eslint/messages/all-files-ignored.js +16 -0
- package/template/lib/ts/node_modules/eslint/messages/eslintrc-incompat.js +98 -0
- package/template/lib/ts/node_modules/eslint/messages/eslintrc-plugins.js +24 -0
- package/template/lib/ts/node_modules/eslint/messages/extend-config-missing.js +13 -0
- package/template/lib/ts/node_modules/eslint/messages/failed-to-read-json.js +11 -0
- package/template/lib/ts/node_modules/eslint/messages/file-not-found.js +10 -0
- package/template/lib/ts/node_modules/eslint/messages/invalid-rule-options.js +17 -0
- package/template/lib/ts/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
- package/template/lib/ts/node_modules/eslint/messages/no-config-found.js +15 -0
- package/template/lib/ts/node_modules/eslint/messages/plugin-conflict.js +22 -0
- package/template/lib/ts/node_modules/eslint/messages/plugin-invalid.js +16 -0
- package/template/lib/ts/node_modules/eslint/messages/plugin-missing.js +19 -0
- package/template/lib/ts/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
- package/template/lib/ts/node_modules/eslint/messages/shared.js +18 -0
- package/template/lib/ts/node_modules/eslint/messages/whitespace-found.js +11 -0
- package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint +17 -0
- package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/ts/node_modules/eslint/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml +17 -0
- package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml.CMD +12 -0
- package/template/lib/ts/node_modules/eslint/node_modules/.bin/js-yaml.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint/package.json +179 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/LICENSE +5 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/README.md +232 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.cjs +278 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.d.ts +20 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.es2020.mjs +251 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.js +252 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/lib/index.js.map +1 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint +17 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/package.json +108 -0
- package/template/lib/ts/node_modules/eslint-import-resolver-typescript/shim.d.ts +4 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/CHANGELOG.md +1925 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/CONTRIBUTING.md +84 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/LICENSE +22 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/README.md +500 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/RELEASE.md +54 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/SECURITY.md +11 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/electron.js +8 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/errors.js +14 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/react-native.js +13 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/react.js +18 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/recommended.js +28 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/stage-0.js +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/typescript.js +34 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/config/warnings.js +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +91 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/default.md +72 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +92 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/export.md +37 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/exports-last.md +51 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/extensions.md +174 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/first.md +75 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/group-exports.md +118 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/imports-first.md +9 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +70 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/named.md +102 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/namespace.md +106 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +167 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +54 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-amd.md +37 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +83 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +96 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +111 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +65 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +62 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +109 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +25 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +49 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +139 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +81 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +136 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +54 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +52 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +53 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +36 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +79 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +44 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +42 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +70 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +123 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +198 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +32 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +60 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +110 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +125 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +85 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +39 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/order.md +365 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +185 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +57 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/ExportMap.js +856 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/importType.js +129 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/packagePath.js +22 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/core/staticRequire.js +11 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/docsUrl.js +8 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/importDeclaration.js +5 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/index.js +71 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +221 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/default.js +40 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +120 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/export.js +250 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/exports-last.js +40 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/extensions.js +193 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/first.js +144 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/group-exports.js +155 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/imports-first.js +16 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +60 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/named.js +143 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/namespace.js +218 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +237 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +40 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-amd.js +47 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +103 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +141 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +158 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +43 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +138 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +354 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +77 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +105 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +301 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +85 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +144 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +59 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +96 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +45 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +31 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +39 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +175 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +44 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +71 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +48 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +245 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +39 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +79 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +60 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +945 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +147 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +26 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/order.js +785 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +116 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +38 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/LICENSE +22 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/README.md +21 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/memo-parser/index.js +41 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint +17 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver +17 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver.CMD +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/node_modules/.bin/semver.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint-plugin-import/package.json +124 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/LICENSE.md +24 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/README.md +202 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.d.ts +5 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/eslint-plugin-prettier.js +254 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint +17 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier +17 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.CMD +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint-config-prettier.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.CMD +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/eslint.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier +17 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.CMD +12 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/node_modules/.bin/prettier.ps1 +41 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/package.json +101 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/recommended.d.ts +5 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/recommended.js +17 -0
- package/template/lib/ts/node_modules/eslint-plugin-prettier/worker.js +181 -0
- package/template/lib/ts/node_modules/prettier/LICENSE +4857 -0
- package/template/lib/ts/node_modules/prettier/README.md +109 -0
- package/template/lib/ts/node_modules/prettier/bin/prettier.cjs +68 -0
- package/template/lib/ts/node_modules/prettier/doc.d.ts +243 -0
- package/template/lib/ts/node_modules/prettier/doc.js +1328 -0
- package/template/lib/ts/node_modules/prettier/doc.mjs +1300 -0
- package/template/lib/ts/node_modules/prettier/index.cjs +648 -0
- package/template/lib/ts/node_modules/prettier/index.d.ts +940 -0
- package/template/lib/ts/node_modules/prettier/index.mjs +24255 -0
- package/template/lib/ts/node_modules/prettier/internal/cli.mjs +7089 -0
- package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier +17 -0
- package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier.CMD +12 -0
- package/template/lib/ts/node_modules/prettier/node_modules/.bin/prettier.ps1 +41 -0
- package/template/lib/ts/node_modules/prettier/package.json +198 -0
- package/template/lib/ts/node_modules/prettier/plugins/acorn.d.ts +6 -0
- package/template/lib/ts/node_modules/prettier/plugins/acorn.js +13 -0
- package/template/lib/ts/node_modules/prettier/plugins/acorn.mjs +13 -0
- package/template/lib/ts/node_modules/prettier/plugins/angular.d.ts +8 -0
- package/template/lib/ts/node_modules/prettier/plugins/angular.js +1 -0
- package/template/lib/ts/node_modules/prettier/plugins/angular.mjs +1 -0
- package/template/lib/ts/node_modules/prettier/plugins/babel.d.ts +18 -0
- package/template/lib/ts/node_modules/prettier/plugins/babel.js +16 -0
- package/template/lib/ts/node_modules/prettier/plugins/babel.mjs +16 -0
- package/template/lib/ts/node_modules/prettier/plugins/estree.d.ts +1 -0
- package/template/lib/ts/node_modules/prettier/plugins/estree.js +36 -0
- package/template/lib/ts/node_modules/prettier/plugins/estree.mjs +36 -0
- package/template/lib/ts/node_modules/prettier/plugins/flow.d.ts +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/flow.js +21 -0
- package/template/lib/ts/node_modules/prettier/plugins/flow.mjs +21 -0
- package/template/lib/ts/node_modules/prettier/plugins/glimmer.d.ts +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/glimmer.js +30 -0
- package/template/lib/ts/node_modules/prettier/plugins/glimmer.mjs +30 -0
- package/template/lib/ts/node_modules/prettier/plugins/graphql.d.ts +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/graphql.js +29 -0
- package/template/lib/ts/node_modules/prettier/plugins/graphql.mjs +29 -0
- package/template/lib/ts/node_modules/prettier/plugins/html.d.ts +8 -0
- package/template/lib/ts/node_modules/prettier/plugins/html.js +19 -0
- package/template/lib/ts/node_modules/prettier/plugins/html.mjs +19 -0
- package/template/lib/ts/node_modules/prettier/plugins/markdown.d.ts +7 -0
- package/template/lib/ts/node_modules/prettier/plugins/markdown.js +59 -0
- package/template/lib/ts/node_modules/prettier/plugins/markdown.mjs +59 -0
- package/template/lib/ts/node_modules/prettier/plugins/meriyah.d.ts +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/meriyah.js +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/meriyah.mjs +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/postcss.d.ts +7 -0
- package/template/lib/ts/node_modules/prettier/plugins/postcss.js +49 -0
- package/template/lib/ts/node_modules/prettier/plugins/postcss.mjs +49 -0
- package/template/lib/ts/node_modules/prettier/plugins/typescript.d.ts +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/typescript.js +25 -0
- package/template/lib/ts/node_modules/prettier/plugins/typescript.mjs +25 -0
- package/template/lib/ts/node_modules/prettier/plugins/yaml.d.ts +5 -0
- package/template/lib/ts/node_modules/prettier/plugins/yaml.js +161 -0
- package/template/lib/ts/node_modules/prettier/plugins/yaml.mjs +161 -0
- package/template/lib/ts/node_modules/prettier/standalone.d.ts +33 -0
- package/template/lib/ts/node_modules/prettier/standalone.js +34 -0
- package/template/lib/ts/node_modules/prettier/standalone.mjs +34 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/LICENSE +21 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/README.md +50 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/index.js +67 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint +17 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.CMD +12 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/node_modules/.bin/stylelint.ps1 +41 -0
- package/template/lib/ts/node_modules/stylelint-config-standard-scss/package.json +58 -0
- package/template/lib/workspace/packages/react/.stylelintrc +1 -1
- package/template/lib/workspace/packages/react/package.json +1 -1
- package/template/web-app/react/.stylelintrc +1 -1
- package/template/web-app/react/package.json +1 -1
- package/template/web-app/react-webpack/.stylelintrc +1 -1
- package/template/web-app/react-webpack/package.json +1 -1
- package/template/web-extension/.stylelintrc +1 -1
- package/template/web-extension/package.json +1 -1
- package/template/web-extension/vite.config.ts +1 -1
|
@@ -0,0 +1,1314 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react-jsx-runtime.development.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
'use strict';
|
|
12
|
+
|
|
13
|
+
if (process.env.NODE_ENV !== "production") {
|
|
14
|
+
(function() {
|
|
15
|
+
'use strict';
|
|
16
|
+
|
|
17
|
+
var React = require('react');
|
|
18
|
+
|
|
19
|
+
// ATTENTION
|
|
20
|
+
// When adding new symbols to this file,
|
|
21
|
+
// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'
|
|
22
|
+
// The Symbol used to tag the ReactElement-like types.
|
|
23
|
+
var REACT_ELEMENT_TYPE = Symbol.for('react.element');
|
|
24
|
+
var REACT_PORTAL_TYPE = Symbol.for('react.portal');
|
|
25
|
+
var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');
|
|
26
|
+
var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');
|
|
27
|
+
var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
|
|
28
|
+
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
|
|
29
|
+
var REACT_CONTEXT_TYPE = Symbol.for('react.context');
|
|
30
|
+
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');
|
|
31
|
+
var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');
|
|
32
|
+
var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');
|
|
33
|
+
var REACT_MEMO_TYPE = Symbol.for('react.memo');
|
|
34
|
+
var REACT_LAZY_TYPE = Symbol.for('react.lazy');
|
|
35
|
+
var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');
|
|
36
|
+
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
37
|
+
var FAUX_ITERATOR_SYMBOL = '@@iterator';
|
|
38
|
+
function getIteratorFn(maybeIterable) {
|
|
39
|
+
if (maybeIterable === null || typeof maybeIterable !== 'object') {
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
|
44
|
+
|
|
45
|
+
if (typeof maybeIterator === 'function') {
|
|
46
|
+
return maybeIterator;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
return null;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
53
|
+
|
|
54
|
+
function error(format) {
|
|
55
|
+
{
|
|
56
|
+
{
|
|
57
|
+
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
|
58
|
+
args[_key2 - 1] = arguments[_key2];
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
printWarning('error', format, args);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function printWarning(level, format, args) {
|
|
67
|
+
// When changing this logic, you might want to also
|
|
68
|
+
// update consoleWithStackDev.www.js as well.
|
|
69
|
+
{
|
|
70
|
+
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
71
|
+
var stack = ReactDebugCurrentFrame.getStackAddendum();
|
|
72
|
+
|
|
73
|
+
if (stack !== '') {
|
|
74
|
+
format += '%s';
|
|
75
|
+
args = args.concat([stack]);
|
|
76
|
+
} // eslint-disable-next-line react-internal/safe-string-coercion
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
var argsWithFormat = args.map(function (item) {
|
|
80
|
+
return String(item);
|
|
81
|
+
}); // Careful: RN currently depends on this prefix
|
|
82
|
+
|
|
83
|
+
argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it
|
|
84
|
+
// breaks IE9: https://github.com/facebook/react/issues/13610
|
|
85
|
+
// eslint-disable-next-line react-internal/no-production-logging
|
|
86
|
+
|
|
87
|
+
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// -----------------------------------------------------------------------------
|
|
92
|
+
|
|
93
|
+
var enableScopeAPI = false; // Experimental Create Event Handle API.
|
|
94
|
+
var enableCacheElement = false;
|
|
95
|
+
var enableTransitionTracing = false; // No known bugs, but needs performance testing
|
|
96
|
+
|
|
97
|
+
var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
|
|
98
|
+
// stuff. Intended to enable React core members to more easily debug scheduling
|
|
99
|
+
// issues in DEV builds.
|
|
100
|
+
|
|
101
|
+
var enableDebugTracing = false; // Track which Fiber(s) schedule render work.
|
|
102
|
+
|
|
103
|
+
var REACT_MODULE_REFERENCE;
|
|
104
|
+
|
|
105
|
+
{
|
|
106
|
+
REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
function isValidElementType(type) {
|
|
110
|
+
if (typeof type === 'string' || typeof type === 'function') {
|
|
111
|
+
return true;
|
|
112
|
+
} // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing ) {
|
|
116
|
+
return true;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
if (typeof type === 'object' && type !== null) {
|
|
120
|
+
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
|
|
121
|
+
// types supported by any Flight configuration anywhere since
|
|
122
|
+
// we don't know which Flight build this will end up being used
|
|
123
|
+
// with.
|
|
124
|
+
type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
|
|
125
|
+
return true;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
return false;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
function getWrappedName(outerType, innerType, wrapperName) {
|
|
133
|
+
var displayName = outerType.displayName;
|
|
134
|
+
|
|
135
|
+
if (displayName) {
|
|
136
|
+
return displayName;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
var functionName = innerType.displayName || innerType.name || '';
|
|
140
|
+
return functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName;
|
|
141
|
+
} // Keep in sync with react-reconciler/getComponentNameFromFiber
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
function getContextName(type) {
|
|
145
|
+
return type.displayName || 'Context';
|
|
146
|
+
} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
function getComponentNameFromType(type) {
|
|
150
|
+
if (type == null) {
|
|
151
|
+
// Host root, text node or just invalid type.
|
|
152
|
+
return null;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
{
|
|
156
|
+
if (typeof type.tag === 'number') {
|
|
157
|
+
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
if (typeof type === 'function') {
|
|
162
|
+
return type.displayName || type.name || null;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
if (typeof type === 'string') {
|
|
166
|
+
return type;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
switch (type) {
|
|
170
|
+
case REACT_FRAGMENT_TYPE:
|
|
171
|
+
return 'Fragment';
|
|
172
|
+
|
|
173
|
+
case REACT_PORTAL_TYPE:
|
|
174
|
+
return 'Portal';
|
|
175
|
+
|
|
176
|
+
case REACT_PROFILER_TYPE:
|
|
177
|
+
return 'Profiler';
|
|
178
|
+
|
|
179
|
+
case REACT_STRICT_MODE_TYPE:
|
|
180
|
+
return 'StrictMode';
|
|
181
|
+
|
|
182
|
+
case REACT_SUSPENSE_TYPE:
|
|
183
|
+
return 'Suspense';
|
|
184
|
+
|
|
185
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
186
|
+
return 'SuspenseList';
|
|
187
|
+
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
if (typeof type === 'object') {
|
|
191
|
+
switch (type.$$typeof) {
|
|
192
|
+
case REACT_CONTEXT_TYPE:
|
|
193
|
+
var context = type;
|
|
194
|
+
return getContextName(context) + '.Consumer';
|
|
195
|
+
|
|
196
|
+
case REACT_PROVIDER_TYPE:
|
|
197
|
+
var provider = type;
|
|
198
|
+
return getContextName(provider._context) + '.Provider';
|
|
199
|
+
|
|
200
|
+
case REACT_FORWARD_REF_TYPE:
|
|
201
|
+
return getWrappedName(type, type.render, 'ForwardRef');
|
|
202
|
+
|
|
203
|
+
case REACT_MEMO_TYPE:
|
|
204
|
+
var outerName = type.displayName || null;
|
|
205
|
+
|
|
206
|
+
if (outerName !== null) {
|
|
207
|
+
return outerName;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
return getComponentNameFromType(type.type) || 'Memo';
|
|
211
|
+
|
|
212
|
+
case REACT_LAZY_TYPE:
|
|
213
|
+
{
|
|
214
|
+
var lazyComponent = type;
|
|
215
|
+
var payload = lazyComponent._payload;
|
|
216
|
+
var init = lazyComponent._init;
|
|
217
|
+
|
|
218
|
+
try {
|
|
219
|
+
return getComponentNameFromType(init(payload));
|
|
220
|
+
} catch (x) {
|
|
221
|
+
return null;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// eslint-disable-next-line no-fallthrough
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
return null;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
var assign = Object.assign;
|
|
233
|
+
|
|
234
|
+
// Helpers to patch console.logs to avoid logging during side-effect free
|
|
235
|
+
// replaying on render function. This currently only patches the object
|
|
236
|
+
// lazily which won't cover if the log function was extracted eagerly.
|
|
237
|
+
// We could also eagerly patch the method.
|
|
238
|
+
var disabledDepth = 0;
|
|
239
|
+
var prevLog;
|
|
240
|
+
var prevInfo;
|
|
241
|
+
var prevWarn;
|
|
242
|
+
var prevError;
|
|
243
|
+
var prevGroup;
|
|
244
|
+
var prevGroupCollapsed;
|
|
245
|
+
var prevGroupEnd;
|
|
246
|
+
|
|
247
|
+
function disabledLog() {}
|
|
248
|
+
|
|
249
|
+
disabledLog.__reactDisabledLog = true;
|
|
250
|
+
function disableLogs() {
|
|
251
|
+
{
|
|
252
|
+
if (disabledDepth === 0) {
|
|
253
|
+
/* eslint-disable react-internal/no-production-logging */
|
|
254
|
+
prevLog = console.log;
|
|
255
|
+
prevInfo = console.info;
|
|
256
|
+
prevWarn = console.warn;
|
|
257
|
+
prevError = console.error;
|
|
258
|
+
prevGroup = console.group;
|
|
259
|
+
prevGroupCollapsed = console.groupCollapsed;
|
|
260
|
+
prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099
|
|
261
|
+
|
|
262
|
+
var props = {
|
|
263
|
+
configurable: true,
|
|
264
|
+
enumerable: true,
|
|
265
|
+
value: disabledLog,
|
|
266
|
+
writable: true
|
|
267
|
+
}; // $FlowFixMe Flow thinks console is immutable.
|
|
268
|
+
|
|
269
|
+
Object.defineProperties(console, {
|
|
270
|
+
info: props,
|
|
271
|
+
log: props,
|
|
272
|
+
warn: props,
|
|
273
|
+
error: props,
|
|
274
|
+
group: props,
|
|
275
|
+
groupCollapsed: props,
|
|
276
|
+
groupEnd: props
|
|
277
|
+
});
|
|
278
|
+
/* eslint-enable react-internal/no-production-logging */
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
disabledDepth++;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
function reenableLogs() {
|
|
285
|
+
{
|
|
286
|
+
disabledDepth--;
|
|
287
|
+
|
|
288
|
+
if (disabledDepth === 0) {
|
|
289
|
+
/* eslint-disable react-internal/no-production-logging */
|
|
290
|
+
var props = {
|
|
291
|
+
configurable: true,
|
|
292
|
+
enumerable: true,
|
|
293
|
+
writable: true
|
|
294
|
+
}; // $FlowFixMe Flow thinks console is immutable.
|
|
295
|
+
|
|
296
|
+
Object.defineProperties(console, {
|
|
297
|
+
log: assign({}, props, {
|
|
298
|
+
value: prevLog
|
|
299
|
+
}),
|
|
300
|
+
info: assign({}, props, {
|
|
301
|
+
value: prevInfo
|
|
302
|
+
}),
|
|
303
|
+
warn: assign({}, props, {
|
|
304
|
+
value: prevWarn
|
|
305
|
+
}),
|
|
306
|
+
error: assign({}, props, {
|
|
307
|
+
value: prevError
|
|
308
|
+
}),
|
|
309
|
+
group: assign({}, props, {
|
|
310
|
+
value: prevGroup
|
|
311
|
+
}),
|
|
312
|
+
groupCollapsed: assign({}, props, {
|
|
313
|
+
value: prevGroupCollapsed
|
|
314
|
+
}),
|
|
315
|
+
groupEnd: assign({}, props, {
|
|
316
|
+
value: prevGroupEnd
|
|
317
|
+
})
|
|
318
|
+
});
|
|
319
|
+
/* eslint-enable react-internal/no-production-logging */
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
if (disabledDepth < 0) {
|
|
323
|
+
error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
|
|
329
|
+
var prefix;
|
|
330
|
+
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
331
|
+
{
|
|
332
|
+
if (prefix === undefined) {
|
|
333
|
+
// Extract the VM specific prefix used by each line.
|
|
334
|
+
try {
|
|
335
|
+
throw Error();
|
|
336
|
+
} catch (x) {
|
|
337
|
+
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
338
|
+
prefix = match && match[1] || '';
|
|
339
|
+
}
|
|
340
|
+
} // We use the prefix to ensure our stacks line up with native stack frames.
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
return '\n' + prefix + name;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
var reentry = false;
|
|
347
|
+
var componentFrameCache;
|
|
348
|
+
|
|
349
|
+
{
|
|
350
|
+
var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;
|
|
351
|
+
componentFrameCache = new PossiblyWeakMap();
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
function describeNativeComponentFrame(fn, construct) {
|
|
355
|
+
// If something asked for a stack inside a fake render, it should get ignored.
|
|
356
|
+
if ( !fn || reentry) {
|
|
357
|
+
return '';
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
{
|
|
361
|
+
var frame = componentFrameCache.get(fn);
|
|
362
|
+
|
|
363
|
+
if (frame !== undefined) {
|
|
364
|
+
return frame;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
var control;
|
|
369
|
+
reentry = true;
|
|
370
|
+
var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.
|
|
371
|
+
|
|
372
|
+
Error.prepareStackTrace = undefined;
|
|
373
|
+
var previousDispatcher;
|
|
374
|
+
|
|
375
|
+
{
|
|
376
|
+
previousDispatcher = ReactCurrentDispatcher.current; // Set the dispatcher in DEV because this might be call in the render function
|
|
377
|
+
// for warnings.
|
|
378
|
+
|
|
379
|
+
ReactCurrentDispatcher.current = null;
|
|
380
|
+
disableLogs();
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
try {
|
|
384
|
+
// This should throw.
|
|
385
|
+
if (construct) {
|
|
386
|
+
// Something should be setting the props in the constructor.
|
|
387
|
+
var Fake = function () {
|
|
388
|
+
throw Error();
|
|
389
|
+
}; // $FlowFixMe
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
Object.defineProperty(Fake.prototype, 'props', {
|
|
393
|
+
set: function () {
|
|
394
|
+
// We use a throwing setter instead of frozen or non-writable props
|
|
395
|
+
// because that won't throw in a non-strict mode function.
|
|
396
|
+
throw Error();
|
|
397
|
+
}
|
|
398
|
+
});
|
|
399
|
+
|
|
400
|
+
if (typeof Reflect === 'object' && Reflect.construct) {
|
|
401
|
+
// We construct a different control for this case to include any extra
|
|
402
|
+
// frames added by the construct call.
|
|
403
|
+
try {
|
|
404
|
+
Reflect.construct(Fake, []);
|
|
405
|
+
} catch (x) {
|
|
406
|
+
control = x;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
Reflect.construct(fn, [], Fake);
|
|
410
|
+
} else {
|
|
411
|
+
try {
|
|
412
|
+
Fake.call();
|
|
413
|
+
} catch (x) {
|
|
414
|
+
control = x;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
fn.call(Fake.prototype);
|
|
418
|
+
}
|
|
419
|
+
} else {
|
|
420
|
+
try {
|
|
421
|
+
throw Error();
|
|
422
|
+
} catch (x) {
|
|
423
|
+
control = x;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
fn();
|
|
427
|
+
}
|
|
428
|
+
} catch (sample) {
|
|
429
|
+
// This is inlined manually because closure doesn't do it for us.
|
|
430
|
+
if (sample && control && typeof sample.stack === 'string') {
|
|
431
|
+
// This extracts the first frame from the sample that isn't also in the control.
|
|
432
|
+
// Skipping one frame that we assume is the frame that calls the two.
|
|
433
|
+
var sampleLines = sample.stack.split('\n');
|
|
434
|
+
var controlLines = control.stack.split('\n');
|
|
435
|
+
var s = sampleLines.length - 1;
|
|
436
|
+
var c = controlLines.length - 1;
|
|
437
|
+
|
|
438
|
+
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
|
439
|
+
// We expect at least one stack frame to be shared.
|
|
440
|
+
// Typically this will be the root most one. However, stack frames may be
|
|
441
|
+
// cut off due to maximum stack limits. In this case, one maybe cut off
|
|
442
|
+
// earlier than the other. We assume that the sample is longer or the same
|
|
443
|
+
// and there for cut off earlier. So we should find the root most frame in
|
|
444
|
+
// the sample somewhere in the control.
|
|
445
|
+
c--;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
for (; s >= 1 && c >= 0; s--, c--) {
|
|
449
|
+
// Next we find the first one that isn't the same which should be the
|
|
450
|
+
// frame that called our sample function and the control.
|
|
451
|
+
if (sampleLines[s] !== controlLines[c]) {
|
|
452
|
+
// In V8, the first line is describing the message but other VMs don't.
|
|
453
|
+
// If we're about to return the first line, and the control is also on the same
|
|
454
|
+
// line, that's a pretty good indicator that our sample threw at same line as
|
|
455
|
+
// the control. I.e. before we entered the sample frame. So we ignore this result.
|
|
456
|
+
// This can happen if you passed a class to function component, or non-function.
|
|
457
|
+
if (s !== 1 || c !== 1) {
|
|
458
|
+
do {
|
|
459
|
+
s--;
|
|
460
|
+
c--; // We may still have similar intermediate frames from the construct call.
|
|
461
|
+
// The next one that isn't the same should be our match though.
|
|
462
|
+
|
|
463
|
+
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
464
|
+
// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
|
|
465
|
+
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
|
|
466
|
+
// but we have a user-provided "displayName"
|
|
467
|
+
// splice it in to make the stack more readable.
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
if (fn.displayName && _frame.includes('<anonymous>')) {
|
|
471
|
+
_frame = _frame.replace('<anonymous>', fn.displayName);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
{
|
|
475
|
+
if (typeof fn === 'function') {
|
|
476
|
+
componentFrameCache.set(fn, _frame);
|
|
477
|
+
}
|
|
478
|
+
} // Return the line we found.
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
return _frame;
|
|
482
|
+
}
|
|
483
|
+
} while (s >= 1 && c >= 0);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
break;
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
} finally {
|
|
491
|
+
reentry = false;
|
|
492
|
+
|
|
493
|
+
{
|
|
494
|
+
ReactCurrentDispatcher.current = previousDispatcher;
|
|
495
|
+
reenableLogs();
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
Error.prepareStackTrace = previousPrepareStackTrace;
|
|
499
|
+
} // Fallback to just using the name if we couldn't make it throw.
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
var name = fn ? fn.displayName || fn.name : '';
|
|
503
|
+
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';
|
|
504
|
+
|
|
505
|
+
{
|
|
506
|
+
if (typeof fn === 'function') {
|
|
507
|
+
componentFrameCache.set(fn, syntheticFrame);
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
return syntheticFrame;
|
|
512
|
+
}
|
|
513
|
+
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
|
514
|
+
{
|
|
515
|
+
return describeNativeComponentFrame(fn, false);
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
function shouldConstruct(Component) {
|
|
520
|
+
var prototype = Component.prototype;
|
|
521
|
+
return !!(prototype && prototype.isReactComponent);
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
525
|
+
|
|
526
|
+
if (type == null) {
|
|
527
|
+
return '';
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
if (typeof type === 'function') {
|
|
531
|
+
{
|
|
532
|
+
return describeNativeComponentFrame(type, shouldConstruct(type));
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
if (typeof type === 'string') {
|
|
537
|
+
return describeBuiltInComponentFrame(type);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
switch (type) {
|
|
541
|
+
case REACT_SUSPENSE_TYPE:
|
|
542
|
+
return describeBuiltInComponentFrame('Suspense');
|
|
543
|
+
|
|
544
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
545
|
+
return describeBuiltInComponentFrame('SuspenseList');
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
if (typeof type === 'object') {
|
|
549
|
+
switch (type.$$typeof) {
|
|
550
|
+
case REACT_FORWARD_REF_TYPE:
|
|
551
|
+
return describeFunctionComponentFrame(type.render);
|
|
552
|
+
|
|
553
|
+
case REACT_MEMO_TYPE:
|
|
554
|
+
// Memo may contain any component type so we recursively resolve it.
|
|
555
|
+
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
|
556
|
+
|
|
557
|
+
case REACT_LAZY_TYPE:
|
|
558
|
+
{
|
|
559
|
+
var lazyComponent = type;
|
|
560
|
+
var payload = lazyComponent._payload;
|
|
561
|
+
var init = lazyComponent._init;
|
|
562
|
+
|
|
563
|
+
try {
|
|
564
|
+
// Lazy may contain any component type so we recursively resolve it.
|
|
565
|
+
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
|
566
|
+
} catch (x) {}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
return '';
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
575
|
+
|
|
576
|
+
var loggedTypeFailures = {};
|
|
577
|
+
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
578
|
+
|
|
579
|
+
function setCurrentlyValidatingElement(element) {
|
|
580
|
+
{
|
|
581
|
+
if (element) {
|
|
582
|
+
var owner = element._owner;
|
|
583
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
584
|
+
ReactDebugCurrentFrame.setExtraStackFrame(stack);
|
|
585
|
+
} else {
|
|
586
|
+
ReactDebugCurrentFrame.setExtraStackFrame(null);
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
|
592
|
+
{
|
|
593
|
+
// $FlowFixMe This is okay but Flow doesn't know it.
|
|
594
|
+
var has = Function.call.bind(hasOwnProperty);
|
|
595
|
+
|
|
596
|
+
for (var typeSpecName in typeSpecs) {
|
|
597
|
+
if (has(typeSpecs, typeSpecName)) {
|
|
598
|
+
var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to
|
|
599
|
+
// fail the render phase where it didn't fail before. So we log it.
|
|
600
|
+
// After these have been cleaned up, we'll let them throw.
|
|
601
|
+
|
|
602
|
+
try {
|
|
603
|
+
// This is intentionally an invariant that gets caught. It's the same
|
|
604
|
+
// behavior as without this statement except with a better message.
|
|
605
|
+
if (typeof typeSpecs[typeSpecName] !== 'function') {
|
|
606
|
+
// eslint-disable-next-line react-internal/prod-error-codes
|
|
607
|
+
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');
|
|
608
|
+
err.name = 'Invariant Violation';
|
|
609
|
+
throw err;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');
|
|
613
|
+
} catch (ex) {
|
|
614
|
+
error$1 = ex;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
if (error$1 && !(error$1 instanceof Error)) {
|
|
618
|
+
setCurrentlyValidatingElement(element);
|
|
619
|
+
|
|
620
|
+
error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);
|
|
621
|
+
|
|
622
|
+
setCurrentlyValidatingElement(null);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
626
|
+
// Only monitor this failure once because there tends to be a lot of the
|
|
627
|
+
// same error.
|
|
628
|
+
loggedTypeFailures[error$1.message] = true;
|
|
629
|
+
setCurrentlyValidatingElement(element);
|
|
630
|
+
|
|
631
|
+
error('Failed %s type: %s', location, error$1.message);
|
|
632
|
+
|
|
633
|
+
setCurrentlyValidatingElement(null);
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
var isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare
|
|
641
|
+
|
|
642
|
+
function isArray(a) {
|
|
643
|
+
return isArrayImpl(a);
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
/*
|
|
647
|
+
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
|
|
648
|
+
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
|
|
649
|
+
*
|
|
650
|
+
* The functions in this module will throw an easier-to-understand,
|
|
651
|
+
* easier-to-debug exception with a clear errors message message explaining the
|
|
652
|
+
* problem. (Instead of a confusing exception thrown inside the implementation
|
|
653
|
+
* of the `value` object).
|
|
654
|
+
*/
|
|
655
|
+
// $FlowFixMe only called in DEV, so void return is not possible.
|
|
656
|
+
function typeName(value) {
|
|
657
|
+
{
|
|
658
|
+
// toStringTag is needed for namespaced types like Temporal.Instant
|
|
659
|
+
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
|
|
660
|
+
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
|
|
661
|
+
return type;
|
|
662
|
+
}
|
|
663
|
+
} // $FlowFixMe only called in DEV, so void return is not possible.
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
function willCoercionThrow(value) {
|
|
667
|
+
{
|
|
668
|
+
try {
|
|
669
|
+
testStringCoercion(value);
|
|
670
|
+
return false;
|
|
671
|
+
} catch (e) {
|
|
672
|
+
return true;
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
function testStringCoercion(value) {
|
|
678
|
+
// If you ended up here by following an exception call stack, here's what's
|
|
679
|
+
// happened: you supplied an object or symbol value to React (as a prop, key,
|
|
680
|
+
// DOM attribute, CSS property, string ref, etc.) and when React tried to
|
|
681
|
+
// coerce it to a string using `'' + value`, an exception was thrown.
|
|
682
|
+
//
|
|
683
|
+
// The most common types that will cause this exception are `Symbol` instances
|
|
684
|
+
// and Temporal objects like `Temporal.Instant`. But any object that has a
|
|
685
|
+
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
|
|
686
|
+
// exception. (Library authors do this to prevent users from using built-in
|
|
687
|
+
// numeric operators like `+` or comparison operators like `>=` because custom
|
|
688
|
+
// methods are needed to perform accurate arithmetic or comparison.)
|
|
689
|
+
//
|
|
690
|
+
// To fix the problem, coerce this object or symbol value to a string before
|
|
691
|
+
// passing it to React. The most reliable way is usually `String(value)`.
|
|
692
|
+
//
|
|
693
|
+
// To find which value is throwing, check the browser or debugger console.
|
|
694
|
+
// Before this exception was thrown, there should be `console.error` output
|
|
695
|
+
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
|
|
696
|
+
// problem and how that type was used: key, atrribute, input value prop, etc.
|
|
697
|
+
// In most cases, this console output also shows the component and its
|
|
698
|
+
// ancestor components where the exception happened.
|
|
699
|
+
//
|
|
700
|
+
// eslint-disable-next-line react-internal/safe-string-coercion
|
|
701
|
+
return '' + value;
|
|
702
|
+
}
|
|
703
|
+
function checkKeyStringCoercion(value) {
|
|
704
|
+
{
|
|
705
|
+
if (willCoercionThrow(value)) {
|
|
706
|
+
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
|
|
707
|
+
|
|
708
|
+
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
|
|
714
|
+
var RESERVED_PROPS = {
|
|
715
|
+
key: true,
|
|
716
|
+
ref: true,
|
|
717
|
+
__self: true,
|
|
718
|
+
__source: true
|
|
719
|
+
};
|
|
720
|
+
var specialPropKeyWarningShown;
|
|
721
|
+
var specialPropRefWarningShown;
|
|
722
|
+
var didWarnAboutStringRefs;
|
|
723
|
+
|
|
724
|
+
{
|
|
725
|
+
didWarnAboutStringRefs = {};
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
function hasValidRef(config) {
|
|
729
|
+
{
|
|
730
|
+
if (hasOwnProperty.call(config, 'ref')) {
|
|
731
|
+
var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;
|
|
732
|
+
|
|
733
|
+
if (getter && getter.isReactWarning) {
|
|
734
|
+
return false;
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
return config.ref !== undefined;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
function hasValidKey(config) {
|
|
743
|
+
{
|
|
744
|
+
if (hasOwnProperty.call(config, 'key')) {
|
|
745
|
+
var getter = Object.getOwnPropertyDescriptor(config, 'key').get;
|
|
746
|
+
|
|
747
|
+
if (getter && getter.isReactWarning) {
|
|
748
|
+
return false;
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
return config.key !== undefined;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
function warnIfStringRefCannotBeAutoConverted(config, self) {
|
|
757
|
+
{
|
|
758
|
+
if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {
|
|
759
|
+
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
|
|
760
|
+
|
|
761
|
+
if (!didWarnAboutStringRefs[componentName]) {
|
|
762
|
+
error('Component "%s" contains the string ref "%s". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
|
|
763
|
+
|
|
764
|
+
didWarnAboutStringRefs[componentName] = true;
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
771
|
+
{
|
|
772
|
+
var warnAboutAccessingKey = function () {
|
|
773
|
+
if (!specialPropKeyWarningShown) {
|
|
774
|
+
specialPropKeyWarningShown = true;
|
|
775
|
+
|
|
776
|
+
error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
|
|
777
|
+
}
|
|
778
|
+
};
|
|
779
|
+
|
|
780
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
781
|
+
Object.defineProperty(props, 'key', {
|
|
782
|
+
get: warnAboutAccessingKey,
|
|
783
|
+
configurable: true
|
|
784
|
+
});
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
function defineRefPropWarningGetter(props, displayName) {
|
|
789
|
+
{
|
|
790
|
+
var warnAboutAccessingRef = function () {
|
|
791
|
+
if (!specialPropRefWarningShown) {
|
|
792
|
+
specialPropRefWarningShown = true;
|
|
793
|
+
|
|
794
|
+
error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);
|
|
795
|
+
}
|
|
796
|
+
};
|
|
797
|
+
|
|
798
|
+
warnAboutAccessingRef.isReactWarning = true;
|
|
799
|
+
Object.defineProperty(props, 'ref', {
|
|
800
|
+
get: warnAboutAccessingRef,
|
|
801
|
+
configurable: true
|
|
802
|
+
});
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
/**
|
|
806
|
+
* Factory method to create a new React element. This no longer adheres to
|
|
807
|
+
* the class pattern, so do not use new to call it. Also, instanceof check
|
|
808
|
+
* will not work. Instead test $$typeof field against Symbol.for('react.element') to check
|
|
809
|
+
* if something is a React Element.
|
|
810
|
+
*
|
|
811
|
+
* @param {*} type
|
|
812
|
+
* @param {*} props
|
|
813
|
+
* @param {*} key
|
|
814
|
+
* @param {string|object} ref
|
|
815
|
+
* @param {*} owner
|
|
816
|
+
* @param {*} self A *temporary* helper to detect places where `this` is
|
|
817
|
+
* different from the `owner` when React.createElement is called, so that we
|
|
818
|
+
* can warn. We want to get rid of owner and replace string `ref`s with arrow
|
|
819
|
+
* functions, and as long as `this` and owner are the same, there will be no
|
|
820
|
+
* change in behavior.
|
|
821
|
+
* @param {*} source An annotation object (added by a transpiler or otherwise)
|
|
822
|
+
* indicating filename, line number, and/or other information.
|
|
823
|
+
* @internal
|
|
824
|
+
*/
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
var ReactElement = function (type, key, ref, self, source, owner, props) {
|
|
828
|
+
var element = {
|
|
829
|
+
// This tag allows us to uniquely identify this as a React Element
|
|
830
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
831
|
+
// Built-in properties that belong on the element
|
|
832
|
+
type: type,
|
|
833
|
+
key: key,
|
|
834
|
+
ref: ref,
|
|
835
|
+
props: props,
|
|
836
|
+
// Record the component responsible for creating this element.
|
|
837
|
+
_owner: owner
|
|
838
|
+
};
|
|
839
|
+
|
|
840
|
+
{
|
|
841
|
+
// The validation flag is currently mutative. We put it on
|
|
842
|
+
// an external backing store so that we can freeze the whole object.
|
|
843
|
+
// This can be replaced with a WeakMap once they are implemented in
|
|
844
|
+
// commonly used development environments.
|
|
845
|
+
element._store = {}; // To make comparing ReactElements easier for testing purposes, we make
|
|
846
|
+
// the validation flag non-enumerable (where possible, which should
|
|
847
|
+
// include every environment we run tests in), so the test framework
|
|
848
|
+
// ignores it.
|
|
849
|
+
|
|
850
|
+
Object.defineProperty(element._store, 'validated', {
|
|
851
|
+
configurable: false,
|
|
852
|
+
enumerable: false,
|
|
853
|
+
writable: true,
|
|
854
|
+
value: false
|
|
855
|
+
}); // self and source are DEV only properties.
|
|
856
|
+
|
|
857
|
+
Object.defineProperty(element, '_self', {
|
|
858
|
+
configurable: false,
|
|
859
|
+
enumerable: false,
|
|
860
|
+
writable: false,
|
|
861
|
+
value: self
|
|
862
|
+
}); // Two elements created in two different places should be considered
|
|
863
|
+
// equal for testing purposes and therefore we hide it from enumeration.
|
|
864
|
+
|
|
865
|
+
Object.defineProperty(element, '_source', {
|
|
866
|
+
configurable: false,
|
|
867
|
+
enumerable: false,
|
|
868
|
+
writable: false,
|
|
869
|
+
value: source
|
|
870
|
+
});
|
|
871
|
+
|
|
872
|
+
if (Object.freeze) {
|
|
873
|
+
Object.freeze(element.props);
|
|
874
|
+
Object.freeze(element);
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
return element;
|
|
879
|
+
};
|
|
880
|
+
/**
|
|
881
|
+
* https://github.com/reactjs/rfcs/pull/107
|
|
882
|
+
* @param {*} type
|
|
883
|
+
* @param {object} props
|
|
884
|
+
* @param {string} key
|
|
885
|
+
*/
|
|
886
|
+
|
|
887
|
+
function jsxDEV(type, config, maybeKey, source, self) {
|
|
888
|
+
{
|
|
889
|
+
var propName; // Reserved names are extracted
|
|
890
|
+
|
|
891
|
+
var props = {};
|
|
892
|
+
var key = null;
|
|
893
|
+
var ref = null; // Currently, key can be spread in as a prop. This causes a potential
|
|
894
|
+
// issue if key is also explicitly declared (ie. <div {...props} key="Hi" />
|
|
895
|
+
// or <div key="Hi" {...props} /> ). We want to deprecate key spread,
|
|
896
|
+
// but as an intermediary step, we will use jsxDEV for everything except
|
|
897
|
+
// <div {...props} key="Hi" />, because we aren't currently able to tell if
|
|
898
|
+
// key is explicitly declared to be undefined or not.
|
|
899
|
+
|
|
900
|
+
if (maybeKey !== undefined) {
|
|
901
|
+
{
|
|
902
|
+
checkKeyStringCoercion(maybeKey);
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
key = '' + maybeKey;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
if (hasValidKey(config)) {
|
|
909
|
+
{
|
|
910
|
+
checkKeyStringCoercion(config.key);
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
key = '' + config.key;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
if (hasValidRef(config)) {
|
|
917
|
+
ref = config.ref;
|
|
918
|
+
warnIfStringRefCannotBeAutoConverted(config, self);
|
|
919
|
+
} // Remaining properties are added to a new props object
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
for (propName in config) {
|
|
923
|
+
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
924
|
+
props[propName] = config[propName];
|
|
925
|
+
}
|
|
926
|
+
} // Resolve default props
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
if (type && type.defaultProps) {
|
|
930
|
+
var defaultProps = type.defaultProps;
|
|
931
|
+
|
|
932
|
+
for (propName in defaultProps) {
|
|
933
|
+
if (props[propName] === undefined) {
|
|
934
|
+
props[propName] = defaultProps[propName];
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
if (key || ref) {
|
|
940
|
+
var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;
|
|
941
|
+
|
|
942
|
+
if (key) {
|
|
943
|
+
defineKeyPropWarningGetter(props, displayName);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
if (ref) {
|
|
947
|
+
defineRefPropWarningGetter(props, displayName);
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
|
|
956
|
+
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
957
|
+
|
|
958
|
+
function setCurrentlyValidatingElement$1(element) {
|
|
959
|
+
{
|
|
960
|
+
if (element) {
|
|
961
|
+
var owner = element._owner;
|
|
962
|
+
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
963
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
|
964
|
+
} else {
|
|
965
|
+
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
var propTypesMisspellWarningShown;
|
|
971
|
+
|
|
972
|
+
{
|
|
973
|
+
propTypesMisspellWarningShown = false;
|
|
974
|
+
}
|
|
975
|
+
/**
|
|
976
|
+
* Verifies the object is a ReactElement.
|
|
977
|
+
* See https://reactjs.org/docs/react-api.html#isvalidelement
|
|
978
|
+
* @param {?object} object
|
|
979
|
+
* @return {boolean} True if `object` is a ReactElement.
|
|
980
|
+
* @final
|
|
981
|
+
*/
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
function isValidElement(object) {
|
|
985
|
+
{
|
|
986
|
+
return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
function getDeclarationErrorAddendum() {
|
|
991
|
+
{
|
|
992
|
+
if (ReactCurrentOwner$1.current) {
|
|
993
|
+
var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
|
|
994
|
+
|
|
995
|
+
if (name) {
|
|
996
|
+
return '\n\nCheck the render method of `' + name + '`.';
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
return '';
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
function getSourceInfoErrorAddendum(source) {
|
|
1005
|
+
{
|
|
1006
|
+
if (source !== undefined) {
|
|
1007
|
+
var fileName = source.fileName.replace(/^.*[\\\/]/, '');
|
|
1008
|
+
var lineNumber = source.lineNumber;
|
|
1009
|
+
return '\n\nCheck your code at ' + fileName + ':' + lineNumber + '.';
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
return '';
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
/**
|
|
1016
|
+
* Warn if there's no key explicitly set on dynamic arrays of children or
|
|
1017
|
+
* object keys are not valid. This allows us to keep track of children between
|
|
1018
|
+
* updates.
|
|
1019
|
+
*/
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
var ownerHasKeyUseWarning = {};
|
|
1023
|
+
|
|
1024
|
+
function getCurrentComponentErrorInfo(parentType) {
|
|
1025
|
+
{
|
|
1026
|
+
var info = getDeclarationErrorAddendum();
|
|
1027
|
+
|
|
1028
|
+
if (!info) {
|
|
1029
|
+
var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;
|
|
1030
|
+
|
|
1031
|
+
if (parentName) {
|
|
1032
|
+
info = "\n\nCheck the top-level render call using <" + parentName + ">.";
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
return info;
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
/**
|
|
1040
|
+
* Warn if the element doesn't have an explicit key assigned to it.
|
|
1041
|
+
* This element is in an array. The array could grow and shrink or be
|
|
1042
|
+
* reordered. All children that haven't already been validated are required to
|
|
1043
|
+
* have a "key" property assigned to it. Error statuses are cached so a warning
|
|
1044
|
+
* will only be shown once.
|
|
1045
|
+
*
|
|
1046
|
+
* @internal
|
|
1047
|
+
* @param {ReactElement} element Element that requires a key.
|
|
1048
|
+
* @param {*} parentType element's parent's type.
|
|
1049
|
+
*/
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
function validateExplicitKey(element, parentType) {
|
|
1053
|
+
{
|
|
1054
|
+
if (!element._store || element._store.validated || element.key != null) {
|
|
1055
|
+
return;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
element._store.validated = true;
|
|
1059
|
+
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
|
1060
|
+
|
|
1061
|
+
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
|
1062
|
+
return;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a
|
|
1066
|
+
// property, it may be the creator of the child that's responsible for
|
|
1067
|
+
// assigning it a key.
|
|
1068
|
+
|
|
1069
|
+
var childOwner = '';
|
|
1070
|
+
|
|
1071
|
+
if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
|
|
1072
|
+
// Give the component that originally created this child.
|
|
1073
|
+
childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
setCurrentlyValidatingElement$1(element);
|
|
1077
|
+
|
|
1078
|
+
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
|
|
1079
|
+
|
|
1080
|
+
setCurrentlyValidatingElement$1(null);
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
/**
|
|
1084
|
+
* Ensure that every element either is passed in a static location, in an
|
|
1085
|
+
* array with an explicit keys property defined, or in an object literal
|
|
1086
|
+
* with valid key property.
|
|
1087
|
+
*
|
|
1088
|
+
* @internal
|
|
1089
|
+
* @param {ReactNode} node Statically passed child of any type.
|
|
1090
|
+
* @param {*} parentType node's parent's type.
|
|
1091
|
+
*/
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
function validateChildKeys(node, parentType) {
|
|
1095
|
+
{
|
|
1096
|
+
if (typeof node !== 'object') {
|
|
1097
|
+
return;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
if (isArray(node)) {
|
|
1101
|
+
for (var i = 0; i < node.length; i++) {
|
|
1102
|
+
var child = node[i];
|
|
1103
|
+
|
|
1104
|
+
if (isValidElement(child)) {
|
|
1105
|
+
validateExplicitKey(child, parentType);
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
} else if (isValidElement(node)) {
|
|
1109
|
+
// This element was passed in a valid location.
|
|
1110
|
+
if (node._store) {
|
|
1111
|
+
node._store.validated = true;
|
|
1112
|
+
}
|
|
1113
|
+
} else if (node) {
|
|
1114
|
+
var iteratorFn = getIteratorFn(node);
|
|
1115
|
+
|
|
1116
|
+
if (typeof iteratorFn === 'function') {
|
|
1117
|
+
// Entry iterators used to provide implicit keys,
|
|
1118
|
+
// but now we print a separate warning for them later.
|
|
1119
|
+
if (iteratorFn !== node.entries) {
|
|
1120
|
+
var iterator = iteratorFn.call(node);
|
|
1121
|
+
var step;
|
|
1122
|
+
|
|
1123
|
+
while (!(step = iterator.next()).done) {
|
|
1124
|
+
if (isValidElement(step.value)) {
|
|
1125
|
+
validateExplicitKey(step.value, parentType);
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
}
|
|
1132
|
+
}
|
|
1133
|
+
/**
|
|
1134
|
+
* Given an element, validate that its props follow the propTypes definition,
|
|
1135
|
+
* provided by the type.
|
|
1136
|
+
*
|
|
1137
|
+
* @param {ReactElement} element
|
|
1138
|
+
*/
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
function validatePropTypes(element) {
|
|
1142
|
+
{
|
|
1143
|
+
var type = element.type;
|
|
1144
|
+
|
|
1145
|
+
if (type === null || type === undefined || typeof type === 'string') {
|
|
1146
|
+
return;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
var propTypes;
|
|
1150
|
+
|
|
1151
|
+
if (typeof type === 'function') {
|
|
1152
|
+
propTypes = type.propTypes;
|
|
1153
|
+
} else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
|
|
1154
|
+
// Inner props are checked in the reconciler.
|
|
1155
|
+
type.$$typeof === REACT_MEMO_TYPE)) {
|
|
1156
|
+
propTypes = type.propTypes;
|
|
1157
|
+
} else {
|
|
1158
|
+
return;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
if (propTypes) {
|
|
1162
|
+
// Intentionally inside to avoid triggering lazy initializers:
|
|
1163
|
+
var name = getComponentNameFromType(type);
|
|
1164
|
+
checkPropTypes(propTypes, element.props, 'prop', name, element);
|
|
1165
|
+
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
|
|
1166
|
+
propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:
|
|
1167
|
+
|
|
1168
|
+
var _name = getComponentNameFromType(type);
|
|
1169
|
+
|
|
1170
|
+
error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {
|
|
1174
|
+
error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
/**
|
|
1179
|
+
* Given a fragment, validate that it can only be provided with fragment props
|
|
1180
|
+
* @param {ReactElement} fragment
|
|
1181
|
+
*/
|
|
1182
|
+
|
|
1183
|
+
|
|
1184
|
+
function validateFragmentProps(fragment) {
|
|
1185
|
+
{
|
|
1186
|
+
var keys = Object.keys(fragment.props);
|
|
1187
|
+
|
|
1188
|
+
for (var i = 0; i < keys.length; i++) {
|
|
1189
|
+
var key = keys[i];
|
|
1190
|
+
|
|
1191
|
+
if (key !== 'children' && key !== 'key') {
|
|
1192
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
1193
|
+
|
|
1194
|
+
error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
|
|
1195
|
+
|
|
1196
|
+
setCurrentlyValidatingElement$1(null);
|
|
1197
|
+
break;
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
if (fragment.ref !== null) {
|
|
1202
|
+
setCurrentlyValidatingElement$1(fragment);
|
|
1203
|
+
|
|
1204
|
+
error('Invalid attribute `ref` supplied to `React.Fragment`.');
|
|
1205
|
+
|
|
1206
|
+
setCurrentlyValidatingElement$1(null);
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
function jsxWithValidation(type, props, key, isStaticChildren, source, self) {
|
|
1212
|
+
{
|
|
1213
|
+
var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to
|
|
1214
|
+
// succeed and there will likely be errors in render.
|
|
1215
|
+
|
|
1216
|
+
if (!validType) {
|
|
1217
|
+
var info = '';
|
|
1218
|
+
|
|
1219
|
+
if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
|
|
1220
|
+
info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports.";
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
var sourceInfo = getSourceInfoErrorAddendum(source);
|
|
1224
|
+
|
|
1225
|
+
if (sourceInfo) {
|
|
1226
|
+
info += sourceInfo;
|
|
1227
|
+
} else {
|
|
1228
|
+
info += getDeclarationErrorAddendum();
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
var typeString;
|
|
1232
|
+
|
|
1233
|
+
if (type === null) {
|
|
1234
|
+
typeString = 'null';
|
|
1235
|
+
} else if (isArray(type)) {
|
|
1236
|
+
typeString = 'array';
|
|
1237
|
+
} else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
1238
|
+
typeString = "<" + (getComponentNameFromType(type.type) || 'Unknown') + " />";
|
|
1239
|
+
info = ' Did you accidentally export a JSX literal instead of a component?';
|
|
1240
|
+
} else {
|
|
1241
|
+
typeString = typeof type;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
error('React.jsx: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
var element = jsxDEV(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.
|
|
1248
|
+
// TODO: Drop this when these are no longer allowed as the type argument.
|
|
1249
|
+
|
|
1250
|
+
if (element == null) {
|
|
1251
|
+
return element;
|
|
1252
|
+
} // Skip key warning if the type isn't valid since our key validation logic
|
|
1253
|
+
// doesn't expect a non-string/function type and can throw confusing errors.
|
|
1254
|
+
// We don't want exception behavior to differ between dev and prod.
|
|
1255
|
+
// (Rendering will throw with a helpful message and as soon as the type is
|
|
1256
|
+
// fixed, the key warnings will appear.)
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
if (validType) {
|
|
1260
|
+
var children = props.children;
|
|
1261
|
+
|
|
1262
|
+
if (children !== undefined) {
|
|
1263
|
+
if (isStaticChildren) {
|
|
1264
|
+
if (isArray(children)) {
|
|
1265
|
+
for (var i = 0; i < children.length; i++) {
|
|
1266
|
+
validateChildKeys(children[i], type);
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
if (Object.freeze) {
|
|
1270
|
+
Object.freeze(children);
|
|
1271
|
+
}
|
|
1272
|
+
} else {
|
|
1273
|
+
error('React.jsx: Static children should always be an array. ' + 'You are likely explicitly calling React.jsxs or React.jsxDEV. ' + 'Use the Babel transform instead.');
|
|
1274
|
+
}
|
|
1275
|
+
} else {
|
|
1276
|
+
validateChildKeys(children, type);
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
if (type === REACT_FRAGMENT_TYPE) {
|
|
1282
|
+
validateFragmentProps(element);
|
|
1283
|
+
} else {
|
|
1284
|
+
validatePropTypes(element);
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
return element;
|
|
1288
|
+
}
|
|
1289
|
+
} // These two functions exist to still get child warnings in dev
|
|
1290
|
+
// even with the prod transform. This means that jsxDEV is purely
|
|
1291
|
+
// opt-in behavior for better messages but that we won't stop
|
|
1292
|
+
// giving you warnings if you use production apis.
|
|
1293
|
+
|
|
1294
|
+
function jsxWithValidationStatic(type, props, key) {
|
|
1295
|
+
{
|
|
1296
|
+
return jsxWithValidation(type, props, key, true);
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
function jsxWithValidationDynamic(type, props, key) {
|
|
1300
|
+
{
|
|
1301
|
+
return jsxWithValidation(type, props, key, false);
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
var jsx = jsxWithValidationDynamic ; // we may want to special case jsxs internally to take advantage of static children.
|
|
1306
|
+
// for now we can ship identical prod functions
|
|
1307
|
+
|
|
1308
|
+
var jsxs = jsxWithValidationStatic ;
|
|
1309
|
+
|
|
1310
|
+
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
1311
|
+
exports.jsx = jsx;
|
|
1312
|
+
exports.jsxs = jsxs;
|
|
1313
|
+
})();
|
|
1314
|
+
}
|