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
@@ -29,10 +29,10 @@ import { Linter } from "../index";
|
|
29
29
|
|
30
30
|
export interface BestPractices extends Linter.RulesRecord {
|
31
31
|
/**
|
32
|
-
* Rule to enforce getter and setter pairs in objects.
|
32
|
+
* Rule to enforce getter and setter pairs in objects and classes.
|
33
33
|
*
|
34
34
|
* @since 0.22.0
|
35
|
-
* @see https://eslint.org/docs/rules/accessor-pairs
|
35
|
+
* @see https://eslint.org/docs/latest/rules/accessor-pairs
|
36
36
|
*/
|
37
37
|
"accessor-pairs": Linter.RuleEntry<
|
38
38
|
[
|
@@ -57,7 +57,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
57
57
|
* Rule to enforce `return` statements in callbacks of array methods.
|
58
58
|
*
|
59
59
|
* @since 2.0.0-alpha-1
|
60
|
-
* @see https://eslint.org/docs/rules/array-callback-return
|
60
|
+
* @see https://eslint.org/docs/latest/rules/array-callback-return
|
61
61
|
*/
|
62
62
|
"array-callback-return": Linter.RuleEntry<
|
63
63
|
[
|
@@ -82,7 +82,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
82
82
|
* Rule to enforce the use of variables within the scope they are defined.
|
83
83
|
*
|
84
84
|
* @since 0.1.0
|
85
|
-
* @see https://eslint.org/docs/rules/block-scoped-var
|
85
|
+
* @see https://eslint.org/docs/latest/rules/block-scoped-var
|
86
86
|
*/
|
87
87
|
"block-scoped-var": Linter.RuleEntry<[]>;
|
88
88
|
|
@@ -90,7 +90,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
90
90
|
* Rule to enforce that class methods utilize `this`.
|
91
91
|
*
|
92
92
|
* @since 3.4.0
|
93
|
-
* @see https://eslint.org/docs/rules/class-methods-use-this
|
93
|
+
* @see https://eslint.org/docs/latest/rules/class-methods-use-this
|
94
94
|
*/
|
95
95
|
"class-methods-use-this": Linter.RuleEntry<
|
96
96
|
[
|
@@ -104,7 +104,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
104
104
|
* Rule to enforce a maximum cyclomatic complexity allowed in a program.
|
105
105
|
*
|
106
106
|
* @since 0.0.9
|
107
|
-
* @see https://eslint.org/docs/rules/complexity
|
107
|
+
* @see https://eslint.org/docs/latest/rules/complexity
|
108
108
|
*/
|
109
109
|
complexity: Linter.RuleEntry<
|
110
110
|
[
|
@@ -132,7 +132,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
132
132
|
* Rule to require `return` statements to either always or never specify values.
|
133
133
|
*
|
134
134
|
* @since 0.4.0
|
135
|
-
* @see https://eslint.org/docs/rules/consistent-return
|
135
|
+
* @see https://eslint.org/docs/latest/rules/consistent-return
|
136
136
|
*/
|
137
137
|
"consistent-return": Linter.RuleEntry<
|
138
138
|
[
|
@@ -149,7 +149,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
149
149
|
* Rule to enforce consistent brace style for all control statements.
|
150
150
|
*
|
151
151
|
* @since 0.0.2
|
152
|
-
* @see https://eslint.org/docs/rules/curly
|
152
|
+
* @see https://eslint.org/docs/latest/rules/curly
|
153
153
|
*/
|
154
154
|
curly: Linter.RuleEntry<["all" | "multi" | "multi-line" | "multi-or-nest" | "consistent"]>;
|
155
155
|
|
@@ -157,7 +157,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
157
157
|
* Rule to require `default` cases in `switch` statements.
|
158
158
|
*
|
159
159
|
* @since 0.6.0
|
160
|
-
* @see https://eslint.org/docs/rules/default-case
|
160
|
+
* @see https://eslint.org/docs/latest/rules/default-case
|
161
161
|
*/
|
162
162
|
"default-case": Linter.RuleEntry<
|
163
163
|
[
|
@@ -171,15 +171,15 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
171
171
|
>;
|
172
172
|
|
173
173
|
/**
|
174
|
-
* Rule to enforce default clauses in switch statements to be last
|
174
|
+
* Rule to enforce `default` clauses in `switch` statements to be last.
|
175
175
|
*
|
176
|
-
* @since 7.0.0
|
176
|
+
* @since 7.0.0-alpha.0
|
177
177
|
* @see https://eslint.org/docs/latest/rules/default-case-last
|
178
178
|
*/
|
179
179
|
"default-case-last": Linter.RuleEntry<[]>;
|
180
180
|
|
181
181
|
/**
|
182
|
-
*
|
182
|
+
* Rule to enforce default parameters to be last.
|
183
183
|
*
|
184
184
|
* @since 6.4.0
|
185
185
|
* @see https://eslint.org/docs/latest/rules/default-param-last
|
@@ -191,7 +191,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
191
191
|
*
|
192
192
|
* @since 0.21.0
|
193
193
|
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/dot-location) in `@stylistic/eslint-plugin-js`.
|
194
|
-
* @see https://eslint.org/docs/rules/dot-location
|
194
|
+
* @see https://eslint.org/docs/latest/rules/dot-location
|
195
195
|
*/
|
196
196
|
"dot-location": Linter.RuleEntry<["object" | "property"]>;
|
197
197
|
|
@@ -199,7 +199,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
199
199
|
* Rule to enforce dot notation whenever possible.
|
200
200
|
*
|
201
201
|
* @since 0.0.7
|
202
|
-
* @see https://eslint.org/docs/rules/dot-notation
|
202
|
+
* @see https://eslint.org/docs/latest/rules/dot-notation
|
203
203
|
*/
|
204
204
|
"dot-notation": Linter.RuleEntry<
|
205
205
|
[
|
@@ -217,7 +217,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
217
217
|
* Rule to require the use of `===` and `!==`.
|
218
218
|
*
|
219
219
|
* @since 0.0.2
|
220
|
-
* @see https://eslint.org/docs/rules/eqeqeq
|
220
|
+
* @see https://eslint.org/docs/latest/rules/eqeqeq
|
221
221
|
*/
|
222
222
|
eqeqeq:
|
223
223
|
| Linter.RuleEntry<
|
@@ -234,7 +234,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
234
234
|
| Linter.RuleEntry<["smart" | "allow-null"]>;
|
235
235
|
|
236
236
|
/**
|
237
|
-
*
|
237
|
+
* Rule to require grouped accessor pairs in object literals and classes.
|
238
238
|
*
|
239
239
|
* @since 6.7.0
|
240
240
|
* @see https://eslint.org/docs/latest/rules/grouped-accessor-pairs
|
@@ -245,7 +245,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
245
245
|
* Rule to require `for-in` loops to include an `if` statement.
|
246
246
|
*
|
247
247
|
* @since 0.0.6
|
248
|
-
* @see https://eslint.org/docs/rules/guard-for-in
|
248
|
+
* @see https://eslint.org/docs/latest/rules/guard-for-in
|
249
249
|
*/
|
250
250
|
"guard-for-in": Linter.RuleEntry<[]>;
|
251
251
|
|
@@ -253,7 +253,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
253
253
|
* Rule to enforce a maximum number of classes per file.
|
254
254
|
*
|
255
255
|
* @since 5.0.0-alpha.3
|
256
|
-
* @see https://eslint.org/docs/rules/max-classes-per-file
|
256
|
+
* @see https://eslint.org/docs/latest/rules/max-classes-per-file
|
257
257
|
*/
|
258
258
|
"max-classes-per-file": Linter.RuleEntry<[number]>;
|
259
259
|
|
@@ -261,7 +261,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
261
261
|
* Rule to disallow the use of `alert`, `confirm`, and `prompt`.
|
262
262
|
*
|
263
263
|
* @since 0.0.5
|
264
|
-
* @see https://eslint.org/docs/rules/no-alert
|
264
|
+
* @see https://eslint.org/docs/latest/rules/no-alert
|
265
265
|
*/
|
266
266
|
"no-alert": Linter.RuleEntry<[]>;
|
267
267
|
|
@@ -269,7 +269,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
269
269
|
* Rule to disallow the use of `arguments.caller` or `arguments.callee`.
|
270
270
|
*
|
271
271
|
* @since 0.0.6
|
272
|
-
* @see https://eslint.org/docs/rules/no-caller
|
272
|
+
* @see https://eslint.org/docs/latest/rules/no-caller
|
273
273
|
*/
|
274
274
|
"no-caller": Linter.RuleEntry<[]>;
|
275
275
|
|
@@ -280,15 +280,15 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
280
280
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
281
281
|
*
|
282
282
|
* @since 1.9.0
|
283
|
-
* @see https://eslint.org/docs/rules/no-case-declarations
|
283
|
+
* @see https://eslint.org/docs/latest/rules/no-case-declarations
|
284
284
|
*/
|
285
285
|
"no-case-declarations": Linter.RuleEntry<[]>;
|
286
286
|
|
287
287
|
/**
|
288
|
-
* Rule to disallow
|
288
|
+
* Rule to disallow equal signs explicitly at the beginning of regular expressions.
|
289
289
|
*
|
290
290
|
* @since 0.1.0
|
291
|
-
* @see https://eslint.org/docs/rules/no-div-regex
|
291
|
+
* @see https://eslint.org/docs/latest/rules/no-div-regex
|
292
292
|
*/
|
293
293
|
"no-div-regex": Linter.RuleEntry<[]>;
|
294
294
|
|
@@ -296,7 +296,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
296
296
|
* Rule to disallow `else` blocks after `return` statements in `if` statements.
|
297
297
|
*
|
298
298
|
* @since 0.0.9
|
299
|
-
* @see https://eslint.org/docs/rules/no-else-return
|
299
|
+
* @see https://eslint.org/docs/latest/rules/no-else-return
|
300
300
|
*/
|
301
301
|
"no-else-return": Linter.RuleEntry<
|
302
302
|
[
|
@@ -313,7 +313,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
313
313
|
* Rule to disallow empty functions.
|
314
314
|
*
|
315
315
|
* @since 2.0.0
|
316
|
-
* @see https://eslint.org/docs/rules/no-empty-function
|
316
|
+
* @see https://eslint.org/docs/latest/rules/no-empty-function
|
317
317
|
*/
|
318
318
|
"no-empty-function": Linter.RuleEntry<
|
319
319
|
[
|
@@ -344,15 +344,26 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
344
344
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
345
345
|
*
|
346
346
|
* @since 1.7.0
|
347
|
-
* @see https://eslint.org/docs/rules/no-empty-pattern
|
347
|
+
* @see https://eslint.org/docs/latest/rules/no-empty-pattern
|
348
348
|
*/
|
349
349
|
"no-empty-pattern": Linter.RuleEntry<[]>;
|
350
350
|
|
351
|
+
/**
|
352
|
+
* Rule to disallow empty static blocks.
|
353
|
+
*
|
354
|
+
* @remarks
|
355
|
+
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
356
|
+
*
|
357
|
+
* @since 8.27.0
|
358
|
+
* @see https://eslint.org/docs/latest/rules/no-empty-static-block
|
359
|
+
*/
|
360
|
+
"no-empty-static-block": Linter.RuleEntry<[]>;
|
361
|
+
|
351
362
|
/**
|
352
363
|
* Rule to disallow `null` comparisons without type-checking operators.
|
353
364
|
*
|
354
365
|
* @since 0.0.9
|
355
|
-
* @see https://eslint.org/docs/rules/no-eq-null
|
366
|
+
* @see https://eslint.org/docs/latest/rules/no-eq-null
|
356
367
|
*/
|
357
368
|
"no-eq-null": Linter.RuleEntry<[]>;
|
358
369
|
|
@@ -360,7 +371,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
360
371
|
* Rule to disallow the use of `eval()`.
|
361
372
|
*
|
362
373
|
* @since 0.0.2
|
363
|
-
* @see https://eslint.org/docs/rules/no-eval
|
374
|
+
* @see https://eslint.org/docs/latest/rules/no-eval
|
364
375
|
*/
|
365
376
|
"no-eval": Linter.RuleEntry<
|
366
377
|
[
|
@@ -377,7 +388,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
377
388
|
* Rule to disallow extending native types.
|
378
389
|
*
|
379
390
|
* @since 0.1.4
|
380
|
-
* @see https://eslint.org/docs/rules/no-extend-native
|
391
|
+
* @see https://eslint.org/docs/latest/rules/no-extend-native
|
381
392
|
*/
|
382
393
|
"no-extend-native": Linter.RuleEntry<
|
383
394
|
[
|
@@ -391,7 +402,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
391
402
|
* Rule to disallow unnecessary calls to `.bind()`.
|
392
403
|
*
|
393
404
|
* @since 0.8.0
|
394
|
-
* @see https://eslint.org/docs/rules/no-extra-bind
|
405
|
+
* @see https://eslint.org/docs/latest/rules/no-extra-bind
|
395
406
|
*/
|
396
407
|
"no-extra-bind": Linter.RuleEntry<[]>;
|
397
408
|
|
@@ -399,7 +410,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
399
410
|
* Rule to disallow unnecessary labels.
|
400
411
|
*
|
401
412
|
* @since 2.0.0-rc.0
|
402
|
-
* @see https://eslint.org/docs/rules/no-extra-label
|
413
|
+
* @see https://eslint.org/docs/latest/rules/no-extra-label
|
403
414
|
*/
|
404
415
|
"no-extra-label": Linter.RuleEntry<[]>;
|
405
416
|
|
@@ -410,7 +421,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
410
421
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
411
422
|
*
|
412
423
|
* @since 0.0.7
|
413
|
-
* @see https://eslint.org/docs/rules/no-fallthrough
|
424
|
+
* @see https://eslint.org/docs/latest/rules/no-fallthrough
|
414
425
|
*/
|
415
426
|
"no-fallthrough": Linter.RuleEntry<
|
416
427
|
[
|
@@ -436,7 +447,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
436
447
|
*
|
437
448
|
* @since 0.0.6
|
438
449
|
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-floating-decimal) in `@stylistic/eslint-plugin-js`.
|
439
|
-
* @see https://eslint.org/docs/rules/no-floating-decimal
|
450
|
+
* @see https://eslint.org/docs/latest/rules/no-floating-decimal
|
440
451
|
*/
|
441
452
|
"no-floating-decimal": Linter.RuleEntry<[]>;
|
442
453
|
|
@@ -447,7 +458,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
447
458
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
448
459
|
*
|
449
460
|
* @since 3.3.0
|
450
|
-
* @see https://eslint.org/docs/rules/no-global-assign
|
461
|
+
* @see https://eslint.org/docs/latest/rules/no-global-assign
|
451
462
|
*/
|
452
463
|
"no-global-assign": Linter.RuleEntry<
|
453
464
|
[
|
@@ -461,7 +472,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
461
472
|
* Rule to disallow shorthand type conversions.
|
462
473
|
*
|
463
474
|
* @since 1.0.0-rc-2
|
464
|
-
* @see https://eslint.org/docs/rules/no-implicit-coercion
|
475
|
+
* @see https://eslint.org/docs/latest/rules/no-implicit-coercion
|
465
476
|
*/
|
466
477
|
"no-implicit-coercion": Linter.RuleEntry<
|
467
478
|
[
|
@@ -491,10 +502,10 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
491
502
|
>;
|
492
503
|
|
493
504
|
/**
|
494
|
-
* Rule to disallow
|
505
|
+
* Rule to disallow declarations in the global scope.
|
495
506
|
*
|
496
507
|
* @since 2.0.0-alpha-1
|
497
|
-
* @see https://eslint.org/docs/rules/no-implicit-globals
|
508
|
+
* @see https://eslint.org/docs/latest/rules/no-implicit-globals
|
498
509
|
*/
|
499
510
|
"no-implicit-globals": Linter.RuleEntry<[]>;
|
500
511
|
|
@@ -502,12 +513,12 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
502
513
|
* Rule to disallow the use of `eval()`-like methods.
|
503
514
|
*
|
504
515
|
* @since 0.0.7
|
505
|
-
* @see https://eslint.org/docs/rules/no-implied-eval
|
516
|
+
* @see https://eslint.org/docs/latest/rules/no-implied-eval
|
506
517
|
*/
|
507
518
|
"no-implied-eval": Linter.RuleEntry<[]>;
|
508
519
|
|
509
520
|
/**
|
510
|
-
*
|
521
|
+
* Rule to disallow assigning to imported bindings.
|
511
522
|
*
|
512
523
|
* @remarks
|
513
524
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
@@ -518,10 +529,10 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
518
529
|
"no-import-assign": Linter.RuleEntry<[]>;
|
519
530
|
|
520
531
|
/**
|
521
|
-
* Rule to disallow `this`
|
532
|
+
* Rule to disallow use of `this` in contexts where the value of `this` is `undefined`.
|
522
533
|
*
|
523
534
|
* @since 1.0.0-rc-2
|
524
|
-
* @see https://eslint.org/docs/rules/no-invalid-this
|
535
|
+
* @see https://eslint.org/docs/latest/rules/no-invalid-this
|
525
536
|
*/
|
526
537
|
"no-invalid-this": Linter.RuleEntry<
|
527
538
|
[
|
@@ -538,7 +549,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
538
549
|
* Rule to disallow the use of the `__iterator__` property.
|
539
550
|
*
|
540
551
|
* @since 0.0.9
|
541
|
-
* @see https://eslint.org/docs/rules/no-iterator
|
552
|
+
* @see https://eslint.org/docs/latest/rules/no-iterator
|
542
553
|
*/
|
543
554
|
"no-iterator": Linter.RuleEntry<[]>;
|
544
555
|
|
@@ -546,7 +557,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
546
557
|
* Rule to disallow labeled statements.
|
547
558
|
*
|
548
559
|
* @since 0.4.0
|
549
|
-
* @see https://eslint.org/docs/rules/no-labels
|
560
|
+
* @see https://eslint.org/docs/latest/rules/no-labels
|
550
561
|
*/
|
551
562
|
"no-labels": Linter.RuleEntry<
|
552
563
|
[
|
@@ -567,7 +578,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
567
578
|
* Rule to disallow unnecessary nested blocks.
|
568
579
|
*
|
569
580
|
* @since 0.4.0
|
570
|
-
* @see https://eslint.org/docs/rules/no-lone-blocks
|
581
|
+
* @see https://eslint.org/docs/latest/rules/no-lone-blocks
|
571
582
|
*/
|
572
583
|
"no-lone-blocks": Linter.RuleEntry<[]>;
|
573
584
|
|
@@ -575,7 +586,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
575
586
|
* Rule to disallow function declarations that contain unsafe references inside loop statements.
|
576
587
|
*
|
577
588
|
* @since 0.0.9
|
578
|
-
* @see https://eslint.org/docs/rules/no-loop-func
|
589
|
+
* @see https://eslint.org/docs/latest/rules/no-loop-func
|
579
590
|
*/
|
580
591
|
"no-loop-func": Linter.RuleEntry<[]>;
|
581
592
|
|
@@ -583,7 +594,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
583
594
|
* Rule to disallow magic numbers.
|
584
595
|
*
|
585
596
|
* @since 1.7.0
|
586
|
-
* @see https://eslint.org/docs/rules/no-magic-numbers
|
597
|
+
* @see https://eslint.org/docs/latest/rules/no-magic-numbers
|
587
598
|
*/
|
588
599
|
"no-magic-numbers": Linter.RuleEntry<
|
589
600
|
[
|
@@ -613,7 +624,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
613
624
|
*
|
614
625
|
* @since 0.9.0
|
615
626
|
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-multi-spaces) in `@stylistic/eslint-plugin-js`.
|
616
|
-
* @see https://eslint.org/docs/rules/no-multi-spaces
|
627
|
+
* @see https://eslint.org/docs/latest/rules/no-multi-spaces
|
617
628
|
*/
|
618
629
|
"no-multi-spaces": Linter.RuleEntry<
|
619
630
|
[
|
@@ -634,7 +645,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
634
645
|
* Rule to disallow multiline strings.
|
635
646
|
*
|
636
647
|
* @since 0.0.9
|
637
|
-
* @see https://eslint.org/docs/rules/no-multi-str
|
648
|
+
* @see https://eslint.org/docs/latest/rules/no-multi-str
|
638
649
|
*/
|
639
650
|
"no-multi-str": Linter.RuleEntry<[]>;
|
640
651
|
|
@@ -642,7 +653,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
642
653
|
* Rule to disallow `new` operators outside of assignments or comparisons.
|
643
654
|
*
|
644
655
|
* @since 0.0.7
|
645
|
-
* @see https://eslint.org/docs/rules/no-new
|
656
|
+
* @see https://eslint.org/docs/latest/rules/no-new
|
646
657
|
*/
|
647
658
|
"no-new": Linter.RuleEntry<[]>;
|
648
659
|
|
@@ -650,7 +661,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
650
661
|
* Rule to disallow `new` operators with the `Function` object.
|
651
662
|
*
|
652
663
|
* @since 0.0.7
|
653
|
-
* @see https://eslint.org/docs/rules/no-new-func
|
664
|
+
* @see https://eslint.org/docs/latest/rules/no-new-func
|
654
665
|
*/
|
655
666
|
"no-new-func": Linter.RuleEntry<[]>;
|
656
667
|
|
@@ -658,15 +669,18 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
658
669
|
* Rule to disallow `new` operators with the `String`, `Number`, and `Boolean` objects.
|
659
670
|
*
|
660
671
|
* @since 0.0.6
|
661
|
-
* @see https://eslint.org/docs/rules/no-new-wrappers
|
672
|
+
* @see https://eslint.org/docs/latest/rules/no-new-wrappers
|
662
673
|
*/
|
663
674
|
"no-new-wrappers": Linter.RuleEntry<[]>;
|
664
675
|
|
665
676
|
/**
|
666
|
-
*
|
677
|
+
* Rule to disallow `\8` and `\9` escape sequences in string literals.
|
678
|
+
*
|
679
|
+
* @remarks
|
680
|
+
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
667
681
|
*
|
668
682
|
* @since 7.14.0
|
669
|
-
* @see https://eslint.org/docs/rules/no-nonoctal-decimal-escape
|
683
|
+
* @see https://eslint.org/docs/latest/rules/no-nonoctal-decimal-escape
|
670
684
|
*/
|
671
685
|
"no-nonoctal-decimal-escape": Linter.RuleEntry<[]>;
|
672
686
|
|
@@ -677,7 +691,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
677
691
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
678
692
|
*
|
679
693
|
* @since 0.0.6
|
680
|
-
* @see https://eslint.org/docs/rules/no-octal
|
694
|
+
* @see https://eslint.org/docs/latest/rules/no-octal
|
681
695
|
*/
|
682
696
|
"no-octal": Linter.RuleEntry<[]>;
|
683
697
|
|
@@ -685,15 +699,15 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
685
699
|
* Rule to disallow octal escape sequences in string literals.
|
686
700
|
*
|
687
701
|
* @since 0.0.9
|
688
|
-
* @see https://eslint.org/docs/rules/no-octal-escape
|
702
|
+
* @see https://eslint.org/docs/latest/rules/no-octal-escape
|
689
703
|
*/
|
690
704
|
"no-octal-escape": Linter.RuleEntry<[]>;
|
691
705
|
|
692
706
|
/**
|
693
|
-
* Rule to disallow reassigning
|
707
|
+
* Rule to disallow reassigning function parameters.
|
694
708
|
*
|
695
709
|
* @since 0.18.0
|
696
|
-
* @see https://eslint.org/docs/rules/no-param-reassign
|
710
|
+
* @see https://eslint.org/docs/latest/rules/no-param-reassign
|
697
711
|
*/
|
698
712
|
"no-param-reassign": Linter.RuleEntry<
|
699
713
|
[
|
@@ -720,7 +734,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
720
734
|
* Rule to disallow the use of the `__proto__` property.
|
721
735
|
*
|
722
736
|
* @since 0.0.9
|
723
|
-
* @see https://eslint.org/docs/rules/no-proto
|
737
|
+
* @see https://eslint.org/docs/latest/rules/no-proto
|
724
738
|
*/
|
725
739
|
"no-proto": Linter.RuleEntry<[]>;
|
726
740
|
|
@@ -731,7 +745,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
731
745
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
732
746
|
*
|
733
747
|
* @since 0.0.9
|
734
|
-
* @see https://eslint.org/docs/rules/no-redeclare
|
748
|
+
* @see https://eslint.org/docs/latest/rules/no-redeclare
|
735
749
|
*/
|
736
750
|
"no-redeclare": Linter.RuleEntry<
|
737
751
|
[
|
@@ -748,7 +762,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
748
762
|
* Rule to disallow certain properties on certain objects.
|
749
763
|
*
|
750
764
|
* @since 3.5.0
|
751
|
-
* @see https://eslint.org/docs/rules/no-restricted-properties
|
765
|
+
* @see https://eslint.org/docs/latest/rules/no-restricted-properties
|
752
766
|
*/
|
753
767
|
"no-restricted-properties": Linter.RuleEntry<
|
754
768
|
[
|
@@ -770,7 +784,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
770
784
|
* Rule to disallow assignment operators in `return` statements.
|
771
785
|
*
|
772
786
|
* @since 0.0.9
|
773
|
-
* @see https://eslint.org/docs/rules/no-return-assign
|
787
|
+
* @see https://eslint.org/docs/latest/rules/no-return-assign
|
774
788
|
*/
|
775
789
|
"no-return-assign": Linter.RuleEntry<["except-parens" | "always"]>;
|
776
790
|
|
@@ -778,15 +792,16 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
778
792
|
* Rule to disallow unnecessary `return await`.
|
779
793
|
*
|
780
794
|
* @since 3.10.0
|
781
|
-
* @
|
795
|
+
* @deprecated
|
796
|
+
* @see https://eslint.org/docs/latest/rules/no-return-await
|
782
797
|
*/
|
783
798
|
"no-return-await": Linter.RuleEntry<[]>;
|
784
799
|
|
785
800
|
/**
|
786
|
-
* Rule to disallow `javascript:`
|
801
|
+
* Rule to disallow `javascript:` URLs.
|
787
802
|
*
|
788
803
|
* @since 0.0.9
|
789
|
-
* @see https://eslint.org/docs/rules/no-script-url
|
804
|
+
* @see https://eslint.org/docs/latest/rules/no-script-url
|
790
805
|
*/
|
791
806
|
"no-script-url": Linter.RuleEntry<[]>;
|
792
807
|
|
@@ -797,7 +812,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
797
812
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
798
813
|
*
|
799
814
|
* @since 2.0.0-rc.0
|
800
|
-
* @see https://eslint.org/docs/rules/no-self-assign
|
815
|
+
* @see https://eslint.org/docs/latest/rules/no-self-assign
|
801
816
|
*/
|
802
817
|
"no-self-assign": Linter.RuleEntry<[]>;
|
803
818
|
|
@@ -805,7 +820,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
805
820
|
* Rule to disallow comparisons where both sides are exactly the same.
|
806
821
|
*
|
807
822
|
* @since 0.0.9
|
808
|
-
* @see https://eslint.org/docs/rules/no-self-compare
|
823
|
+
* @see https://eslint.org/docs/latest/rules/no-self-compare
|
809
824
|
*/
|
810
825
|
"no-self-compare": Linter.RuleEntry<[]>;
|
811
826
|
|
@@ -813,7 +828,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
813
828
|
* Rule to disallow comma operators.
|
814
829
|
*
|
815
830
|
* @since 0.5.1
|
816
|
-
* @see https://eslint.org/docs/rules/no-sequences
|
831
|
+
* @see https://eslint.org/docs/latest/rules/no-sequences
|
817
832
|
*/
|
818
833
|
"no-sequences": Linter.RuleEntry<
|
819
834
|
[
|
@@ -831,7 +846,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
831
846
|
* Rule to disallow throwing literals as exceptions.
|
832
847
|
*
|
833
848
|
* @since 0.15.0
|
834
|
-
* @see https://eslint.org/docs/rules/no-throw-literal
|
849
|
+
* @see https://eslint.org/docs/latest/rules/no-throw-literal
|
835
850
|
*/
|
836
851
|
"no-throw-literal": Linter.RuleEntry<[]>;
|
837
852
|
|
@@ -839,7 +854,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
839
854
|
* Rule to disallow unmodified loop conditions.
|
840
855
|
*
|
841
856
|
* @since 2.0.0-alpha-2
|
842
|
-
* @see https://eslint.org/docs/rules/no-unmodified-loop-condition
|
857
|
+
* @see https://eslint.org/docs/latest/rules/no-unmodified-loop-condition
|
843
858
|
*/
|
844
859
|
"no-unmodified-loop-condition": Linter.RuleEntry<[]>;
|
845
860
|
|
@@ -847,7 +862,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
847
862
|
* Rule to disallow unused expressions.
|
848
863
|
*
|
849
864
|
* @since 0.1.0
|
850
|
-
* @see https://eslint.org/docs/rules/no-unused-expressions
|
865
|
+
* @see https://eslint.org/docs/latest/rules/no-unused-expressions
|
851
866
|
*/
|
852
867
|
"no-unused-expressions": Linter.RuleEntry<
|
853
868
|
[
|
@@ -880,13 +895,12 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
880
895
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
881
896
|
*
|
882
897
|
* @since 2.0.0-rc.0
|
883
|
-
* @see https://eslint.org/docs/rules/no-unused-labels
|
898
|
+
* @see https://eslint.org/docs/latest/rules/no-unused-labels
|
884
899
|
*/
|
885
900
|
"no-unused-labels": Linter.RuleEntry<[]>;
|
886
901
|
|
887
902
|
/**
|
888
|
-
*
|
889
|
-
*
|
903
|
+
* Rule to disallow variable assignments when the value is not used.
|
890
904
|
*
|
891
905
|
* @since 9.0.0-alpha.1
|
892
906
|
* @see https://eslint.org/docs/latest/rules/no-useless-assignment
|
@@ -894,7 +908,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
894
908
|
"no-useless-assignment": Linter.RuleEntry<[]>;
|
895
909
|
|
896
910
|
/**
|
897
|
-
*
|
911
|
+
* Rule to disallow useless backreferences in regular expressions.
|
898
912
|
*
|
899
913
|
* @remarks
|
900
914
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
@@ -908,7 +922,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
908
922
|
* Rule to disallow unnecessary calls to `.call()` and `.apply()`.
|
909
923
|
*
|
910
924
|
* @since 1.0.0-rc-1
|
911
|
-
* @see https://eslint.org/docs/rules/no-useless-call
|
925
|
+
* @see https://eslint.org/docs/latest/rules/no-useless-call
|
912
926
|
*/
|
913
927
|
"no-useless-call": Linter.RuleEntry<[]>;
|
914
928
|
|
@@ -919,7 +933,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
919
933
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
920
934
|
*
|
921
935
|
* @since 5.11.0
|
922
|
-
* @see https://eslint.org/docs/rules/no-useless-catch
|
936
|
+
* @see https://eslint.org/docs/latest/rules/no-useless-catch
|
923
937
|
*/
|
924
938
|
"no-useless-catch": Linter.RuleEntry<[]>;
|
925
939
|
|
@@ -927,7 +941,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
927
941
|
* Rule to disallow unnecessary concatenation of literals or template literals.
|
928
942
|
*
|
929
943
|
* @since 1.3.0
|
930
|
-
* @see https://eslint.org/docs/rules/no-useless-concat
|
944
|
+
* @see https://eslint.org/docs/latest/rules/no-useless-concat
|
931
945
|
*/
|
932
946
|
"no-useless-concat": Linter.RuleEntry<[]>;
|
933
947
|
|
@@ -938,7 +952,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
938
952
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
939
953
|
*
|
940
954
|
* @since 2.5.0
|
941
|
-
* @see https://eslint.org/docs/rules/no-useless-escape
|
955
|
+
* @see https://eslint.org/docs/latest/rules/no-useless-escape
|
942
956
|
*/
|
943
957
|
"no-useless-escape": Linter.RuleEntry<[]>;
|
944
958
|
|
@@ -946,7 +960,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
946
960
|
* Rule to disallow redundant return statements.
|
947
961
|
*
|
948
962
|
* @since 3.9.0
|
949
|
-
* @see https://eslint.org/docs/rules/no-useless-return
|
963
|
+
* @see https://eslint.org/docs/latest/rules/no-useless-return
|
950
964
|
*/
|
951
965
|
"no-useless-return": Linter.RuleEntry<[]>;
|
952
966
|
|
@@ -954,7 +968,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
954
968
|
* Rule to disallow `void` operators.
|
955
969
|
*
|
956
970
|
* @since 0.8.0
|
957
|
-
* @see https://eslint.org/docs/rules/no-void
|
971
|
+
* @see https://eslint.org/docs/latest/rules/no-void
|
958
972
|
*/
|
959
973
|
"no-void": Linter.RuleEntry<
|
960
974
|
[
|
@@ -971,7 +985,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
971
985
|
* Rule to disallow specified warning terms in comments.
|
972
986
|
*
|
973
987
|
* @since 0.4.4
|
974
|
-
* @see https://eslint.org/docs/rules/no-warning-comments
|
988
|
+
* @see https://eslint.org/docs/latest/rules/no-warning-comments
|
975
989
|
*/
|
976
990
|
"no-warning-comments": Linter.RuleEntry<
|
977
991
|
[
|
@@ -995,7 +1009,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
995
1009
|
* Recommended by ESLint, the rule was enabled in `eslint:recommended`.
|
996
1010
|
*
|
997
1011
|
* @since 0.0.2
|
998
|
-
* @see https://eslint.org/docs/rules/no-with
|
1012
|
+
* @see https://eslint.org/docs/latest/rules/no-with
|
999
1013
|
*/
|
1000
1014
|
"no-with": Linter.RuleEntry<[]>;
|
1001
1015
|
|
@@ -1003,15 +1017,15 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1003
1017
|
* Rule to enforce using named capture group in regular expression.
|
1004
1018
|
*
|
1005
1019
|
* @since 5.15.0
|
1006
|
-
* @see https://eslint.org/docs/rules/prefer-named-capture-group
|
1020
|
+
* @see https://eslint.org/docs/latest/rules/prefer-named-capture-group
|
1007
1021
|
*/
|
1008
1022
|
"prefer-named-capture-group": Linter.RuleEntry<[]>;
|
1009
1023
|
|
1010
1024
|
/**
|
1011
|
-
*
|
1025
|
+
* Rule to disallow use of `Object.prototype.hasOwnProperty.call()` and prefer use of `Object.hasOwn()`.
|
1012
1026
|
*
|
1013
1027
|
* @since 8.5.0
|
1014
|
-
* @see https://eslint.org/docs/rules/prefer-object-has-own
|
1028
|
+
* @see https://eslint.org/docs/latest/rules/prefer-object-has-own
|
1015
1029
|
*/
|
1016
1030
|
"prefer-object-has-own": Linter.RuleEntry<[]>;
|
1017
1031
|
|
@@ -1019,7 +1033,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1019
1033
|
* Rule to require using Error objects as Promise rejection reasons.
|
1020
1034
|
*
|
1021
1035
|
* @since 3.14.0
|
1022
|
-
* @see https://eslint.org/docs/rules/prefer-promise-reject-errors
|
1036
|
+
* @see https://eslint.org/docs/latest/rules/prefer-promise-reject-errors
|
1023
1037
|
*/
|
1024
1038
|
"prefer-promise-reject-errors": Linter.RuleEntry<
|
1025
1039
|
[
|
@@ -1033,7 +1047,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1033
1047
|
>;
|
1034
1048
|
|
1035
1049
|
/**
|
1036
|
-
*
|
1050
|
+
* Rule to disallow use of the `RegExp` constructor in favor of regular expression literals.
|
1037
1051
|
*
|
1038
1052
|
* @since 6.4.0
|
1039
1053
|
* @see https://eslint.org/docs/latest/rules/prefer-regex-literals
|
@@ -1053,7 +1067,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1053
1067
|
* Rule to enforce the consistent use of the radix argument when using `parseInt()`.
|
1054
1068
|
*
|
1055
1069
|
* @since 0.0.7
|
1056
|
-
* @see https://eslint.org/docs/rules/radix
|
1070
|
+
* @see https://eslint.org/docs/latest/rules/radix
|
1057
1071
|
*/
|
1058
1072
|
radix: Linter.RuleEntry<["always" | "as-needed"]>;
|
1059
1073
|
|
@@ -1061,15 +1075,15 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1061
1075
|
* Rule to disallow async functions which have no `await` expression.
|
1062
1076
|
*
|
1063
1077
|
* @since 3.11.0
|
1064
|
-
* @see https://eslint.org/docs/rules/require-await
|
1078
|
+
* @see https://eslint.org/docs/latest/rules/require-await
|
1065
1079
|
*/
|
1066
1080
|
"require-await": Linter.RuleEntry<[]>;
|
1067
1081
|
|
1068
1082
|
/**
|
1069
|
-
*
|
1083
|
+
* Rule to enforce the use of `u` or `v` flag on regular expressions.
|
1070
1084
|
*
|
1071
1085
|
* @since 5.3.0
|
1072
|
-
* @see https://eslint.org/docs/rules/require-unicode-regexp
|
1086
|
+
* @see https://eslint.org/docs/latest/rules/require-unicode-regexp
|
1073
1087
|
*/
|
1074
1088
|
"require-unicode-regexp": Linter.RuleEntry<
|
1075
1089
|
[
|
@@ -1086,7 +1100,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1086
1100
|
* Rule to require `var` declarations be placed at the top of their containing scope.
|
1087
1101
|
*
|
1088
1102
|
* @since 0.8.0
|
1089
|
-
* @see https://eslint.org/docs/rules/vars-on-top
|
1103
|
+
* @see https://eslint.org/docs/latest/rules/vars-on-top
|
1090
1104
|
*/
|
1091
1105
|
"vars-on-top": Linter.RuleEntry<[]>;
|
1092
1106
|
|
@@ -1095,7 +1109,7 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1095
1109
|
*
|
1096
1110
|
* @since 0.0.9
|
1097
1111
|
* @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/wrap-iife) in `@stylistic/eslint-plugin-js`.
|
1098
|
-
* @see https://eslint.org/docs/rules/wrap-iife
|
1112
|
+
* @see https://eslint.org/docs/latest/rules/wrap-iife
|
1099
1113
|
*/
|
1100
1114
|
"wrap-iife": Linter.RuleEntry<
|
1101
1115
|
[
|
@@ -1110,10 +1124,10 @@ export interface BestPractices extends Linter.RulesRecord {
|
|
1110
1124
|
>;
|
1111
1125
|
|
1112
1126
|
/**
|
1113
|
-
* Rule to require or disallow
|
1127
|
+
* Rule to require or disallow "Yoda" conditions.
|
1114
1128
|
*
|
1115
1129
|
* @since 0.7.1
|
1116
|
-
* @see https://eslint.org/docs/rules/yoda
|
1130
|
+
* @see https://eslint.org/docs/latest/rules/yoda
|
1117
1131
|
*/
|
1118
1132
|
yoda:
|
1119
1133
|
| Linter.RuleEntry<
|