immosquare-cleaner 0.1.62 → 0.1.63
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.
- checksums.yaml +4 -4
- data/lib/immosquare-cleaner/version.rb +1 -1
- data/lib/immosquare-cleaner.rb +48 -18
- data/linters/erb-lint-3.4.1.yml +14 -0
- data/linters/rubocop-3.4.1.yml +2 -0
- data/node_modules/@eslint/config-array/README.md +3 -3
- data/node_modules/@eslint/config-array/dist/cjs/index.d.cts +1 -1
- data/node_modules/@eslint/config-array/package.json +3 -3
- data/node_modules/@eslint/core/README.md +3 -3
- data/node_modules/@eslint/core/dist/cjs/types.d.cts +102 -23
- data/node_modules/@eslint/core/dist/esm/types.d.ts +102 -23
- data/node_modules/@eslint/core/package.json +1 -1
- data/node_modules/@eslint/eslintrc/conf/environments.js +1 -1
- data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +21 -12
- data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -1
- data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +59 -34
- data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
- data/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
- data/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +6 -4
- data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +2 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +5 -5
- data/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +2 -2
- data/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +6 -5
- data/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +7 -5
- data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +13 -6
- data/node_modules/@eslint/eslintrc/lib/flat-compat.js +4 -3
- data/node_modules/@eslint/eslintrc/lib/shared/ajv.js +1 -1
- data/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +2 -2
- data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +17 -8
- data/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +1 -1
- data/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +2 -1
- data/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
- data/node_modules/@eslint/eslintrc/package.json +11 -9
- data/node_modules/@eslint/eslintrc/universal.js +2 -1
- data/node_modules/@eslint/js/package.json +1 -1
- data/node_modules/@eslint/js/src/index.js +2 -2
- data/node_modules/@eslint/object-schema/README.md +3 -3
- data/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +2 -2
- data/node_modules/@eslint/object-schema/package.json +2 -2
- data/node_modules/@eslint/plugin-kit/README.md +3 -3
- data/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +2 -2
- data/node_modules/@eslint/plugin-kit/package.json +9 -8
- data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +7 -7
- data/node_modules/@humanwhocodes/retry/dist/retrier.js +7 -7
- data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -1
- data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +7 -7
- data/node_modules/@humanwhocodes/retry/package.json +1 -1
- data/node_modules/eslint/README.md +36 -16
- data/node_modules/eslint/conf/rule-type-list.json +82 -18
- data/node_modules/eslint/lib/cli.js +34 -4
- data/node_modules/eslint/lib/config/config-loader.js +43 -26
- data/node_modules/eslint/lib/config/config.js +6 -1
- data/node_modules/eslint/lib/config/flat-config-schema.js +16 -1
- data/node_modules/eslint/lib/config/rule-validator.js +12 -2
- data/node_modules/eslint/lib/eslint/eslint.js +10 -7
- data/node_modules/eslint/lib/linter/linter.js +98 -8
- data/node_modules/eslint/lib/options.js +19 -0
- data/node_modules/eslint/lib/rules/array-bracket-newline.js +20 -2
- data/node_modules/eslint/lib/rules/array-bracket-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/array-element-newline.js +20 -2
- data/node_modules/eslint/lib/rules/arrow-body-style.js +2 -1
- data/node_modules/eslint/lib/rules/arrow-parens.js +20 -2
- data/node_modules/eslint/lib/rules/arrow-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/block-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/brace-style.js +20 -2
- data/node_modules/eslint/lib/rules/callback-return.js +19 -3
- data/node_modules/eslint/lib/rules/camelcase.js +1 -0
- data/node_modules/eslint/lib/rules/capitalized-comments.js +1 -0
- data/node_modules/eslint/lib/rules/comma-dangle.js +20 -2
- data/node_modules/eslint/lib/rules/comma-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/comma-style.js +20 -2
- data/node_modules/eslint/lib/rules/computed-property-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/consistent-this.js +10 -0
- data/node_modules/eslint/lib/rules/curly.js +1 -0
- data/node_modules/eslint/lib/rules/default-case-last.js +2 -2
- data/node_modules/eslint/lib/rules/default-param-last.js +1 -0
- data/node_modules/eslint/lib/rules/dot-location.js +20 -2
- data/node_modules/eslint/lib/rules/dot-notation.js +1 -0
- data/node_modules/eslint/lib/rules/eol-last.js +20 -2
- data/node_modules/eslint/lib/rules/func-call-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/func-name-matching.js +1 -0
- data/node_modules/eslint/lib/rules/func-style.js +1 -0
- data/node_modules/eslint/lib/rules/function-call-argument-newline.js +20 -2
- data/node_modules/eslint/lib/rules/function-paren-newline.js +20 -2
- data/node_modules/eslint/lib/rules/generator-star-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/global-require.js +19 -3
- data/node_modules/eslint/lib/rules/handle-callback-err.js +19 -3
- data/node_modules/eslint/lib/rules/id-blacklist.js +14 -2
- data/node_modules/eslint/lib/rules/id-denylist.js +1 -0
- data/node_modules/eslint/lib/rules/id-length.js +1 -0
- data/node_modules/eslint/lib/rules/id-match.js +1 -0
- data/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +20 -2
- data/node_modules/eslint/lib/rules/indent-legacy.js +19 -3
- data/node_modules/eslint/lib/rules/indent.js +20 -2
- data/node_modules/eslint/lib/rules/init-declarations.js +1 -0
- data/node_modules/eslint/lib/rules/jsx-quotes.js +20 -2
- data/node_modules/eslint/lib/rules/key-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/keyword-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/line-comment-position.js +20 -2
- data/node_modules/eslint/lib/rules/linebreak-style.js +20 -2
- data/node_modules/eslint/lib/rules/lines-around-comment.js +20 -2
- data/node_modules/eslint/lib/rules/lines-around-directive.js +20 -2
- data/node_modules/eslint/lib/rules/lines-between-class-members.js +20 -2
- data/node_modules/eslint/lib/rules/logical-assignment-operators.js +1 -0
- data/node_modules/eslint/lib/rules/max-len.js +20 -2
- data/node_modules/eslint/lib/rules/max-statements-per-line.js +20 -2
- data/node_modules/eslint/lib/rules/multiline-comment-style.js +20 -2
- data/node_modules/eslint/lib/rules/multiline-ternary.js +20 -2
- data/node_modules/eslint/lib/rules/new-parens.js +20 -2
- data/node_modules/eslint/lib/rules/newline-after-var.js +20 -3
- data/node_modules/eslint/lib/rules/newline-before-return.js +20 -2
- data/node_modules/eslint/lib/rules/newline-per-chained-call.js +20 -2
- data/node_modules/eslint/lib/rules/no-buffer-constructor.js +19 -3
- data/node_modules/eslint/lib/rules/no-catch-shadow.js +14 -3
- data/node_modules/eslint/lib/rules/no-confusing-arrow.js +20 -2
- data/node_modules/eslint/lib/rules/no-console.js +3 -1
- data/node_modules/eslint/lib/rules/no-continue.js +1 -0
- data/node_modules/eslint/lib/rules/no-div-regex.js +1 -0
- data/node_modules/eslint/lib/rules/no-else-return.js +1 -0
- data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +1 -0
- data/node_modules/eslint/lib/rules/no-extra-label.js +1 -0
- data/node_modules/eslint/lib/rules/no-extra-parens.js +20 -2
- data/node_modules/eslint/lib/rules/no-extra-semi.js +20 -2
- data/node_modules/eslint/lib/rules/no-floating-decimal.js +20 -2
- data/node_modules/eslint/lib/rules/no-implicit-coercion.js +1 -0
- data/node_modules/eslint/lib/rules/no-inline-comments.js +1 -0
- data/node_modules/eslint/lib/rules/no-label-var.js +1 -0
- data/node_modules/eslint/lib/rules/no-labels.js +1 -0
- data/node_modules/eslint/lib/rules/no-lonely-if.js +1 -0
- data/node_modules/eslint/lib/rules/no-magic-numbers.js +1 -0
- data/node_modules/eslint/lib/rules/no-mixed-operators.js +20 -2
- data/node_modules/eslint/lib/rules/no-mixed-requires.js +19 -3
- data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +20 -2
- data/node_modules/eslint/lib/rules/no-multi-spaces.js +20 -2
- data/node_modules/eslint/lib/rules/no-multi-str.js +1 -0
- data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +20 -2
- data/node_modules/eslint/lib/rules/no-native-reassign.js +14 -3
- data/node_modules/eslint/lib/rules/no-negated-condition.js +1 -0
- data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +14 -3
- data/node_modules/eslint/lib/rules/no-nested-ternary.js +1 -0
- data/node_modules/eslint/lib/rules/no-new-object.js +14 -5
- data/node_modules/eslint/lib/rules/no-new-require.js +19 -3
- data/node_modules/eslint/lib/rules/no-new-symbol.js +14 -5
- data/node_modules/eslint/lib/rules/no-path-concat.js +19 -3
- data/node_modules/eslint/lib/rules/no-plusplus.js +1 -0
- data/node_modules/eslint/lib/rules/no-process-env.js +19 -3
- data/node_modules/eslint/lib/rules/no-process-exit.js +19 -3
- data/node_modules/eslint/lib/rules/no-restricted-modules.js +19 -3
- data/node_modules/eslint/lib/rules/no-return-await.js +7 -3
- data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +17 -7
- data/node_modules/eslint/lib/rules/no-spaced-func.js +20 -3
- data/node_modules/eslint/lib/rules/no-sync.js +19 -3
- data/node_modules/eslint/lib/rules/no-tabs.js +20 -2
- data/node_modules/eslint/lib/rules/no-ternary.js +1 -0
- data/node_modules/eslint/lib/rules/no-trailing-spaces.js +20 -2
- data/node_modules/eslint/lib/rules/no-undef-init.js +1 -0
- data/node_modules/eslint/lib/rules/no-undefined.js +1 -0
- data/node_modules/eslint/lib/rules/no-underscore-dangle.js +1 -0
- data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +1 -0
- data/node_modules/eslint/lib/rules/no-useless-computed-key.js +1 -0
- data/node_modules/eslint/lib/rules/no-useless-concat.js +1 -0
- data/node_modules/eslint/lib/rules/no-void.js +1 -0
- data/node_modules/eslint/lib/rules/no-warning-comments.js +1 -0
- data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +20 -2
- data/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +20 -2
- data/node_modules/eslint/lib/rules/object-curly-newline.js +20 -2
- data/node_modules/eslint/lib/rules/object-curly-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/object-property-newline.js +20 -2
- data/node_modules/eslint/lib/rules/object-shorthand.js +1 -0
- data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +20 -2
- data/node_modules/eslint/lib/rules/one-var.js +1 -0
- data/node_modules/eslint/lib/rules/operator-assignment.js +1 -0
- data/node_modules/eslint/lib/rules/operator-linebreak.js +20 -2
- data/node_modules/eslint/lib/rules/padded-blocks.js +20 -2
- data/node_modules/eslint/lib/rules/padding-line-between-statements.js +20 -2
- data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-destructuring.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-numeric-literals.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-object-spread.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-reflect.js +7 -3
- data/node_modules/eslint/lib/rules/prefer-spread.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-template.js +1 -0
- data/node_modules/eslint/lib/rules/quote-props.js +20 -2
- data/node_modules/eslint/lib/rules/quotes.js +20 -2
- data/node_modules/eslint/lib/rules/rest-spread-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/semi-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/semi-style.js +20 -2
- data/node_modules/eslint/lib/rules/semi.js +20 -2
- data/node_modules/eslint/lib/rules/sort-imports.js +3 -2
- data/node_modules/eslint/lib/rules/sort-keys.js +1 -0
- data/node_modules/eslint/lib/rules/sort-vars.js +1 -0
- data/node_modules/eslint/lib/rules/space-before-blocks.js +20 -2
- data/node_modules/eslint/lib/rules/space-before-function-paren.js +20 -2
- data/node_modules/eslint/lib/rules/space-in-parens.js +20 -2
- data/node_modules/eslint/lib/rules/space-infix-ops.js +20 -2
- data/node_modules/eslint/lib/rules/space-unary-ops.js +20 -2
- data/node_modules/eslint/lib/rules/spaced-comment.js +20 -2
- data/node_modules/eslint/lib/rules/switch-colon-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/template-curly-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/template-tag-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/vars-on-top.js +1 -0
- data/node_modules/eslint/lib/rules/wrap-iife.js +20 -2
- data/node_modules/eslint/lib/rules/wrap-regex.js +20 -2
- data/node_modules/eslint/lib/rules/yield-star-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/yoda.js +1 -0
- data/node_modules/eslint/lib/shared/flags.js +44 -6
- data/node_modules/eslint/lib/shared/option-utils.js +56 -0
- data/node_modules/eslint/lib/shared/types.js +19 -1
- data/node_modules/eslint/lib/types/index.d.ts +82 -64
- data/node_modules/eslint/lib/types/rules/best-practices.d.ts +109 -95
- data/node_modules/eslint/lib/types/rules/deprecated.d.ts +32 -15
- data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +39 -39
- data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +23 -12
- data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +86 -54
- data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +1 -1
- data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +105 -99
- data/node_modules/eslint/lib/types/rules/variables.d.ts +12 -12
- data/node_modules/eslint/messages/config-plugin-missing.js +14 -0
- data/node_modules/eslint/messages/config-serialize-function.js +28 -0
- data/node_modules/eslint/messages/eslintrc-plugins.js +6 -2
- data/node_modules/eslint/package.json +11 -9
- data/node_modules/eslint-plugin-sonarjs/README.md +2 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1126/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1126/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1126/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/rule.js +15 -35
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/rule.js +2 -5
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1528/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1528/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1528/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2699/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2699/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2699/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/generated-meta.js +2 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/rule.js +3 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3798/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3798/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3798/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/rule.js +21 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S3827/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3827/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3827/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.aws.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.lib.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.aws.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.lib.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/generated-meta.js +3 -3
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/rule.js +2 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/generated-meta.js +21 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/rule.js +2 -21
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6958/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6958/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6958/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/external/core.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/accessibility.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/aws/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/collection.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/interceptor.js +0 -4
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/files.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-files.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-up.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/globals.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/package-json.js +30 -9
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/Detector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/CamelCaseDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/ContainsDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/EndWithDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/KeywordsDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/validate-version.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/plugin-rules.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/package.json +2 -8
- data/node_modules/eslint-plugin-sonarjs/types/S3723/rule.d.ts +0 -1
- data/node_modules/eslint-plugin-sonarjs/types/S3776/generated-meta.d.ts +8 -2
- data/node_modules/eslint-plugin-sonarjs/types/S6418/generated-meta.d.ts +17 -0
- data/node_modules/eslint-plugin-sonarjs/types/helpers/package-json.d.ts +17 -1
- data/node_modules/eslint-plugin-sonarjs/types/plugin-rules.d.ts +0 -1
- data/node_modules/eslint-plugin-sonarjs/types/plugin.d.ts +4 -9
- data/node_modules/jscodeshift/CHANGELOG.md +63 -29
- data/node_modules/jscodeshift/README.md +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.input.js +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.js +11 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.output.js +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.input.js +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.js +7 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.output.js +1 -0
- data/node_modules/jscodeshift/dist/testUtils.js +30 -6
- data/node_modules/jscodeshift/package.json +4 -2
- data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.input.js +1 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.js +11 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.output.js +1 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.input.js +1 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.js +7 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.output.js +1 -0
- data/node_modules/jscodeshift/src/testUtils.js +30 -6
- data/node_modules/jscodeshift/website/package.json +1 -1
- data/node_modules/prettier/LICENSE +0 -4373
- data/node_modules/prettier/README.md +7 -8
- data/node_modules/prettier/THIRD-PARTY-NOTICES.md +4416 -0
- data/node_modules/prettier/doc.js +237 -213
- data/node_modules/prettier/doc.mjs +237 -213
- data/node_modules/prettier/index.cjs +9 -1
- data/node_modules/prettier/index.d.ts +13 -3
- data/node_modules/prettier/index.mjs +619 -439
- data/node_modules/prettier/internal/cli.mjs +1923 -945
- data/node_modules/prettier/package.json +2 -1
- data/node_modules/prettier/plugins/acorn.js +1 -1
- data/node_modules/prettier/plugins/acorn.mjs +1 -1
- data/node_modules/prettier/plugins/angular.js +2 -2
- data/node_modules/prettier/plugins/angular.mjs +2 -2
- data/node_modules/prettier/plugins/babel.js +8 -8
- data/node_modules/prettier/plugins/babel.mjs +8 -8
- data/node_modules/prettier/plugins/estree.js +27 -27
- data/node_modules/prettier/plugins/estree.mjs +27 -27
- data/node_modules/prettier/plugins/flow.js +15 -15
- data/node_modules/prettier/plugins/flow.mjs +15 -15
- data/node_modules/prettier/plugins/glimmer.js +21 -21
- data/node_modules/prettier/plugins/glimmer.mjs +22 -22
- data/node_modules/prettier/plugins/graphql.js +16 -16
- data/node_modules/prettier/plugins/graphql.mjs +16 -16
- data/node_modules/prettier/plugins/html.js +17 -17
- data/node_modules/prettier/plugins/html.mjs +17 -17
- data/node_modules/prettier/plugins/markdown.js +42 -42
- data/node_modules/prettier/plugins/markdown.mjs +42 -42
- data/node_modules/prettier/plugins/meriyah.js +2 -2
- data/node_modules/prettier/plugins/meriyah.mjs +2 -2
- data/node_modules/prettier/plugins/postcss.js +26 -26
- data/node_modules/prettier/plugins/postcss.mjs +26 -26
- data/node_modules/prettier/plugins/typescript.js +10 -10
- data/node_modules/prettier/plugins/typescript.mjs +11 -11
- data/node_modules/prettier/plugins/yaml.js +65 -65
- data/node_modules/prettier/plugins/yaml.mjs +65 -65
- data/node_modules/prettier/standalone.d.ts +1 -1
- data/node_modules/prettier/standalone.js +24 -24
- data/node_modules/prettier/standalone.mjs +24 -24
- data/node_modules/semver/README.md +14 -4
- data/node_modules/semver/bin/semver.js +2 -1
- data/node_modules/semver/classes/semver.js +22 -6
- data/node_modules/semver/functions/diff.js +5 -12
- data/node_modules/semver/internal/re.js +2 -0
- data/node_modules/semver/package.json +8 -7
- data/package.json +8 -9
- metadata +44 -26
- data/node_modules/.bin/ncu +0 -1
- data/node_modules/.bin/npm-check-updates +0 -1
- data/node_modules/npm-check-updates/LICENSE +0 -13
- data/node_modules/npm-check-updates/README.md +0 -839
- data/node_modules/npm-check-updates/build/cli.d.ts +0 -1
- data/node_modules/npm-check-updates/build/cli.js +0 -29
- data/node_modules/npm-check-updates/build/cli.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-B5lQw6vg.js +0 -6
- data/node_modules/npm-check-updates/build/index-B5lQw6vg.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-BnIU43YD.js +0 -2
- data/node_modules/npm-check-updates/build/index-BnIU43YD.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-CUgqEqMa.js +0 -2
- data/node_modules/npm-check-updates/build/index-CUgqEqMa.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js +0 -58
- data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-_DliZFxU.js +0 -5
- data/node_modules/npm-check-updates/build/index-_DliZFxU.js.map +0 -1
- data/node_modules/npm-check-updates/build/index.d.ts +0 -211
- data/node_modules/npm-check-updates/build/index.js +0 -551
- data/node_modules/npm-check-updates/build/index.js.map +0 -1
- data/node_modules/npm-check-updates/package.json +0 -179
- /data/node_modules/@eslint/plugin-kit/dist/cjs/{types.ts → types.cts} +0 -0
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eslintrc-universal.cjs","sources":["../lib/shared/config-ops.js","../lib/shared/deprecation-warnings.js","../lib/shared/ajv.js","../lib/shared/deep-merge-arrays.js","../conf/config-schema.js","../conf/environments.js","../lib/shared/config-validator.js","../lib/shared/naming.js","../lib/index-universal.js"],"sourcesContent":["/**\n * @fileoverview Config file operations. This file must be usable in the browser,\n * so no Node-specific code can be here.\n * @author Nicholas C. Zakas\n */\n\n//------------------------------------------------------------------------------\n// Private\n//------------------------------------------------------------------------------\n\nconst RULE_SEVERITY_STRINGS = [\"off\", \"warn\", \"error\"],\n RULE_SEVERITY = RULE_SEVERITY_STRINGS.reduce((map, value, index) => {\n map[value] = index;\n return map;\n }, {}),\n VALID_SEVERITIES = [0, 1, 2, \"off\", \"warn\", \"error\"];\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\n/**\n * Normalizes the severity value of a rule's configuration to a number\n * @param {(number|string|[number, ...*]|[string, ...*])} ruleConfig A rule's configuration value, generally\n * received from the user. A valid config value is either 0, 1, 2, the string \"off\" (treated the same as 0),\n * the string \"warn\" (treated the same as 1), the string \"error\" (treated the same as 2), or an array\n * whose first element is one of the above values. Strings are matched case-insensitively.\n * @returns {(0|1|2)} The numeric severity value if the config value was valid, otherwise 0.\n */\nfunction getRuleSeverity(ruleConfig) {\n const severityValue = Array.isArray(ruleConfig) ? ruleConfig[0] : ruleConfig;\n\n if (severityValue === 0 || severityValue === 1 || severityValue === 2) {\n return severityValue;\n }\n\n if (typeof severityValue === \"string\") {\n return RULE_SEVERITY[severityValue.toLowerCase()] || 0;\n }\n\n return 0;\n}\n\n/**\n * Converts old-style severity settings (0, 1, 2) into new-style\n * severity settings (off, warn, error) for all rules. Assumption is that severity\n * values have already been validated as correct.\n * @param {Object} config The config object to normalize.\n * @returns {void}\n */\nfunction normalizeToStrings(config) {\n\n if (config.rules) {\n Object.keys(config.rules).forEach(ruleId => {\n const ruleConfig = config.rules[ruleId];\n\n if (typeof ruleConfig === \"number\") {\n config.rules[ruleId] = RULE_SEVERITY_STRINGS[ruleConfig] || RULE_SEVERITY_STRINGS[0];\n } else if (Array.isArray(ruleConfig) && typeof ruleConfig[0] === \"number\") {\n ruleConfig[0] = RULE_SEVERITY_STRINGS[ruleConfig[0]] || RULE_SEVERITY_STRINGS[0];\n }\n });\n }\n}\n\n/**\n * Determines if the severity for the given rule configuration represents an error.\n * @param {int|string|Array} ruleConfig The configuration for an individual rule.\n * @returns {boolean} True if the rule represents an error, false if not.\n */\nfunction isErrorSeverity(ruleConfig) {\n return getRuleSeverity(ruleConfig) === 2;\n}\n\n/**\n * Checks whether a given config has valid severity or not.\n * @param {number|string|Array} ruleConfig The configuration for an individual rule.\n * @returns {boolean} `true` if the configuration has valid severity.\n */\nfunction isValidSeverity(ruleConfig) {\n let severity = Array.isArray(ruleConfig) ? ruleConfig[0] : ruleConfig;\n\n if (typeof severity === \"string\") {\n severity = severity.toLowerCase();\n }\n return VALID_SEVERITIES.indexOf(severity) !== -1;\n}\n\n/**\n * Checks whether every rule of a given config has valid severity or not.\n * @param {Object} config The configuration for rules.\n * @returns {boolean} `true` if the configuration has valid severity.\n */\nfunction isEverySeverityValid(config) {\n return Object.keys(config).every(ruleId => isValidSeverity(config[ruleId]));\n}\n\n/**\n * Normalizes a value for a global in a config\n * @param {(boolean|string|null)} configuredValue The value given for a global in configuration or in\n * a global directive comment\n * @returns {(\"readable\"|\"writeable\"|\"off\")} The value normalized as a string\n * @throws Error if global value is invalid\n */\nfunction normalizeConfigGlobal(configuredValue) {\n switch (configuredValue) {\n case \"off\":\n return \"off\";\n\n case true:\n case \"true\":\n case \"writeable\":\n case \"writable\":\n return \"writable\";\n\n case null:\n case false:\n case \"false\":\n case \"readable\":\n case \"readonly\":\n return \"readonly\";\n\n default:\n throw new Error(`'${configuredValue}' is not a valid configuration for a global (use 'readonly', 'writable', or 'off')`);\n }\n}\n\nexport {\n getRuleSeverity,\n normalizeToStrings,\n isErrorSeverity,\n isValidSeverity,\n isEverySeverityValid,\n normalizeConfigGlobal\n};\n","/**\n * @fileoverview Provide the function that emits deprecation warnings.\n * @author Toru Nagashima <http://github.com/mysticatea>\n */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport path from \"path\";\n\n//------------------------------------------------------------------------------\n// Private\n//------------------------------------------------------------------------------\n\n// Defitions for deprecation warnings.\nconst deprecationWarningMessages = {\n ESLINT_LEGACY_ECMAFEATURES:\n \"The 'ecmaFeatures' config file property is deprecated and has no effect.\",\n ESLINT_PERSONAL_CONFIG_LOAD:\n \"'~/.eslintrc.*' config files have been deprecated. \" +\n \"Please use a config file per project or the '--config' option.\",\n ESLINT_PERSONAL_CONFIG_SUPPRESS:\n \"'~/.eslintrc.*' config files have been deprecated. \" +\n \"Please remove it or add 'root:true' to the config files in your \" +\n \"projects in order to avoid loading '~/.eslintrc.*' accidentally.\"\n};\n\nconst sourceFileErrorCache = new Set();\n\n/**\n * Emits a deprecation warning containing a given filepath. A new deprecation warning is emitted\n * for each unique file path, but repeated invocations with the same file path have no effect.\n * No warnings are emitted if the `--no-deprecation` or `--no-warnings` Node runtime flags are active.\n * @param {string} source The name of the configuration source to report the warning for.\n * @param {string} errorCode The warning message to show.\n * @returns {void}\n */\nfunction emitDeprecationWarning(source, errorCode) {\n const cacheKey = JSON.stringify({ source, errorCode });\n\n if (sourceFileErrorCache.has(cacheKey)) {\n return;\n }\n sourceFileErrorCache.add(cacheKey);\n\n const rel = path.relative(process.cwd(), source);\n const message = deprecationWarningMessages[errorCode];\n\n process.emitWarning(\n `${message} (found in \"${rel}\")`,\n \"DeprecationWarning\",\n errorCode\n );\n}\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\nexport {\n emitDeprecationWarning\n};\n","/**\n * @fileoverview The instance of Ajv validator.\n * @author Evgeny Poberezkin\n */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport Ajv from \"ajv\";\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n/*\n * Copied from ajv/lib/refs/json-schema-draft-04.json\n * The MIT License (MIT)\n * Copyright (c) 2015-2017 Evgeny Poberezkin\n */\nconst metaSchema = {\n id: \"http://json-schema.org/draft-04/schema#\",\n $schema: \"http://json-schema.org/draft-04/schema#\",\n description: \"Core schema meta-schema\",\n definitions: {\n schemaArray: {\n type: \"array\",\n minItems: 1,\n items: { $ref: \"#\" }\n },\n positiveInteger: {\n type: \"integer\",\n minimum: 0\n },\n positiveIntegerDefault0: {\n allOf: [{ $ref: \"#/definitions/positiveInteger\" }, { default: 0 }]\n },\n simpleTypes: {\n enum: [\"array\", \"boolean\", \"integer\", \"null\", \"number\", \"object\", \"string\"]\n },\n stringArray: {\n type: \"array\",\n items: { type: \"string\" },\n minItems: 1,\n uniqueItems: true\n }\n },\n type: \"object\",\n properties: {\n id: {\n type: \"string\"\n },\n $schema: {\n type: \"string\"\n },\n title: {\n type: \"string\"\n },\n description: {\n type: \"string\"\n },\n default: { },\n multipleOf: {\n type: \"number\",\n minimum: 0,\n exclusiveMinimum: true\n },\n maximum: {\n type: \"number\"\n },\n exclusiveMaximum: {\n type: \"boolean\",\n default: false\n },\n minimum: {\n type: \"number\"\n },\n exclusiveMinimum: {\n type: \"boolean\",\n default: false\n },\n maxLength: { $ref: \"#/definitions/positiveInteger\" },\n minLength: { $ref: \"#/definitions/positiveIntegerDefault0\" },\n pattern: {\n type: \"string\",\n format: \"regex\"\n },\n additionalItems: {\n anyOf: [\n { type: \"boolean\" },\n { $ref: \"#\" }\n ],\n default: { }\n },\n items: {\n anyOf: [\n { $ref: \"#\" },\n { $ref: \"#/definitions/schemaArray\" }\n ],\n default: { }\n },\n maxItems: { $ref: \"#/definitions/positiveInteger\" },\n minItems: { $ref: \"#/definitions/positiveIntegerDefault0\" },\n uniqueItems: {\n type: \"boolean\",\n default: false\n },\n maxProperties: { $ref: \"#/definitions/positiveInteger\" },\n minProperties: { $ref: \"#/definitions/positiveIntegerDefault0\" },\n required: { $ref: \"#/definitions/stringArray\" },\n additionalProperties: {\n anyOf: [\n { type: \"boolean\" },\n { $ref: \"#\" }\n ],\n default: { }\n },\n definitions: {\n type: \"object\",\n additionalProperties: { $ref: \"#\" },\n default: { }\n },\n properties: {\n type: \"object\",\n additionalProperties: { $ref: \"#\" },\n default: { }\n },\n patternProperties: {\n type: \"object\",\n additionalProperties: { $ref: \"#\" },\n default: { }\n },\n dependencies: {\n type: \"object\",\n additionalProperties: {\n anyOf: [\n { $ref: \"#\" },\n { $ref: \"#/definitions/stringArray\" }\n ]\n }\n },\n enum: {\n type: \"array\",\n minItems: 1,\n uniqueItems: true\n },\n type: {\n anyOf: [\n { $ref: \"#/definitions/simpleTypes\" },\n {\n type: \"array\",\n items: { $ref: \"#/definitions/simpleTypes\" },\n minItems: 1,\n uniqueItems: true\n }\n ]\n },\n format: { type: \"string\" },\n allOf: { $ref: \"#/definitions/schemaArray\" },\n anyOf: { $ref: \"#/definitions/schemaArray\" },\n oneOf: { $ref: \"#/definitions/schemaArray\" },\n not: { $ref: \"#\" }\n },\n dependencies: {\n exclusiveMaximum: [\"maximum\"],\n exclusiveMinimum: [\"minimum\"]\n },\n default: { }\n};\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\nexport default (additionalOptions = {}) => {\n const ajv = new Ajv({\n meta: false,\n useDefaults: true,\n validateSchema: false,\n missingRefs: \"ignore\",\n verbose: true,\n schemaId: \"auto\",\n ...additionalOptions\n });\n\n ajv.addMetaSchema(metaSchema);\n // eslint-disable-next-line no-underscore-dangle\n ajv._opts.defaultMeta = metaSchema.id;\n\n return ajv;\n};\n","/**\n * @fileoverview Applies default rule options\n * @author JoshuaKGoldberg\n */\n\n/**\n * Check if the variable contains an object strictly rejecting arrays\n * @param {unknown} value an object\n * @returns {boolean} Whether value is an object\n */\nfunction isObjectNotArray(value) {\n return typeof value === \"object\" && value !== null && !Array.isArray(value);\n}\n\n/**\n * Deeply merges second on top of first, creating a new {} object if needed.\n * @param {T} first Base, default value.\n * @param {U} second User-specified value.\n * @returns {T | U | (T & U)} Merged equivalent of second on top of first.\n */\nfunction deepMergeObjects(first, second) {\n if (second === void 0) {\n return first;\n }\n\n if (!isObjectNotArray(first) || !isObjectNotArray(second)) {\n return second;\n }\n\n const result = { ...first, ...second };\n\n for (const key of Object.keys(second)) {\n if (Object.prototype.propertyIsEnumerable.call(first, key)) {\n result[key] = deepMergeObjects(first[key], second[key]);\n }\n }\n\n return result;\n}\n\n/**\n * Deeply merges second on top of first, creating a new [] array if needed.\n * @param {T[] | undefined} first Base, default values.\n * @param {U[] | undefined} second User-specified values.\n * @returns {(T | U | (T & U))[]} Merged equivalent of second on top of first.\n */\nfunction deepMergeArrays(first, second) {\n if (!first || !second) {\n return second || first || [];\n }\n\n return [\n ...first.map((value, i) => deepMergeObjects(value, second[i])),\n ...second.slice(first.length)\n ];\n}\n\nexport { deepMergeArrays };\n","/**\n * @fileoverview Defines a schema for configs.\n * @author Sylvan Mably\n */\n\nconst baseConfigProperties = {\n $schema: { type: \"string\" },\n env: { type: \"object\" },\n extends: { $ref: \"#/definitions/stringOrStrings\" },\n globals: { type: \"object\" },\n overrides: {\n type: \"array\",\n items: { $ref: \"#/definitions/overrideConfig\" },\n additionalItems: false\n },\n parser: { type: [\"string\", \"null\"] },\n parserOptions: { type: \"object\" },\n plugins: { type: \"array\" },\n processor: { type: \"string\" },\n rules: { type: \"object\" },\n settings: { type: \"object\" },\n noInlineConfig: { type: \"boolean\" },\n reportUnusedDisableDirectives: { type: \"boolean\" },\n\n ecmaFeatures: { type: \"object\" } // deprecated; logs a warning when used\n};\n\nconst configSchema = {\n definitions: {\n stringOrStrings: {\n oneOf: [\n { type: \"string\" },\n {\n type: \"array\",\n items: { type: \"string\" },\n additionalItems: false\n }\n ]\n },\n stringOrStringsRequired: {\n oneOf: [\n { type: \"string\" },\n {\n type: \"array\",\n items: { type: \"string\" },\n additionalItems: false,\n minItems: 1\n }\n ]\n },\n\n // Config at top-level.\n objectConfig: {\n type: \"object\",\n properties: {\n root: { type: \"boolean\" },\n ignorePatterns: { $ref: \"#/definitions/stringOrStrings\" },\n ...baseConfigProperties\n },\n additionalProperties: false\n },\n\n // Config in `overrides`.\n overrideConfig: {\n type: \"object\",\n properties: {\n excludedFiles: { $ref: \"#/definitions/stringOrStrings\" },\n files: { $ref: \"#/definitions/stringOrStringsRequired\" },\n ...baseConfigProperties\n },\n required: [\"files\"],\n additionalProperties: false\n }\n },\n\n $ref: \"#/definitions/objectConfig\"\n};\n\nexport default configSchema;\n","/**\n * @fileoverview Defines environment settings and globals.\n * @author Elan Shanker\n */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport globals from \"globals\";\n\n//------------------------------------------------------------------------------\n// Helpers\n//------------------------------------------------------------------------------\n\n/**\n * Get the object that has difference.\n * @param {Record<string,boolean>} current The newer object.\n * @param {Record<string,boolean>} prev The older object.\n * @returns {Record<string,boolean>} The difference object.\n */\nfunction getDiff(current, prev) {\n const retv = {};\n\n for (const [key, value] of Object.entries(current)) {\n if (!Object.hasOwnProperty.call(prev, key)) {\n retv[key] = value;\n }\n }\n\n return retv;\n}\n\nconst newGlobals2015 = getDiff(globals.es2015, globals.es5); // 19 variables such as Promise, Map, ...\nconst newGlobals2017 = {\n Atomics: false,\n SharedArrayBuffer: false\n};\nconst newGlobals2020 = {\n BigInt: false,\n BigInt64Array: false,\n BigUint64Array: false,\n globalThis: false\n};\n\nconst newGlobals2021 = {\n AggregateError: false,\n FinalizationRegistry: false,\n WeakRef: false\n};\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\n/** @type {Map<string, import(\"../lib/shared/types\").Environment>} */\nexport default new Map(Object.entries({\n\n // Language\n builtin: {\n globals: globals.es5\n },\n es6: {\n globals: newGlobals2015,\n parserOptions: {\n ecmaVersion: 6\n }\n },\n es2015: {\n globals: newGlobals2015,\n parserOptions: {\n ecmaVersion: 6\n }\n },\n es2016: {\n globals: newGlobals2015,\n parserOptions: {\n ecmaVersion: 7\n }\n },\n es2017: {\n globals: { ...newGlobals2015, ...newGlobals2017 },\n parserOptions: {\n ecmaVersion: 8\n }\n },\n es2018: {\n globals: { ...newGlobals2015, ...newGlobals2017 },\n parserOptions: {\n ecmaVersion: 9\n }\n },\n es2019: {\n globals: { ...newGlobals2015, ...newGlobals2017 },\n parserOptions: {\n ecmaVersion: 10\n }\n },\n es2020: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020 },\n parserOptions: {\n ecmaVersion: 11\n }\n },\n es2021: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 12\n }\n },\n es2022: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 13\n }\n },\n es2023: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 14\n }\n },\n es2024: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 15\n }\n },\n\n // Platforms\n browser: {\n globals: globals.browser\n },\n node: {\n globals: globals.node,\n parserOptions: {\n ecmaFeatures: {\n globalReturn: true\n }\n }\n },\n \"shared-node-browser\": {\n globals: globals[\"shared-node-browser\"]\n },\n worker: {\n globals: globals.worker\n },\n serviceworker: {\n globals: globals.serviceworker\n },\n\n // Frameworks\n commonjs: {\n globals: globals.commonjs,\n parserOptions: {\n ecmaFeatures: {\n globalReturn: true\n }\n }\n },\n amd: {\n globals: globals.amd\n },\n mocha: {\n globals: globals.mocha\n },\n jasmine: {\n globals: globals.jasmine\n },\n jest: {\n globals: globals.jest\n },\n phantomjs: {\n globals: globals.phantomjs\n },\n jquery: {\n globals: globals.jquery\n },\n qunit: {\n globals: globals.qunit\n },\n prototypejs: {\n globals: globals.prototypejs\n },\n shelljs: {\n globals: globals.shelljs\n },\n meteor: {\n globals: globals.meteor\n },\n mongo: {\n globals: globals.mongo\n },\n protractor: {\n globals: globals.protractor\n },\n applescript: {\n globals: globals.applescript\n },\n nashorn: {\n globals: globals.nashorn\n },\n atomtest: {\n globals: globals.atomtest\n },\n embertest: {\n globals: globals.embertest\n },\n webextensions: {\n globals: globals.webextensions\n },\n greasemonkey: {\n globals: globals.greasemonkey\n }\n}));\n","/**\n * @fileoverview Validates configs.\n * @author Brandon Mills\n */\n\n/* eslint class-methods-use-this: \"off\" */\n\n//------------------------------------------------------------------------------\n// Typedefs\n//------------------------------------------------------------------------------\n\n/** @typedef {import(\"../shared/types\").Rule} Rule */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport util from \"util\";\nimport * as ConfigOps from \"./config-ops.js\";\nimport { emitDeprecationWarning } from \"./deprecation-warnings.js\";\nimport ajvOrig from \"./ajv.js\";\nimport { deepMergeArrays } from \"./deep-merge-arrays.js\";\nimport configSchema from \"../../conf/config-schema.js\";\nimport BuiltInEnvironments from \"../../conf/environments.js\";\n\nconst ajv = ajvOrig();\n\nconst ruleValidators = new WeakMap();\nconst noop = Function.prototype;\n\n//------------------------------------------------------------------------------\n// Private\n//------------------------------------------------------------------------------\nlet validateSchema;\nconst severityMap = {\n error: 2,\n warn: 1,\n off: 0\n};\n\nconst validated = new WeakSet();\n\n// JSON schema that disallows passing any options\nconst noOptionsSchema = Object.freeze({\n type: \"array\",\n minItems: 0,\n maxItems: 0\n});\n\n//-----------------------------------------------------------------------------\n// Exports\n//-----------------------------------------------------------------------------\n\nexport default class ConfigValidator {\n constructor({ builtInRules = new Map() } = {}) {\n this.builtInRules = builtInRules;\n }\n\n /**\n * Gets a complete options schema for a rule.\n * @param {Rule} rule A rule object\n * @throws {TypeError} If `meta.schema` is specified but is not an array, object or `false`.\n * @returns {Object|null} JSON Schema for the rule's options.\n * `null` if rule wasn't passed or its `meta.schema` is `false`.\n */\n getRuleOptionsSchema(rule) {\n if (!rule) {\n return null;\n }\n\n if (!rule.meta) {\n return { ...noOptionsSchema }; // default if `meta.schema` is not specified\n }\n\n const schema = rule.meta.schema;\n\n if (typeof schema === \"undefined\") {\n return { ...noOptionsSchema }; // default if `meta.schema` is not specified\n }\n\n // `schema:false` is an allowed explicit opt-out of options validation for the rule\n if (schema === false) {\n return null;\n }\n\n if (typeof schema !== \"object\" || schema === null) {\n throw new TypeError(\"Rule's `meta.schema` must be an array or object\");\n }\n\n // ESLint-specific array form needs to be converted into a valid JSON Schema definition\n if (Array.isArray(schema)) {\n if (schema.length) {\n return {\n type: \"array\",\n items: schema,\n minItems: 0,\n maxItems: schema.length\n };\n }\n\n // `schema:[]` is an explicit way to specify that the rule does not accept any options\n return { ...noOptionsSchema };\n }\n\n // `schema:<object>` is assumed to be a valid JSON Schema definition\n return schema;\n }\n\n /**\n * Validates a rule's severity and returns the severity value. Throws an error if the severity is invalid.\n * @param {options} options The given options for the rule.\n * @returns {number|string} The rule's severity value\n */\n validateRuleSeverity(options) {\n const severity = Array.isArray(options) ? options[0] : options;\n const normSeverity = typeof severity === \"string\" ? severityMap[severity.toLowerCase()] : severity;\n\n if (normSeverity === 0 || normSeverity === 1 || normSeverity === 2) {\n return normSeverity;\n }\n\n throw new Error(`\\tSeverity should be one of the following: 0 = off, 1 = warn, 2 = error (you passed '${util.inspect(severity).replace(/'/gu, \"\\\"\").replace(/\\n/gu, \"\")}').\\n`);\n\n }\n\n /**\n * Validates the non-severity options passed to a rule, based on its schema.\n * @param {{create: Function}} rule The rule to validate\n * @param {Array} localOptions The options for the rule, excluding severity\n * @returns {void}\n */\n validateRuleSchema(rule, localOptions) {\n if (!ruleValidators.has(rule)) {\n try {\n const schema = this.getRuleOptionsSchema(rule);\n\n if (schema) {\n ruleValidators.set(rule, ajv.compile(schema));\n }\n } catch (err) {\n const errorWithCode = new Error(err.message, { cause: err });\n\n errorWithCode.code = \"ESLINT_INVALID_RULE_OPTIONS_SCHEMA\";\n\n throw errorWithCode;\n }\n }\n\n const validateRule = ruleValidators.get(rule);\n\n if (validateRule) {\n const mergedOptions = deepMergeArrays(rule.meta?.defaultOptions, localOptions);\n\n validateRule(mergedOptions);\n\n if (validateRule.errors) {\n throw new Error(validateRule.errors.map(\n error => `\\tValue ${JSON.stringify(error.data)} ${error.message}.\\n`\n ).join(\"\"));\n }\n }\n }\n\n /**\n * Validates a rule's options against its schema.\n * @param {{create: Function}|null} rule The rule that the config is being validated for\n * @param {string} ruleId The rule's unique name.\n * @param {Array|number} options The given options for the rule.\n * @param {string|null} source The name of the configuration source to report in any errors. If null or undefined,\n * no source is prepended to the message.\n * @returns {void}\n */\n validateRuleOptions(rule, ruleId, options, source = null) {\n try {\n const severity = this.validateRuleSeverity(options);\n\n if (severity !== 0) {\n this.validateRuleSchema(rule, Array.isArray(options) ? options.slice(1) : []);\n }\n } catch (err) {\n let enhancedMessage = err.code === \"ESLINT_INVALID_RULE_OPTIONS_SCHEMA\"\n ? `Error while processing options validation schema of rule '${ruleId}': ${err.message}`\n : `Configuration for rule \"${ruleId}\" is invalid:\\n${err.message}`;\n\n if (typeof source === \"string\") {\n enhancedMessage = `${source}:\\n\\t${enhancedMessage}`;\n }\n\n const enhancedError = new Error(enhancedMessage, { cause: err });\n\n if (err.code) {\n enhancedError.code = err.code;\n }\n\n throw enhancedError;\n }\n }\n\n /**\n * Validates an environment object\n * @param {Object} environment The environment config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @param {function(envId:string): Object} [getAdditionalEnv] A map from strings to loaded environments.\n * @returns {void}\n */\n validateEnvironment(\n environment,\n source,\n getAdditionalEnv = noop\n ) {\n\n // not having an environment is ok\n if (!environment) {\n return;\n }\n\n Object.keys(environment).forEach(id => {\n const env = getAdditionalEnv(id) || BuiltInEnvironments.get(id) || null;\n\n if (!env) {\n const message = `${source}:\\n\\tEnvironment key \"${id}\" is unknown\\n`;\n\n throw new Error(message);\n }\n });\n }\n\n /**\n * Validates a rules config object\n * @param {Object} rulesConfig The rules config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @param {function(ruleId:string): Object} getAdditionalRule A map from strings to loaded rules\n * @returns {void}\n */\n validateRules(\n rulesConfig,\n source,\n getAdditionalRule = noop\n ) {\n if (!rulesConfig) {\n return;\n }\n\n Object.keys(rulesConfig).forEach(id => {\n const rule = getAdditionalRule(id) || this.builtInRules.get(id) || null;\n\n this.validateRuleOptions(rule, id, rulesConfig[id], source);\n });\n }\n\n /**\n * Validates a `globals` section of a config file\n * @param {Object} globalsConfig The `globals` section\n * @param {string|null} source The name of the configuration source to report in the event of an error.\n * @returns {void}\n */\n validateGlobals(globalsConfig, source = null) {\n if (!globalsConfig) {\n return;\n }\n\n Object.entries(globalsConfig)\n .forEach(([configuredGlobal, configuredValue]) => {\n try {\n ConfigOps.normalizeConfigGlobal(configuredValue);\n } catch (err) {\n throw new Error(`ESLint configuration of global '${configuredGlobal}' in ${source} is invalid:\\n${err.message}`);\n }\n });\n }\n\n /**\n * Validate `processor` configuration.\n * @param {string|undefined} processorName The processor name.\n * @param {string} source The name of config file.\n * @param {function(id:string): Processor} getProcessor The getter of defined processors.\n * @returns {void}\n */\n validateProcessor(processorName, source, getProcessor) {\n if (processorName && !getProcessor(processorName)) {\n throw new Error(`ESLint configuration of processor in '${source}' is invalid: '${processorName}' was not found.`);\n }\n }\n\n /**\n * Formats an array of schema validation errors.\n * @param {Array} errors An array of error messages to format.\n * @returns {string} Formatted error message\n */\n formatErrors(errors) {\n return errors.map(error => {\n if (error.keyword === \"additionalProperties\") {\n const formattedPropertyPath = error.dataPath.length ? `${error.dataPath.slice(1)}.${error.params.additionalProperty}` : error.params.additionalProperty;\n\n return `Unexpected top-level property \"${formattedPropertyPath}\"`;\n }\n if (error.keyword === \"type\") {\n const formattedField = error.dataPath.slice(1);\n const formattedExpectedType = Array.isArray(error.schema) ? error.schema.join(\"/\") : error.schema;\n const formattedValue = JSON.stringify(error.data);\n\n return `Property \"${formattedField}\" is the wrong type (expected ${formattedExpectedType} but got \\`${formattedValue}\\`)`;\n }\n\n const field = error.dataPath[0] === \".\" ? error.dataPath.slice(1) : error.dataPath;\n\n return `\"${field}\" ${error.message}. Value: ${JSON.stringify(error.data)}`;\n }).map(message => `\\t- ${message}.\\n`).join(\"\");\n }\n\n /**\n * Validates the top level properties of the config object.\n * @param {Object} config The config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @returns {void}\n */\n validateConfigSchema(config, source = null) {\n validateSchema = validateSchema || ajv.compile(configSchema);\n\n if (!validateSchema(config)) {\n throw new Error(`ESLint configuration in ${source} is invalid:\\n${this.formatErrors(validateSchema.errors)}`);\n }\n\n if (Object.hasOwnProperty.call(config, \"ecmaFeatures\")) {\n emitDeprecationWarning(source, \"ESLINT_LEGACY_ECMAFEATURES\");\n }\n }\n\n /**\n * Validates an entire config object.\n * @param {Object} config The config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @param {function(ruleId:string): Object} [getAdditionalRule] A map from strings to loaded rules.\n * @param {function(envId:string): Object} [getAdditionalEnv] A map from strings to loaded envs.\n * @returns {void}\n */\n validate(config, source, getAdditionalRule, getAdditionalEnv) {\n this.validateConfigSchema(config, source);\n this.validateRules(config.rules, source, getAdditionalRule);\n this.validateEnvironment(config.env, source, getAdditionalEnv);\n this.validateGlobals(config.globals, source);\n\n for (const override of config.overrides || []) {\n this.validateRules(override.rules, source, getAdditionalRule);\n this.validateEnvironment(override.env, source, getAdditionalEnv);\n this.validateGlobals(config.globals, source);\n }\n }\n\n /**\n * Validate config array object.\n * @param {ConfigArray} configArray The config array to validate.\n * @returns {void}\n */\n validateConfigArray(configArray) {\n const getPluginEnv = Map.prototype.get.bind(configArray.pluginEnvironments);\n const getPluginProcessor = Map.prototype.get.bind(configArray.pluginProcessors);\n const getPluginRule = Map.prototype.get.bind(configArray.pluginRules);\n\n // Validate.\n for (const element of configArray) {\n if (validated.has(element)) {\n continue;\n }\n validated.add(element);\n\n this.validateEnvironment(element.env, element.name, getPluginEnv);\n this.validateGlobals(element.globals, element.name);\n this.validateProcessor(element.processor, element.name, getPluginProcessor);\n this.validateRules(element.rules, element.name, getPluginRule);\n }\n }\n\n}\n","/**\n * @fileoverview Common helpers for naming of plugins, formatters and configs\n */\n\nconst NAMESPACE_REGEX = /^@.*\\//iu;\n\n/**\n * Brings package name to correct format based on prefix\n * @param {string} name The name of the package.\n * @param {string} prefix Can be either \"eslint-plugin\", \"eslint-config\" or \"eslint-formatter\"\n * @returns {string} Normalized name of the package\n * @private\n */\nfunction normalizePackageName(name, prefix) {\n let normalizedName = name;\n\n /**\n * On Windows, name can come in with Windows slashes instead of Unix slashes.\n * Normalize to Unix first to avoid errors later on.\n * https://github.com/eslint/eslint/issues/5644\n */\n if (normalizedName.includes(\"\\\\\")) {\n normalizedName = normalizedName.replace(/\\\\/gu, \"/\");\n }\n\n if (normalizedName.charAt(0) === \"@\") {\n\n /**\n * it's a scoped package\n * package name is the prefix, or just a username\n */\n const scopedPackageShortcutRegex = new RegExp(`^(@[^/]+)(?:/(?:${prefix})?)?$`, \"u\"),\n scopedPackageNameRegex = new RegExp(`^${prefix}(-|$)`, \"u\");\n\n if (scopedPackageShortcutRegex.test(normalizedName)) {\n normalizedName = normalizedName.replace(scopedPackageShortcutRegex, `$1/${prefix}`);\n } else if (!scopedPackageNameRegex.test(normalizedName.split(\"/\")[1])) {\n\n /**\n * for scoped packages, insert the prefix after the first / unless\n * the path is already @scope/eslint or @scope/eslint-xxx-yyy\n */\n normalizedName = normalizedName.replace(/^@([^/]+)\\/(.*)$/u, `@$1/${prefix}-$2`);\n }\n } else if (!normalizedName.startsWith(`${prefix}-`)) {\n normalizedName = `${prefix}-${normalizedName}`;\n }\n\n return normalizedName;\n}\n\n/**\n * Removes the prefix from a fullname.\n * @param {string} fullname The term which may have the prefix.\n * @param {string} prefix The prefix to remove.\n * @returns {string} The term without prefix.\n */\nfunction getShorthandName(fullname, prefix) {\n if (fullname[0] === \"@\") {\n let matchResult = new RegExp(`^(@[^/]+)/${prefix}$`, \"u\").exec(fullname);\n\n if (matchResult) {\n return matchResult[1];\n }\n\n matchResult = new RegExp(`^(@[^/]+)/${prefix}-(.+)$`, \"u\").exec(fullname);\n if (matchResult) {\n return `${matchResult[1]}/${matchResult[2]}`;\n }\n } else if (fullname.startsWith(`${prefix}-`)) {\n return fullname.slice(prefix.length + 1);\n }\n\n return fullname;\n}\n\n/**\n * Gets the scope (namespace) of a term.\n * @param {string} term The term which may have the namespace.\n * @returns {string} The namespace of the term if it has one.\n */\nfunction getNamespaceFromTerm(term) {\n const match = term.match(NAMESPACE_REGEX);\n\n return match ? match[0] : \"\";\n}\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\nexport {\n normalizePackageName,\n getShorthandName,\n getNamespaceFromTerm\n};\n","/**\n * @fileoverview Package exports for @eslint/eslintrc\n * @author Nicholas C. Zakas\n */\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport * as ConfigOps from \"./shared/config-ops.js\";\nimport ConfigValidator from \"./shared/config-validator.js\";\nimport * as naming from \"./shared/naming.js\";\nimport environments from \"../conf/environments.js\";\n\n//-----------------------------------------------------------------------------\n// Exports\n//-----------------------------------------------------------------------------\n\nconst Legacy = {\n environments,\n\n // shared\n ConfigOps,\n ConfigValidator,\n naming\n};\n\nexport {\n Legacy\n};\n"],"names":["path","Ajv","globals","util","BuiltInEnvironments","ConfigOps.normalizeConfigGlobal"],"mappings":"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"}
|
1
|
+
{"version":3,"file":"eslintrc-universal.cjs","sources":["../lib/shared/config-ops.js","../lib/shared/deprecation-warnings.js","../lib/shared/ajv.js","../lib/shared/deep-merge-arrays.js","../conf/config-schema.js","../conf/environments.js","../lib/shared/config-validator.js","../lib/shared/naming.js","../lib/index-universal.js"],"sourcesContent":["/**\n * @fileoverview Config file operations. This file must be usable in the browser,\n * so no Node-specific code can be here.\n * @author Nicholas C. Zakas\n */\n\n//------------------------------------------------------------------------------\n// Private\n//------------------------------------------------------------------------------\n\nconst RULE_SEVERITY_STRINGS = [\"off\", \"warn\", \"error\"],\n RULE_SEVERITY = RULE_SEVERITY_STRINGS.reduce((map, value, index) => {\n map[value] = index;\n return map;\n }, {}),\n VALID_SEVERITIES = new Set([0, 1, 2, \"off\", \"warn\", \"error\"]);\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\n/**\n * Normalizes the severity value of a rule's configuration to a number\n * @param {(number|string|[number, ...*]|[string, ...*])} ruleConfig A rule's configuration value, generally\n * received from the user. A valid config value is either 0, 1, 2, the string \"off\" (treated the same as 0),\n * the string \"warn\" (treated the same as 1), the string \"error\" (treated the same as 2), or an array\n * whose first element is one of the above values. Strings are matched case-insensitively.\n * @returns {(0|1|2)} The numeric severity value if the config value was valid, otherwise 0.\n */\nfunction getRuleSeverity(ruleConfig) {\n const severityValue = Array.isArray(ruleConfig) ? ruleConfig[0] : ruleConfig;\n\n if (severityValue === 0 || severityValue === 1 || severityValue === 2) {\n return severityValue;\n }\n\n if (typeof severityValue === \"string\") {\n return RULE_SEVERITY[severityValue.toLowerCase()] || 0;\n }\n\n return 0;\n}\n\n/**\n * Converts old-style severity settings (0, 1, 2) into new-style\n * severity settings (off, warn, error) for all rules. Assumption is that severity\n * values have already been validated as correct.\n * @param {Object} config The config object to normalize.\n * @returns {void}\n */\nfunction normalizeToStrings(config) {\n\n if (config.rules) {\n Object.keys(config.rules).forEach(ruleId => {\n const ruleConfig = config.rules[ruleId];\n\n if (typeof ruleConfig === \"number\") {\n config.rules[ruleId] = RULE_SEVERITY_STRINGS[ruleConfig] || RULE_SEVERITY_STRINGS[0];\n } else if (Array.isArray(ruleConfig) && typeof ruleConfig[0] === \"number\") {\n ruleConfig[0] = RULE_SEVERITY_STRINGS[ruleConfig[0]] || RULE_SEVERITY_STRINGS[0];\n }\n });\n }\n}\n\n/**\n * Determines if the severity for the given rule configuration represents an error.\n * @param {int|string|Array} ruleConfig The configuration for an individual rule.\n * @returns {boolean} True if the rule represents an error, false if not.\n */\nfunction isErrorSeverity(ruleConfig) {\n return getRuleSeverity(ruleConfig) === 2;\n}\n\n/**\n * Checks whether a given config has valid severity or not.\n * @param {number|string|Array} ruleConfig The configuration for an individual rule.\n * @returns {boolean} `true` if the configuration has valid severity.\n */\nfunction isValidSeverity(ruleConfig) {\n let severity = Array.isArray(ruleConfig) ? ruleConfig[0] : ruleConfig;\n\n if (typeof severity === \"string\") {\n severity = severity.toLowerCase();\n }\n return VALID_SEVERITIES.has(severity);\n}\n\n/**\n * Checks whether every rule of a given config has valid severity or not.\n * @param {Object} config The configuration for rules.\n * @returns {boolean} `true` if the configuration has valid severity.\n */\nfunction isEverySeverityValid(config) {\n return Object.keys(config).every(ruleId => isValidSeverity(config[ruleId]));\n}\n\n/**\n * Normalizes a value for a global in a config\n * @param {(boolean|string|null)} configuredValue The value given for a global in configuration or in\n * a global directive comment\n * @returns {(\"readable\"|\"writeable\"|\"off\")} The value normalized as a string\n * @throws Error if global value is invalid\n */\nfunction normalizeConfigGlobal(configuredValue) {\n switch (configuredValue) {\n case \"off\":\n return \"off\";\n\n case true:\n case \"true\":\n case \"writeable\":\n case \"writable\":\n return \"writable\";\n\n case null:\n case false:\n case \"false\":\n case \"readable\":\n case \"readonly\":\n return \"readonly\";\n\n default:\n throw new Error(`'${configuredValue}' is not a valid configuration for a global (use 'readonly', 'writable', or 'off')`);\n }\n}\n\nexport {\n getRuleSeverity,\n normalizeToStrings,\n isErrorSeverity,\n isValidSeverity,\n isEverySeverityValid,\n normalizeConfigGlobal\n};\n","/**\n * @fileoverview Provide the function that emits deprecation warnings.\n * @author Toru Nagashima <http://github.com/mysticatea>\n */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport path from \"node:path\";\n\n//------------------------------------------------------------------------------\n// Private\n//------------------------------------------------------------------------------\n\n// Defitions for deprecation warnings.\nconst deprecationWarningMessages = {\n ESLINT_LEGACY_ECMAFEATURES:\n \"The 'ecmaFeatures' config file property is deprecated and has no effect.\",\n ESLINT_PERSONAL_CONFIG_LOAD:\n \"'~/.eslintrc.*' config files have been deprecated. \" +\n \"Please use a config file per project or the '--config' option.\",\n ESLINT_PERSONAL_CONFIG_SUPPRESS:\n \"'~/.eslintrc.*' config files have been deprecated. \" +\n \"Please remove it or add 'root:true' to the config files in your \" +\n \"projects in order to avoid loading '~/.eslintrc.*' accidentally.\"\n};\n\nconst sourceFileErrorCache = new Set();\n\n/**\n * Emits a deprecation warning containing a given filepath. A new deprecation warning is emitted\n * for each unique file path, but repeated invocations with the same file path have no effect.\n * No warnings are emitted if the `--no-deprecation` or `--no-warnings` Node runtime flags are active.\n * @param {string} source The name of the configuration source to report the warning for.\n * @param {string} errorCode The warning message to show.\n * @returns {void}\n */\nfunction emitDeprecationWarning(source, errorCode) {\n const cacheKey = JSON.stringify({ source, errorCode });\n\n if (sourceFileErrorCache.has(cacheKey)) {\n return;\n }\n sourceFileErrorCache.add(cacheKey);\n\n const rel = path.relative(process.cwd(), source);\n const message = deprecationWarningMessages[errorCode];\n\n process.emitWarning(\n `${message} (found in \"${rel}\")`,\n \"DeprecationWarning\",\n errorCode\n );\n}\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\nexport {\n emitDeprecationWarning\n};\n","/**\n * @fileoverview The instance of Ajv validator.\n * @author Evgeny Poberezkin\n */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport Ajv from \"ajv\";\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n/*\n * Copied from ajv/lib/refs/json-schema-draft-04.json\n * The MIT License (MIT)\n * Copyright (c) 2015-2017 Evgeny Poberezkin\n */\nconst metaSchema = {\n id: \"http://json-schema.org/draft-04/schema#\",\n $schema: \"http://json-schema.org/draft-04/schema#\",\n description: \"Core schema meta-schema\",\n definitions: {\n schemaArray: {\n type: \"array\",\n minItems: 1,\n items: { $ref: \"#\" }\n },\n positiveInteger: {\n type: \"integer\",\n minimum: 0\n },\n positiveIntegerDefault0: {\n allOf: [{ $ref: \"#/definitions/positiveInteger\" }, { default: 0 }]\n },\n simpleTypes: {\n enum: [\"array\", \"boolean\", \"integer\", \"null\", \"number\", \"object\", \"string\"]\n },\n stringArray: {\n type: \"array\",\n items: { type: \"string\" },\n minItems: 1,\n uniqueItems: true\n }\n },\n type: \"object\",\n properties: {\n id: {\n type: \"string\"\n },\n $schema: {\n type: \"string\"\n },\n title: {\n type: \"string\"\n },\n description: {\n type: \"string\"\n },\n default: { },\n multipleOf: {\n type: \"number\",\n minimum: 0,\n exclusiveMinimum: true\n },\n maximum: {\n type: \"number\"\n },\n exclusiveMaximum: {\n type: \"boolean\",\n default: false\n },\n minimum: {\n type: \"number\"\n },\n exclusiveMinimum: {\n type: \"boolean\",\n default: false\n },\n maxLength: { $ref: \"#/definitions/positiveInteger\" },\n minLength: { $ref: \"#/definitions/positiveIntegerDefault0\" },\n pattern: {\n type: \"string\",\n format: \"regex\"\n },\n additionalItems: {\n anyOf: [\n { type: \"boolean\" },\n { $ref: \"#\" }\n ],\n default: { }\n },\n items: {\n anyOf: [\n { $ref: \"#\" },\n { $ref: \"#/definitions/schemaArray\" }\n ],\n default: { }\n },\n maxItems: { $ref: \"#/definitions/positiveInteger\" },\n minItems: { $ref: \"#/definitions/positiveIntegerDefault0\" },\n uniqueItems: {\n type: \"boolean\",\n default: false\n },\n maxProperties: { $ref: \"#/definitions/positiveInteger\" },\n minProperties: { $ref: \"#/definitions/positiveIntegerDefault0\" },\n required: { $ref: \"#/definitions/stringArray\" },\n additionalProperties: {\n anyOf: [\n { type: \"boolean\" },\n { $ref: \"#\" }\n ],\n default: { }\n },\n definitions: {\n type: \"object\",\n additionalProperties: { $ref: \"#\" },\n default: { }\n },\n properties: {\n type: \"object\",\n additionalProperties: { $ref: \"#\" },\n default: { }\n },\n patternProperties: {\n type: \"object\",\n additionalProperties: { $ref: \"#\" },\n default: { }\n },\n dependencies: {\n type: \"object\",\n additionalProperties: {\n anyOf: [\n { $ref: \"#\" },\n { $ref: \"#/definitions/stringArray\" }\n ]\n }\n },\n enum: {\n type: \"array\",\n minItems: 1,\n uniqueItems: true\n },\n type: {\n anyOf: [\n { $ref: \"#/definitions/simpleTypes\" },\n {\n type: \"array\",\n items: { $ref: \"#/definitions/simpleTypes\" },\n minItems: 1,\n uniqueItems: true\n }\n ]\n },\n format: { type: \"string\" },\n allOf: { $ref: \"#/definitions/schemaArray\" },\n anyOf: { $ref: \"#/definitions/schemaArray\" },\n oneOf: { $ref: \"#/definitions/schemaArray\" },\n not: { $ref: \"#\" }\n },\n dependencies: {\n exclusiveMaximum: [\"maximum\"],\n exclusiveMinimum: [\"minimum\"]\n },\n default: { }\n};\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\nexport default (additionalOptions = {}) => {\n const ajv = new Ajv({\n meta: false,\n useDefaults: true,\n validateSchema: false,\n missingRefs: \"ignore\",\n verbose: true,\n schemaId: \"auto\",\n ...additionalOptions\n });\n\n ajv.addMetaSchema(metaSchema);\n // eslint-disable-next-line no-underscore-dangle -- part of the API\n ajv._opts.defaultMeta = metaSchema.id;\n\n return ajv;\n};\n","/**\n * @fileoverview Applies default rule options\n * @author JoshuaKGoldberg\n */\n\n/**\n * Check if the variable contains an object strictly rejecting arrays\n * @param {unknown} value an object\n * @returns {boolean} Whether value is an object\n */\nfunction isObjectNotArray(value) {\n return typeof value === \"object\" && value !== null && !Array.isArray(value);\n}\n\n/**\n * Deeply merges second on top of first, creating a new {} object if needed.\n * @param {T} first Base, default value.\n * @param {U} second User-specified value.\n * @returns {T | U | (T & U)} Merged equivalent of second on top of first.\n */\nfunction deepMergeObjects(first, second) {\n if (second === void 0) {\n return first;\n }\n\n if (!isObjectNotArray(first) || !isObjectNotArray(second)) {\n return second;\n }\n\n const result = { ...first, ...second };\n\n for (const key of Object.keys(second)) {\n if (Object.prototype.propertyIsEnumerable.call(first, key)) {\n result[key] = deepMergeObjects(first[key], second[key]);\n }\n }\n\n return result;\n}\n\n/**\n * Deeply merges second on top of first, creating a new [] array if needed.\n * @param {T[] | undefined} first Base, default values.\n * @param {U[] | undefined} second User-specified values.\n * @returns {(T | U | (T & U))[]} Merged equivalent of second on top of first.\n */\nfunction deepMergeArrays(first, second) {\n if (!first || !second) {\n return second || first || [];\n }\n\n return [\n ...first.map((value, i) => deepMergeObjects(value, second[i])),\n ...second.slice(first.length)\n ];\n}\n\nexport { deepMergeArrays };\n","/**\n * @fileoverview Defines a schema for configs.\n * @author Sylvan Mably\n */\n\nconst baseConfigProperties = {\n $schema: { type: \"string\" },\n env: { type: \"object\" },\n extends: { $ref: \"#/definitions/stringOrStrings\" },\n globals: { type: \"object\" },\n overrides: {\n type: \"array\",\n items: { $ref: \"#/definitions/overrideConfig\" },\n additionalItems: false\n },\n parser: { type: [\"string\", \"null\"] },\n parserOptions: { type: \"object\" },\n plugins: { type: \"array\" },\n processor: { type: \"string\" },\n rules: { type: \"object\" },\n settings: { type: \"object\" },\n noInlineConfig: { type: \"boolean\" },\n reportUnusedDisableDirectives: { type: \"boolean\" },\n\n ecmaFeatures: { type: \"object\" } // deprecated; logs a warning when used\n};\n\nconst configSchema = {\n definitions: {\n stringOrStrings: {\n oneOf: [\n { type: \"string\" },\n {\n type: \"array\",\n items: { type: \"string\" },\n additionalItems: false\n }\n ]\n },\n stringOrStringsRequired: {\n oneOf: [\n { type: \"string\" },\n {\n type: \"array\",\n items: { type: \"string\" },\n additionalItems: false,\n minItems: 1\n }\n ]\n },\n\n // Config at top-level.\n objectConfig: {\n type: \"object\",\n properties: {\n root: { type: \"boolean\" },\n ignorePatterns: { $ref: \"#/definitions/stringOrStrings\" },\n ...baseConfigProperties\n },\n additionalProperties: false\n },\n\n // Config in `overrides`.\n overrideConfig: {\n type: \"object\",\n properties: {\n excludedFiles: { $ref: \"#/definitions/stringOrStrings\" },\n files: { $ref: \"#/definitions/stringOrStringsRequired\" },\n ...baseConfigProperties\n },\n required: [\"files\"],\n additionalProperties: false\n }\n },\n\n $ref: \"#/definitions/objectConfig\"\n};\n\nexport default configSchema;\n","/**\n * @fileoverview Defines environment settings and globals.\n * @author Elan Shanker\n */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport globals from \"globals\";\n\n//------------------------------------------------------------------------------\n// Helpers\n//------------------------------------------------------------------------------\n\n/**\n * Get the object that has difference.\n * @param {Record<string,boolean>} current The newer object.\n * @param {Record<string,boolean>} prev The older object.\n * @returns {Record<string,boolean>} The difference object.\n */\nfunction getDiff(current, prev) {\n const retv = {};\n\n for (const [key, value] of Object.entries(current)) {\n if (!Object.hasOwn(prev, key)) {\n retv[key] = value;\n }\n }\n\n return retv;\n}\n\nconst newGlobals2015 = getDiff(globals.es2015, globals.es5); // 19 variables such as Promise, Map, ...\nconst newGlobals2017 = {\n Atomics: false,\n SharedArrayBuffer: false\n};\nconst newGlobals2020 = {\n BigInt: false,\n BigInt64Array: false,\n BigUint64Array: false,\n globalThis: false\n};\n\nconst newGlobals2021 = {\n AggregateError: false,\n FinalizationRegistry: false,\n WeakRef: false\n};\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\n/** @type {Map<string, import(\"../lib/shared/types\").Environment>} */\nexport default new Map(Object.entries({\n\n // Language\n builtin: {\n globals: globals.es5\n },\n es6: {\n globals: newGlobals2015,\n parserOptions: {\n ecmaVersion: 6\n }\n },\n es2015: {\n globals: newGlobals2015,\n parserOptions: {\n ecmaVersion: 6\n }\n },\n es2016: {\n globals: newGlobals2015,\n parserOptions: {\n ecmaVersion: 7\n }\n },\n es2017: {\n globals: { ...newGlobals2015, ...newGlobals2017 },\n parserOptions: {\n ecmaVersion: 8\n }\n },\n es2018: {\n globals: { ...newGlobals2015, ...newGlobals2017 },\n parserOptions: {\n ecmaVersion: 9\n }\n },\n es2019: {\n globals: { ...newGlobals2015, ...newGlobals2017 },\n parserOptions: {\n ecmaVersion: 10\n }\n },\n es2020: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020 },\n parserOptions: {\n ecmaVersion: 11\n }\n },\n es2021: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 12\n }\n },\n es2022: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 13\n }\n },\n es2023: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 14\n }\n },\n es2024: {\n globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },\n parserOptions: {\n ecmaVersion: 15\n }\n },\n\n // Platforms\n browser: {\n globals: globals.browser\n },\n node: {\n globals: globals.node,\n parserOptions: {\n ecmaFeatures: {\n globalReturn: true\n }\n }\n },\n \"shared-node-browser\": {\n globals: globals[\"shared-node-browser\"]\n },\n worker: {\n globals: globals.worker\n },\n serviceworker: {\n globals: globals.serviceworker\n },\n\n // Frameworks\n commonjs: {\n globals: globals.commonjs,\n parserOptions: {\n ecmaFeatures: {\n globalReturn: true\n }\n }\n },\n amd: {\n globals: globals.amd\n },\n mocha: {\n globals: globals.mocha\n },\n jasmine: {\n globals: globals.jasmine\n },\n jest: {\n globals: globals.jest\n },\n phantomjs: {\n globals: globals.phantomjs\n },\n jquery: {\n globals: globals.jquery\n },\n qunit: {\n globals: globals.qunit\n },\n prototypejs: {\n globals: globals.prototypejs\n },\n shelljs: {\n globals: globals.shelljs\n },\n meteor: {\n globals: globals.meteor\n },\n mongo: {\n globals: globals.mongo\n },\n protractor: {\n globals: globals.protractor\n },\n applescript: {\n globals: globals.applescript\n },\n nashorn: {\n globals: globals.nashorn\n },\n atomtest: {\n globals: globals.atomtest\n },\n embertest: {\n globals: globals.embertest\n },\n webextensions: {\n globals: globals.webextensions\n },\n greasemonkey: {\n globals: globals.greasemonkey\n }\n}));\n","/**\n * @fileoverview Validates configs.\n * @author Brandon Mills\n */\n\n/* eslint class-methods-use-this: \"off\" -- not needed in this file */\n\n//------------------------------------------------------------------------------\n// Typedefs\n//------------------------------------------------------------------------------\n\n/** @typedef {import(\"../shared/types\").Rule} Rule */\n\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport util from \"node:util\";\nimport * as ConfigOps from \"./config-ops.js\";\nimport { emitDeprecationWarning } from \"./deprecation-warnings.js\";\nimport ajvOrig from \"./ajv.js\";\nimport { deepMergeArrays } from \"./deep-merge-arrays.js\";\nimport configSchema from \"../../conf/config-schema.js\";\nimport BuiltInEnvironments from \"../../conf/environments.js\";\n\nconst ajv = ajvOrig();\n\nconst ruleValidators = new WeakMap();\nconst noop = Function.prototype;\n\n//------------------------------------------------------------------------------\n// Private\n//------------------------------------------------------------------------------\nlet validateSchema;\nconst severityMap = {\n error: 2,\n warn: 1,\n off: 0\n};\n\nconst validated = new WeakSet();\n\n// JSON schema that disallows passing any options\nconst noOptionsSchema = Object.freeze({\n type: \"array\",\n minItems: 0,\n maxItems: 0\n});\n\n//-----------------------------------------------------------------------------\n// Exports\n//-----------------------------------------------------------------------------\n\n/**\n * Validator for configuration objects.\n */\nexport default class ConfigValidator {\n constructor({ builtInRules = new Map() } = {}) {\n this.builtInRules = builtInRules;\n }\n\n /**\n * Gets a complete options schema for a rule.\n * @param {Rule} rule A rule object\n * @throws {TypeError} If `meta.schema` is specified but is not an array, object or `false`.\n * @returns {Object|null} JSON Schema for the rule's options.\n * `null` if rule wasn't passed or its `meta.schema` is `false`.\n */\n getRuleOptionsSchema(rule) {\n if (!rule) {\n return null;\n }\n\n if (!rule.meta) {\n return { ...noOptionsSchema }; // default if `meta.schema` is not specified\n }\n\n const schema = rule.meta.schema;\n\n if (typeof schema === \"undefined\") {\n return { ...noOptionsSchema }; // default if `meta.schema` is not specified\n }\n\n // `schema:false` is an allowed explicit opt-out of options validation for the rule\n if (schema === false) {\n return null;\n }\n\n if (typeof schema !== \"object\" || schema === null) {\n throw new TypeError(\"Rule's `meta.schema` must be an array or object\");\n }\n\n // ESLint-specific array form needs to be converted into a valid JSON Schema definition\n if (Array.isArray(schema)) {\n if (schema.length) {\n return {\n type: \"array\",\n items: schema,\n minItems: 0,\n maxItems: schema.length\n };\n }\n\n // `schema:[]` is an explicit way to specify that the rule does not accept any options\n return { ...noOptionsSchema };\n }\n\n // `schema:<object>` is assumed to be a valid JSON Schema definition\n return schema;\n }\n\n /**\n * Validates a rule's severity and returns the severity value. Throws an error if the severity is invalid.\n * @param {options} options The given options for the rule.\n * @returns {number|string} The rule's severity value\n * @throws {Error} If the severity is invalid.\n */\n validateRuleSeverity(options) {\n const severity = Array.isArray(options) ? options[0] : options;\n const normSeverity = typeof severity === \"string\" ? severityMap[severity.toLowerCase()] : severity;\n\n if (normSeverity === 0 || normSeverity === 1 || normSeverity === 2) {\n return normSeverity;\n }\n\n throw new Error(`\\tSeverity should be one of the following: 0 = off, 1 = warn, 2 = error (you passed '${util.inspect(severity).replace(/'/gu, \"\\\"\").replace(/\\n/gu, \"\")}').\\n`);\n\n }\n\n /**\n * Validates the non-severity options passed to a rule, based on its schema.\n * @param {{create: Function}} rule The rule to validate\n * @param {Array} localOptions The options for the rule, excluding severity\n * @returns {void}\n * @throws {Error} If the options are invalid.\n */\n validateRuleSchema(rule, localOptions) {\n if (!ruleValidators.has(rule)) {\n try {\n const schema = this.getRuleOptionsSchema(rule);\n\n if (schema) {\n ruleValidators.set(rule, ajv.compile(schema));\n }\n } catch (err) {\n const errorWithCode = new Error(err.message, { cause: err });\n\n errorWithCode.code = \"ESLINT_INVALID_RULE_OPTIONS_SCHEMA\";\n\n throw errorWithCode;\n }\n }\n\n const validateRule = ruleValidators.get(rule);\n\n if (validateRule) {\n const mergedOptions = deepMergeArrays(rule.meta?.defaultOptions, localOptions);\n\n validateRule(mergedOptions);\n\n if (validateRule.errors) {\n throw new Error(validateRule.errors.map(\n error => `\\tValue ${JSON.stringify(error.data)} ${error.message}.\\n`\n ).join(\"\"));\n }\n }\n }\n\n /**\n * Validates a rule's options against its schema.\n * @param {{create: Function}|null} rule The rule that the config is being validated for\n * @param {string} ruleId The rule's unique name.\n * @param {Array|number} options The given options for the rule.\n * @param {string|null} source The name of the configuration source to report in any errors. If null or undefined,\n * no source is prepended to the message.\n * @returns {void}\n * @throws {Error} If the options are invalid.\n */\n validateRuleOptions(rule, ruleId, options, source = null) {\n try {\n const severity = this.validateRuleSeverity(options);\n\n if (severity !== 0) {\n this.validateRuleSchema(rule, Array.isArray(options) ? options.slice(1) : []);\n }\n } catch (err) {\n let enhancedMessage = err.code === \"ESLINT_INVALID_RULE_OPTIONS_SCHEMA\"\n ? `Error while processing options validation schema of rule '${ruleId}': ${err.message}`\n : `Configuration for rule \"${ruleId}\" is invalid:\\n${err.message}`;\n\n if (typeof source === \"string\") {\n enhancedMessage = `${source}:\\n\\t${enhancedMessage}`;\n }\n\n const enhancedError = new Error(enhancedMessage, { cause: err });\n\n if (err.code) {\n enhancedError.code = err.code;\n }\n\n throw enhancedError;\n }\n }\n\n /**\n * Validates an environment object\n * @param {Object} environment The environment config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @param {(envId:string) => Object} [getAdditionalEnv] A map from strings to loaded environments.\n * @returns {void}\n * @throws {Error} If the environment is invalid.\n */\n validateEnvironment(\n environment,\n source,\n getAdditionalEnv = noop\n ) {\n\n // not having an environment is ok\n if (!environment) {\n return;\n }\n\n Object.keys(environment).forEach(id => {\n const env = getAdditionalEnv(id) || BuiltInEnvironments.get(id) || null;\n\n if (!env) {\n const message = `${source}:\\n\\tEnvironment key \"${id}\" is unknown\\n`;\n\n throw new Error(message);\n }\n });\n }\n\n /**\n * Validates a rules config object\n * @param {Object} rulesConfig The rules config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @param {(ruleId:string) => Object} getAdditionalRule A map from strings to loaded rules\n * @returns {void}\n */\n validateRules(\n rulesConfig,\n source,\n getAdditionalRule = noop\n ) {\n if (!rulesConfig) {\n return;\n }\n\n Object.keys(rulesConfig).forEach(id => {\n const rule = getAdditionalRule(id) || this.builtInRules.get(id) || null;\n\n this.validateRuleOptions(rule, id, rulesConfig[id], source);\n });\n }\n\n /**\n * Validates a `globals` section of a config file\n * @param {Object} globalsConfig The `globals` section\n * @param {string|null} source The name of the configuration source to report in the event of an error.\n * @returns {void}\n */\n validateGlobals(globalsConfig, source = null) {\n if (!globalsConfig) {\n return;\n }\n\n Object.entries(globalsConfig)\n .forEach(([configuredGlobal, configuredValue]) => {\n try {\n ConfigOps.normalizeConfigGlobal(configuredValue);\n } catch (err) {\n throw new Error(`ESLint configuration of global '${configuredGlobal}' in ${source} is invalid:\\n${err.message}`);\n }\n });\n }\n\n /**\n * Validate `processor` configuration.\n * @param {string|undefined} processorName The processor name.\n * @param {string} source The name of config file.\n * @param {(id:string) => Processor} getProcessor The getter of defined processors.\n * @returns {void}\n * @throws {Error} If the processor is invalid.\n */\n validateProcessor(processorName, source, getProcessor) {\n if (processorName && !getProcessor(processorName)) {\n throw new Error(`ESLint configuration of processor in '${source}' is invalid: '${processorName}' was not found.`);\n }\n }\n\n /**\n * Formats an array of schema validation errors.\n * @param {Array} errors An array of error messages to format.\n * @returns {string} Formatted error message\n */\n formatErrors(errors) {\n return errors.map(error => {\n if (error.keyword === \"additionalProperties\") {\n const formattedPropertyPath = error.dataPath.length ? `${error.dataPath.slice(1)}.${error.params.additionalProperty}` : error.params.additionalProperty;\n\n return `Unexpected top-level property \"${formattedPropertyPath}\"`;\n }\n if (error.keyword === \"type\") {\n const formattedField = error.dataPath.slice(1);\n const formattedExpectedType = Array.isArray(error.schema) ? error.schema.join(\"/\") : error.schema;\n const formattedValue = JSON.stringify(error.data);\n\n return `Property \"${formattedField}\" is the wrong type (expected ${formattedExpectedType} but got \\`${formattedValue}\\`)`;\n }\n\n const field = error.dataPath[0] === \".\" ? error.dataPath.slice(1) : error.dataPath;\n\n return `\"${field}\" ${error.message}. Value: ${JSON.stringify(error.data)}`;\n }).map(message => `\\t- ${message}.\\n`).join(\"\");\n }\n\n /**\n * Validates the top level properties of the config object.\n * @param {Object} config The config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @returns {void}\n * @throws {Error} If the config is invalid.\n */\n validateConfigSchema(config, source = null) {\n validateSchema = validateSchema || ajv.compile(configSchema);\n\n if (!validateSchema(config)) {\n throw new Error(`ESLint configuration in ${source} is invalid:\\n${this.formatErrors(validateSchema.errors)}`);\n }\n\n if (Object.hasOwn(config, \"ecmaFeatures\")) {\n emitDeprecationWarning(source, \"ESLINT_LEGACY_ECMAFEATURES\");\n }\n }\n\n /**\n * Validates an entire config object.\n * @param {Object} config The config object to validate.\n * @param {string} source The name of the configuration source to report in any errors.\n * @param {(ruleId:string) => Object} [getAdditionalRule] A map from strings to loaded rules.\n * @param {(envId:string) => Object} [getAdditionalEnv] A map from strings to loaded envs.\n * @returns {void}\n */\n validate(config, source, getAdditionalRule, getAdditionalEnv) {\n this.validateConfigSchema(config, source);\n this.validateRules(config.rules, source, getAdditionalRule);\n this.validateEnvironment(config.env, source, getAdditionalEnv);\n this.validateGlobals(config.globals, source);\n\n for (const override of config.overrides || []) {\n this.validateRules(override.rules, source, getAdditionalRule);\n this.validateEnvironment(override.env, source, getAdditionalEnv);\n this.validateGlobals(config.globals, source);\n }\n }\n\n /**\n * Validate config array object.\n * @param {ConfigArray} configArray The config array to validate.\n * @returns {void}\n */\n validateConfigArray(configArray) {\n const getPluginEnv = Map.prototype.get.bind(configArray.pluginEnvironments);\n const getPluginProcessor = Map.prototype.get.bind(configArray.pluginProcessors);\n const getPluginRule = Map.prototype.get.bind(configArray.pluginRules);\n\n // Validate.\n for (const element of configArray) {\n if (validated.has(element)) {\n continue;\n }\n validated.add(element);\n\n this.validateEnvironment(element.env, element.name, getPluginEnv);\n this.validateGlobals(element.globals, element.name);\n this.validateProcessor(element.processor, element.name, getPluginProcessor);\n this.validateRules(element.rules, element.name, getPluginRule);\n }\n }\n\n}\n","/**\n * @fileoverview Common helpers for naming of plugins, formatters and configs\n */\n\nconst NAMESPACE_REGEX = /^@.*\\//iu;\n\n/**\n * Brings package name to correct format based on prefix\n * @param {string} name The name of the package.\n * @param {string} prefix Can be either \"eslint-plugin\", \"eslint-config\" or \"eslint-formatter\"\n * @returns {string} Normalized name of the package\n * @private\n */\nfunction normalizePackageName(name, prefix) {\n let normalizedName = name;\n\n /**\n * On Windows, name can come in with Windows slashes instead of Unix slashes.\n * Normalize to Unix first to avoid errors later on.\n * https://github.com/eslint/eslint/issues/5644\n */\n if (normalizedName.includes(\"\\\\\")) {\n normalizedName = normalizedName.replace(/\\\\/gu, \"/\");\n }\n\n if (normalizedName.charAt(0) === \"@\") {\n\n /**\n * it's a scoped package\n * package name is the prefix, or just a username\n */\n const scopedPackageShortcutRegex = new RegExp(`^(@[^/]+)(?:/(?:${prefix})?)?$`, \"u\"),\n scopedPackageNameRegex = new RegExp(`^${prefix}(-|$)`, \"u\");\n\n if (scopedPackageShortcutRegex.test(normalizedName)) {\n normalizedName = normalizedName.replace(scopedPackageShortcutRegex, `$1/${prefix}`);\n } else if (!scopedPackageNameRegex.test(normalizedName.split(\"/\")[1])) {\n\n /**\n * for scoped packages, insert the prefix after the first / unless\n * the path is already @scope/eslint or @scope/eslint-xxx-yyy\n */\n normalizedName = normalizedName.replace(/^@([^/]+)\\/(.*)$/u, `@$1/${prefix}-$2`);\n }\n } else if (!normalizedName.startsWith(`${prefix}-`)) {\n normalizedName = `${prefix}-${normalizedName}`;\n }\n\n return normalizedName;\n}\n\n/**\n * Removes the prefix from a fullname.\n * @param {string} fullname The term which may have the prefix.\n * @param {string} prefix The prefix to remove.\n * @returns {string} The term without prefix.\n */\nfunction getShorthandName(fullname, prefix) {\n if (fullname[0] === \"@\") {\n let matchResult = new RegExp(`^(@[^/]+)/${prefix}$`, \"u\").exec(fullname);\n\n if (matchResult) {\n return matchResult[1];\n }\n\n matchResult = new RegExp(`^(@[^/]+)/${prefix}-(.+)$`, \"u\").exec(fullname);\n if (matchResult) {\n return `${matchResult[1]}/${matchResult[2]}`;\n }\n } else if (fullname.startsWith(`${prefix}-`)) {\n return fullname.slice(prefix.length + 1);\n }\n\n return fullname;\n}\n\n/**\n * Gets the scope (namespace) of a term.\n * @param {string} term The term which may have the namespace.\n * @returns {string} The namespace of the term if it has one.\n */\nfunction getNamespaceFromTerm(term) {\n const match = term.match(NAMESPACE_REGEX);\n\n return match ? match[0] : \"\";\n}\n\n//------------------------------------------------------------------------------\n// Public Interface\n//------------------------------------------------------------------------------\n\nexport {\n normalizePackageName,\n getShorthandName,\n getNamespaceFromTerm\n};\n","/**\n * @fileoverview Package exports for @eslint/eslintrc\n * @author Nicholas C. Zakas\n */\n//------------------------------------------------------------------------------\n// Requirements\n//------------------------------------------------------------------------------\n\nimport * as ConfigOps from \"./shared/config-ops.js\";\nimport ConfigValidator from \"./shared/config-validator.js\";\nimport * as naming from \"./shared/naming.js\";\nimport environments from \"../conf/environments.js\";\n\n//-----------------------------------------------------------------------------\n// Exports\n//-----------------------------------------------------------------------------\n\nconst Legacy = {\n environments,\n\n // shared\n ConfigOps,\n ConfigValidator,\n naming\n};\n\nexport {\n Legacy\n};\n"],"names":["path","Ajv","globals","util","BuiltInEnvironments","ConfigOps.normalizeConfigGlobal"],"mappings":"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"}
|