immosquare-cleaner 0.1.62 → 0.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/immosquare-cleaner/version.rb +1 -1
- data/lib/immosquare-cleaner.rb +48 -18
- data/linters/erb-lint-3.4.1.yml +14 -0
- data/linters/rubocop-3.4.1.yml +2 -0
- data/node_modules/@eslint/config-array/README.md +3 -3
- data/node_modules/@eslint/config-array/dist/cjs/index.d.cts +1 -1
- data/node_modules/@eslint/config-array/package.json +3 -3
- data/node_modules/@eslint/core/README.md +3 -3
- data/node_modules/@eslint/core/dist/cjs/types.d.cts +102 -23
- data/node_modules/@eslint/core/dist/esm/types.d.ts +102 -23
- data/node_modules/@eslint/core/package.json +1 -1
- data/node_modules/@eslint/eslintrc/conf/environments.js +1 -1
- data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +21 -12
- data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -1
- data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +59 -34
- data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
- data/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
- data/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +6 -4
- data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +2 -0
- data/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +5 -5
- data/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +2 -2
- data/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +6 -5
- data/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +7 -5
- data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +13 -6
- data/node_modules/@eslint/eslintrc/lib/flat-compat.js +4 -3
- data/node_modules/@eslint/eslintrc/lib/shared/ajv.js +1 -1
- data/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +2 -2
- data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +17 -8
- data/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +1 -1
- data/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +2 -1
- data/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
- data/node_modules/@eslint/eslintrc/package.json +11 -9
- data/node_modules/@eslint/eslintrc/universal.js +2 -1
- data/node_modules/@eslint/js/package.json +1 -1
- data/node_modules/@eslint/js/src/index.js +2 -2
- data/node_modules/@eslint/object-schema/README.md +3 -3
- data/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +2 -2
- data/node_modules/@eslint/object-schema/package.json +2 -2
- data/node_modules/@eslint/plugin-kit/README.md +3 -3
- data/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +2 -2
- data/node_modules/@eslint/plugin-kit/package.json +9 -8
- data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +7 -7
- data/node_modules/@humanwhocodes/retry/dist/retrier.js +7 -7
- data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -1
- data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +7 -7
- data/node_modules/@humanwhocodes/retry/package.json +1 -1
- data/node_modules/eslint/README.md +36 -16
- data/node_modules/eslint/conf/rule-type-list.json +82 -18
- data/node_modules/eslint/lib/cli.js +34 -4
- data/node_modules/eslint/lib/config/config-loader.js +43 -26
- data/node_modules/eslint/lib/config/config.js +6 -1
- data/node_modules/eslint/lib/config/flat-config-schema.js +16 -1
- data/node_modules/eslint/lib/config/rule-validator.js +12 -2
- data/node_modules/eslint/lib/eslint/eslint.js +10 -7
- data/node_modules/eslint/lib/linter/linter.js +98 -8
- data/node_modules/eslint/lib/options.js +19 -0
- data/node_modules/eslint/lib/rules/array-bracket-newline.js +20 -2
- data/node_modules/eslint/lib/rules/array-bracket-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/array-element-newline.js +20 -2
- data/node_modules/eslint/lib/rules/arrow-body-style.js +2 -1
- data/node_modules/eslint/lib/rules/arrow-parens.js +20 -2
- data/node_modules/eslint/lib/rules/arrow-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/block-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/brace-style.js +20 -2
- data/node_modules/eslint/lib/rules/callback-return.js +19 -3
- data/node_modules/eslint/lib/rules/camelcase.js +1 -0
- data/node_modules/eslint/lib/rules/capitalized-comments.js +1 -0
- data/node_modules/eslint/lib/rules/comma-dangle.js +20 -2
- data/node_modules/eslint/lib/rules/comma-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/comma-style.js +20 -2
- data/node_modules/eslint/lib/rules/computed-property-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/consistent-this.js +10 -0
- data/node_modules/eslint/lib/rules/curly.js +1 -0
- data/node_modules/eslint/lib/rules/default-case-last.js +2 -2
- data/node_modules/eslint/lib/rules/default-param-last.js +1 -0
- data/node_modules/eslint/lib/rules/dot-location.js +20 -2
- data/node_modules/eslint/lib/rules/dot-notation.js +1 -0
- data/node_modules/eslint/lib/rules/eol-last.js +20 -2
- data/node_modules/eslint/lib/rules/func-call-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/func-name-matching.js +1 -0
- data/node_modules/eslint/lib/rules/func-style.js +1 -0
- data/node_modules/eslint/lib/rules/function-call-argument-newline.js +20 -2
- data/node_modules/eslint/lib/rules/function-paren-newline.js +20 -2
- data/node_modules/eslint/lib/rules/generator-star-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/global-require.js +19 -3
- data/node_modules/eslint/lib/rules/handle-callback-err.js +19 -3
- data/node_modules/eslint/lib/rules/id-blacklist.js +14 -2
- data/node_modules/eslint/lib/rules/id-denylist.js +1 -0
- data/node_modules/eslint/lib/rules/id-length.js +1 -0
- data/node_modules/eslint/lib/rules/id-match.js +1 -0
- data/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +20 -2
- data/node_modules/eslint/lib/rules/indent-legacy.js +19 -3
- data/node_modules/eslint/lib/rules/indent.js +20 -2
- data/node_modules/eslint/lib/rules/init-declarations.js +1 -0
- data/node_modules/eslint/lib/rules/jsx-quotes.js +20 -2
- data/node_modules/eslint/lib/rules/key-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/keyword-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/line-comment-position.js +20 -2
- data/node_modules/eslint/lib/rules/linebreak-style.js +20 -2
- data/node_modules/eslint/lib/rules/lines-around-comment.js +20 -2
- data/node_modules/eslint/lib/rules/lines-around-directive.js +20 -2
- data/node_modules/eslint/lib/rules/lines-between-class-members.js +20 -2
- data/node_modules/eslint/lib/rules/logical-assignment-operators.js +1 -0
- data/node_modules/eslint/lib/rules/max-len.js +20 -2
- data/node_modules/eslint/lib/rules/max-statements-per-line.js +20 -2
- data/node_modules/eslint/lib/rules/multiline-comment-style.js +20 -2
- data/node_modules/eslint/lib/rules/multiline-ternary.js +20 -2
- data/node_modules/eslint/lib/rules/new-parens.js +20 -2
- data/node_modules/eslint/lib/rules/newline-after-var.js +20 -3
- data/node_modules/eslint/lib/rules/newline-before-return.js +20 -2
- data/node_modules/eslint/lib/rules/newline-per-chained-call.js +20 -2
- data/node_modules/eslint/lib/rules/no-buffer-constructor.js +19 -3
- data/node_modules/eslint/lib/rules/no-catch-shadow.js +14 -3
- data/node_modules/eslint/lib/rules/no-confusing-arrow.js +20 -2
- data/node_modules/eslint/lib/rules/no-console.js +3 -1
- data/node_modules/eslint/lib/rules/no-continue.js +1 -0
- data/node_modules/eslint/lib/rules/no-div-regex.js +1 -0
- data/node_modules/eslint/lib/rules/no-else-return.js +1 -0
- data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +1 -0
- data/node_modules/eslint/lib/rules/no-extra-label.js +1 -0
- data/node_modules/eslint/lib/rules/no-extra-parens.js +20 -2
- data/node_modules/eslint/lib/rules/no-extra-semi.js +20 -2
- data/node_modules/eslint/lib/rules/no-floating-decimal.js +20 -2
- data/node_modules/eslint/lib/rules/no-implicit-coercion.js +1 -0
- data/node_modules/eslint/lib/rules/no-inline-comments.js +1 -0
- data/node_modules/eslint/lib/rules/no-label-var.js +1 -0
- data/node_modules/eslint/lib/rules/no-labels.js +1 -0
- data/node_modules/eslint/lib/rules/no-lonely-if.js +1 -0
- data/node_modules/eslint/lib/rules/no-magic-numbers.js +1 -0
- data/node_modules/eslint/lib/rules/no-mixed-operators.js +20 -2
- data/node_modules/eslint/lib/rules/no-mixed-requires.js +19 -3
- data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +20 -2
- data/node_modules/eslint/lib/rules/no-multi-spaces.js +20 -2
- data/node_modules/eslint/lib/rules/no-multi-str.js +1 -0
- data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +20 -2
- data/node_modules/eslint/lib/rules/no-native-reassign.js +14 -3
- data/node_modules/eslint/lib/rules/no-negated-condition.js +1 -0
- data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +14 -3
- data/node_modules/eslint/lib/rules/no-nested-ternary.js +1 -0
- data/node_modules/eslint/lib/rules/no-new-object.js +14 -5
- data/node_modules/eslint/lib/rules/no-new-require.js +19 -3
- data/node_modules/eslint/lib/rules/no-new-symbol.js +14 -5
- data/node_modules/eslint/lib/rules/no-path-concat.js +19 -3
- data/node_modules/eslint/lib/rules/no-plusplus.js +1 -0
- data/node_modules/eslint/lib/rules/no-process-env.js +19 -3
- data/node_modules/eslint/lib/rules/no-process-exit.js +19 -3
- data/node_modules/eslint/lib/rules/no-restricted-modules.js +19 -3
- data/node_modules/eslint/lib/rules/no-return-await.js +7 -3
- data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +17 -7
- data/node_modules/eslint/lib/rules/no-spaced-func.js +20 -3
- data/node_modules/eslint/lib/rules/no-sync.js +19 -3
- data/node_modules/eslint/lib/rules/no-tabs.js +20 -2
- data/node_modules/eslint/lib/rules/no-ternary.js +1 -0
- data/node_modules/eslint/lib/rules/no-trailing-spaces.js +20 -2
- data/node_modules/eslint/lib/rules/no-undef-init.js +1 -0
- data/node_modules/eslint/lib/rules/no-undefined.js +1 -0
- data/node_modules/eslint/lib/rules/no-underscore-dangle.js +1 -0
- data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +1 -0
- data/node_modules/eslint/lib/rules/no-useless-computed-key.js +1 -0
- data/node_modules/eslint/lib/rules/no-useless-concat.js +1 -0
- data/node_modules/eslint/lib/rules/no-void.js +1 -0
- data/node_modules/eslint/lib/rules/no-warning-comments.js +1 -0
- data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +20 -2
- data/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +20 -2
- data/node_modules/eslint/lib/rules/object-curly-newline.js +20 -2
- data/node_modules/eslint/lib/rules/object-curly-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/object-property-newline.js +20 -2
- data/node_modules/eslint/lib/rules/object-shorthand.js +1 -0
- data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +20 -2
- data/node_modules/eslint/lib/rules/one-var.js +1 -0
- data/node_modules/eslint/lib/rules/operator-assignment.js +1 -0
- data/node_modules/eslint/lib/rules/operator-linebreak.js +20 -2
- data/node_modules/eslint/lib/rules/padded-blocks.js +20 -2
- data/node_modules/eslint/lib/rules/padding-line-between-statements.js +20 -2
- data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-destructuring.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-numeric-literals.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-object-spread.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-reflect.js +7 -3
- data/node_modules/eslint/lib/rules/prefer-spread.js +1 -0
- data/node_modules/eslint/lib/rules/prefer-template.js +1 -0
- data/node_modules/eslint/lib/rules/quote-props.js +20 -2
- data/node_modules/eslint/lib/rules/quotes.js +20 -2
- data/node_modules/eslint/lib/rules/rest-spread-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/semi-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/semi-style.js +20 -2
- data/node_modules/eslint/lib/rules/semi.js +20 -2
- data/node_modules/eslint/lib/rules/sort-imports.js +3 -2
- data/node_modules/eslint/lib/rules/sort-keys.js +1 -0
- data/node_modules/eslint/lib/rules/sort-vars.js +1 -0
- data/node_modules/eslint/lib/rules/space-before-blocks.js +20 -2
- data/node_modules/eslint/lib/rules/space-before-function-paren.js +20 -2
- data/node_modules/eslint/lib/rules/space-in-parens.js +20 -2
- data/node_modules/eslint/lib/rules/space-infix-ops.js +20 -2
- data/node_modules/eslint/lib/rules/space-unary-ops.js +20 -2
- data/node_modules/eslint/lib/rules/spaced-comment.js +20 -2
- data/node_modules/eslint/lib/rules/switch-colon-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/template-curly-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/template-tag-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/vars-on-top.js +1 -0
- data/node_modules/eslint/lib/rules/wrap-iife.js +20 -2
- data/node_modules/eslint/lib/rules/wrap-regex.js +20 -2
- data/node_modules/eslint/lib/rules/yield-star-spacing.js +20 -2
- data/node_modules/eslint/lib/rules/yoda.js +1 -0
- data/node_modules/eslint/lib/shared/flags.js +44 -6
- data/node_modules/eslint/lib/shared/option-utils.js +56 -0
- data/node_modules/eslint/lib/shared/types.js +19 -1
- data/node_modules/eslint/lib/types/index.d.ts +82 -64
- data/node_modules/eslint/lib/types/rules/best-practices.d.ts +109 -95
- data/node_modules/eslint/lib/types/rules/deprecated.d.ts +32 -15
- data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +39 -39
- data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +23 -12
- data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +86 -54
- data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +1 -1
- data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +105 -99
- data/node_modules/eslint/lib/types/rules/variables.d.ts +12 -12
- data/node_modules/eslint/messages/config-plugin-missing.js +14 -0
- data/node_modules/eslint/messages/config-serialize-function.js +28 -0
- data/node_modules/eslint/messages/eslintrc-plugins.js +6 -2
- data/node_modules/eslint/package.json +11 -9
- data/node_modules/eslint-plugin-sonarjs/README.md +2 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S100/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S101/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S104/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S105/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1066/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1067/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1110/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1119/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1121/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1125/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1126/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1126/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1126/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1128/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1134/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1135/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1154/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S117/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1172/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1192/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1219/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1226/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S124/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S125/rule.js +15 -35
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S126/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1264/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S128/rule.js +2 -5
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1291/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1301/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1313/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S134/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S135/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S138/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1439/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1444/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1451/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1472/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1479/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1481/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1488/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1515/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1523/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1526/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1527/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1528/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1528/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1528/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1529/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1530/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1533/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1535/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1541/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1607/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1751/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1764/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1821/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1848/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1854/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1862/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1871/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1874/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1940/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S1994/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2004/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2068/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2077/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2092/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2123/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2137/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2138/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2187/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2201/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2208/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2234/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2245/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2251/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2255/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2259/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2301/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2310/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2392/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2424/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2428/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2486/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2589/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2598/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2612/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2639/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2681/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2692/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2699/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2699/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2699/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2703/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2737/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2755/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2757/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2817/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2819/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2870/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2871/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2970/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2990/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S2999/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3001/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3003/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3317/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3330/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3358/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3402/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3403/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3415/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3499/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3500/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3513/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3514/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3516/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3524/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3525/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3531/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3533/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3579/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3616/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3626/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3686/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3699/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3723/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3735/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3757/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3758/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3760/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/generated-meta.js +2 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3776/rule.js +3 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3782/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3785/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3796/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3798/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3798/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3798/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3800/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3801/rule.js +21 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S3827/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3827/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3827/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3854/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3923/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3972/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3973/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3981/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S3984/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4030/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4036/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4043/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4123/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4139/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4143/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4144/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4158/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4165/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4322/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4323/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4324/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4328/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4335/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.aws.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.lib.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4426/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4502/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4507/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4524/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4619/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4621/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4622/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4623/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4624/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4634/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4721/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4782/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4784/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4787/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4790/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4798/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4817/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4818/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4822/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4823/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4829/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S4830/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5042/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5122/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5148/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5247/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5256/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5257/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5260/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5264/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.aws.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.lib.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5443/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5527/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5542/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5547/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5604/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5659/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5689/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5691/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5693/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5725/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5728/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5730/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5732/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5734/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5736/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5739/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/generated-meta.js +3 -3
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5742/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5743/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5757/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5759/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5842/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5843/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5850/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5852/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5856/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5860/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5863/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5867/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5868/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5869/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5876/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5958/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S5973/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6019/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6035/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6079/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6080/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6092/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6245/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6249/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6252/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6265/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6268/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6270/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6275/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6281/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6299/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6302/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6303/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6304/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6308/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6317/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6319/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6321/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6323/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6324/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6326/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6327/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6328/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6329/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6330/rule.js +2 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6331/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6332/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6333/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6351/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6353/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6397/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/generated-meta.js +21 -2
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6418/rule.js +2 -21
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6426/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6439/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6442/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6443/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6486/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6564/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6594/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6627/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6759/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6958/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6958/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6958/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S6959/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S7059/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S881/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S888/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/generated-meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/meta.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/S930/rule.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/external/core.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/accessibility.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/aws/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/collection.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/interceptor.js +0 -4
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/files.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-files.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-up.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/globals.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/package-json.js +30 -9
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/Detector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/CamelCaseDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/ContainsDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/EndWithDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/KeywordsDetector.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/index.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/helpers/validate-version.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/cjs/plugin-rules.js +1 -1
- data/node_modules/eslint-plugin-sonarjs/package.json +2 -8
- data/node_modules/eslint-plugin-sonarjs/types/S3723/rule.d.ts +0 -1
- data/node_modules/eslint-plugin-sonarjs/types/S3776/generated-meta.d.ts +8 -2
- data/node_modules/eslint-plugin-sonarjs/types/S6418/generated-meta.d.ts +17 -0
- data/node_modules/eslint-plugin-sonarjs/types/helpers/package-json.d.ts +17 -1
- data/node_modules/eslint-plugin-sonarjs/types/plugin-rules.d.ts +0 -1
- data/node_modules/eslint-plugin-sonarjs/types/plugin.d.ts +4 -9
- data/node_modules/jscodeshift/CHANGELOG.md +63 -29
- data/node_modules/jscodeshift/README.md +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.input.js +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.js +11 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.output.js +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.input.js +1 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.js +7 -0
- data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.output.js +1 -0
- data/node_modules/jscodeshift/dist/testUtils.js +30 -6
- data/node_modules/jscodeshift/package.json +4 -2
- data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.input.js +1 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.js +11 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.output.js +1 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.input.js +1 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.js +7 -0
- data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.output.js +1 -0
- data/node_modules/jscodeshift/src/testUtils.js +30 -6
- data/node_modules/jscodeshift/website/package.json +1 -1
- data/node_modules/prettier/LICENSE +0 -4373
- data/node_modules/prettier/README.md +7 -8
- data/node_modules/prettier/THIRD-PARTY-NOTICES.md +4416 -0
- data/node_modules/prettier/doc.js +237 -213
- data/node_modules/prettier/doc.mjs +237 -213
- data/node_modules/prettier/index.cjs +9 -1
- data/node_modules/prettier/index.d.ts +13 -3
- data/node_modules/prettier/index.mjs +619 -439
- data/node_modules/prettier/internal/cli.mjs +1923 -945
- data/node_modules/prettier/package.json +2 -1
- data/node_modules/prettier/plugins/acorn.js +1 -1
- data/node_modules/prettier/plugins/acorn.mjs +1 -1
- data/node_modules/prettier/plugins/angular.js +2 -2
- data/node_modules/prettier/plugins/angular.mjs +2 -2
- data/node_modules/prettier/plugins/babel.js +8 -8
- data/node_modules/prettier/plugins/babel.mjs +8 -8
- data/node_modules/prettier/plugins/estree.js +27 -27
- data/node_modules/prettier/plugins/estree.mjs +27 -27
- data/node_modules/prettier/plugins/flow.js +15 -15
- data/node_modules/prettier/plugins/flow.mjs +15 -15
- data/node_modules/prettier/plugins/glimmer.js +21 -21
- data/node_modules/prettier/plugins/glimmer.mjs +22 -22
- data/node_modules/prettier/plugins/graphql.js +16 -16
- data/node_modules/prettier/plugins/graphql.mjs +16 -16
- data/node_modules/prettier/plugins/html.js +17 -17
- data/node_modules/prettier/plugins/html.mjs +17 -17
- data/node_modules/prettier/plugins/markdown.js +42 -42
- data/node_modules/prettier/plugins/markdown.mjs +42 -42
- data/node_modules/prettier/plugins/meriyah.js +2 -2
- data/node_modules/prettier/plugins/meriyah.mjs +2 -2
- data/node_modules/prettier/plugins/postcss.js +26 -26
- data/node_modules/prettier/plugins/postcss.mjs +26 -26
- data/node_modules/prettier/plugins/typescript.js +10 -10
- data/node_modules/prettier/plugins/typescript.mjs +11 -11
- data/node_modules/prettier/plugins/yaml.js +65 -65
- data/node_modules/prettier/plugins/yaml.mjs +65 -65
- data/node_modules/prettier/standalone.d.ts +1 -1
- data/node_modules/prettier/standalone.js +24 -24
- data/node_modules/prettier/standalone.mjs +24 -24
- data/node_modules/semver/README.md +14 -4
- data/node_modules/semver/bin/semver.js +2 -1
- data/node_modules/semver/classes/semver.js +22 -6
- data/node_modules/semver/functions/diff.js +5 -12
- data/node_modules/semver/internal/re.js +2 -0
- data/node_modules/semver/package.json +8 -7
- data/package.json +8 -9
- metadata +44 -26
- data/node_modules/.bin/ncu +0 -1
- data/node_modules/.bin/npm-check-updates +0 -1
- data/node_modules/npm-check-updates/LICENSE +0 -13
- data/node_modules/npm-check-updates/README.md +0 -839
- data/node_modules/npm-check-updates/build/cli.d.ts +0 -1
- data/node_modules/npm-check-updates/build/cli.js +0 -29
- data/node_modules/npm-check-updates/build/cli.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-B5lQw6vg.js +0 -6
- data/node_modules/npm-check-updates/build/index-B5lQw6vg.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-BnIU43YD.js +0 -2
- data/node_modules/npm-check-updates/build/index-BnIU43YD.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-CUgqEqMa.js +0 -2
- data/node_modules/npm-check-updates/build/index-CUgqEqMa.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js +0 -58
- data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js.map +0 -1
- data/node_modules/npm-check-updates/build/index-_DliZFxU.js +0 -5
- data/node_modules/npm-check-updates/build/index-_DliZFxU.js.map +0 -1
- data/node_modules/npm-check-updates/build/index.d.ts +0 -211
- data/node_modules/npm-check-updates/build/index.js +0 -551
- data/node_modules/npm-check-updates/build/index.js.map +0 -1
- data/node_modules/npm-check-updates/package.json +0 -179
- /data/node_modules/@eslint/plugin-kit/dist/cjs/{types.ts → types.cts} +0 -0
@@ -1,839 +0,0 @@
|
|
1
|
-
# npm-check-updates
|
2
|
-
|
3
|
-
[](https://www.npmjs.com/package/npm-check-updates)
|
4
|
-
[](https://github.com/raineorshine/npm-check-updates/actions?query=workflow%3ATests+branch%3Amain)
|
5
|
-
|
6
|
-
**npm-check-updates upgrades your package.json dependencies to the _latest_ versions, ignoring specified versions.**
|
7
|
-
|
8
|
-
- maintains existing semantic versioning _policies_, i.e. `"react": "^17.0.2"` to `"react": "^18.3.1"`.
|
9
|
-
- _only_ modifies package.json file. Run `npm install` to update your installed packages and package-lock.json.
|
10
|
-
- sensible defaults, but highly customizable
|
11
|
-
- compatible with npm, yarn, pnpm, deno, and bun
|
12
|
-
- CLI and module usage
|
13
|
-
|
14
|
-
<img width="500" alt="example output" src="https://github.com/user-attachments/assets/4808618b-ac20-4fc0-92e0-a777de70a2b6">
|
15
|
-
|
16
|
-
$${\color{red}Red}$$ major upgrade (and all [major version zero](https://semver.org/#spec-item-4))<br/>
|
17
|
-
$${\color{cyan}Cyan}$$ minor upgrade<br/>
|
18
|
-
$${\color{green}Green}$$ patch upgrade<br/>
|
19
|
-
|
20
|
-
## Installation
|
21
|
-
|
22
|
-
Install globally to use `npm-check-updates` or the shorter `ncu`:
|
23
|
-
|
24
|
-
```sh
|
25
|
-
npm install -g npm-check-updates
|
26
|
-
```
|
27
|
-
|
28
|
-
Or run with [npx](https://docs.npmjs.com/cli/v7/commands/npx) (only the long form is supported):
|
29
|
-
|
30
|
-
```sh
|
31
|
-
npx npm-check-updates
|
32
|
-
```
|
33
|
-
|
34
|
-
## Usage
|
35
|
-
|
36
|
-
Check the latest versions of all project dependencies:
|
37
|
-
|
38
|
-
```sh
|
39
|
-
$ ncu
|
40
|
-
Checking package.json
|
41
|
-
[====================] 5/5 100%
|
42
|
-
|
43
|
-
eslint 7.32.0 → 8.0.0
|
44
|
-
prettier ^2.7.1 → ^3.0.0
|
45
|
-
svelte ^3.48.0 → ^3.51.0
|
46
|
-
typescript >3.0.0 → >4.0.0
|
47
|
-
untildify <4.0.0 → ^4.0.0
|
48
|
-
webpack 4.x → 5.x
|
49
|
-
|
50
|
-
Run ncu -u to upgrade package.json
|
51
|
-
```
|
52
|
-
|
53
|
-
Upgrade a project's package file:
|
54
|
-
|
55
|
-
> **Make sure your package file is in version control and all changes have been committed. This _will_ overwrite your package file.**
|
56
|
-
|
57
|
-
```sh
|
58
|
-
$ ncu -u
|
59
|
-
Upgrading package.json
|
60
|
-
[====================] 1/1 100%
|
61
|
-
|
62
|
-
express 4.12.x → 4.13.x
|
63
|
-
|
64
|
-
Run npm install to install new versions.
|
65
|
-
|
66
|
-
$ npm install # update installed packages and package-lock.json
|
67
|
-
```
|
68
|
-
|
69
|
-
Check global packages:
|
70
|
-
|
71
|
-
```sh
|
72
|
-
ncu -g
|
73
|
-
```
|
74
|
-
|
75
|
-
## Interactive Mode
|
76
|
-
|
77
|
-
Choose which packages to update in interactive mode:
|
78
|
-
|
79
|
-
```sh
|
80
|
-
ncu --interactive
|
81
|
-
ncu -i
|
82
|
-
```
|
83
|
-
|
84
|
-

|
85
|
-
|
86
|
-
Combine with `--format group` for a truly _luxe_ experience:
|
87
|
-
|
88
|
-

|
89
|
-
|
90
|
-
## Filter packages
|
91
|
-
|
92
|
-
Filter packages using the `--filter` option or adding additional cli arguments:
|
93
|
-
|
94
|
-
```sh
|
95
|
-
# upgrade only mocha
|
96
|
-
ncu mocha
|
97
|
-
ncu -f mocha
|
98
|
-
ncu --filter mocha
|
99
|
-
|
100
|
-
# upgrade only chalk, mocha, and react
|
101
|
-
ncu chalk mocha react
|
102
|
-
ncu chalk, mocha, react
|
103
|
-
ncu -f "chalk mocha react"
|
104
|
-
```
|
105
|
-
|
106
|
-
Filter with wildcards or regex:
|
107
|
-
|
108
|
-
```sh
|
109
|
-
# upgrade packages that start with "react-"
|
110
|
-
ncu react-*
|
111
|
-
ncu "/^react-.*$/"
|
112
|
-
```
|
113
|
-
|
114
|
-
Exclude specific packages with the `--reject` option or prefixing a filter with `!`. Supports strings, wildcards, globs, comma-or-space-delimited lists, and regex:
|
115
|
-
|
116
|
-
```sh
|
117
|
-
# upgrade everything except nodemon
|
118
|
-
ncu \!nodemon
|
119
|
-
ncu -x nodemon
|
120
|
-
ncu --reject nodemon
|
121
|
-
|
122
|
-
# upgrade packages that do not start with "react-".
|
123
|
-
ncu \!react-*
|
124
|
-
ncu '/^(?!react-).*$/' # mac/linux
|
125
|
-
ncu "/^(?!react-).*$/" # windows
|
126
|
-
```
|
127
|
-
|
128
|
-
Advanced filters: [filter](https://github.com/raineorshine/npm-check-updates#filter), [filterResults](https://github.com/raineorshine/npm-check-updates#filterresults), [filterVersion](https://github.com/raineorshine/npm-check-updates#filterversion)
|
129
|
-
|
130
|
-
## How dependency updates are determined
|
131
|
-
|
132
|
-
- Direct dependencies are updated to the latest stable version:
|
133
|
-
- `2.0.1` → `2.2.0`
|
134
|
-
- `1.2` → `1.3`
|
135
|
-
- `0.1.0` → `1.0.1`
|
136
|
-
- Range operators are preserved and the version is updated:
|
137
|
-
- `^1.2.0` → `^2.0.0`
|
138
|
-
- `1.x` → `2.x`
|
139
|
-
- `>0.2.0` → `>0.3.0`
|
140
|
-
- "Less than" is replaced with a wildcard:
|
141
|
-
- `<2.0.0` → `^3.0.0`
|
142
|
-
- `1.0.0 < 2.0.0` → `^3.0.0`
|
143
|
-
- "Any version" is preserved:
|
144
|
-
- `*` → `*`
|
145
|
-
- Prerelease versions are ignored by default.
|
146
|
-
- Use `--pre` to include prerelease versions (e.g. `alpha`, `beta`, `build1235`)
|
147
|
-
- Choose what level to upgrade to:
|
148
|
-
- With `--target semver`, update according to your specified [semver](https://semver.org/) version ranges:
|
149
|
-
- `^1.1.0` → `^1.9.99`
|
150
|
-
- With `--target minor`, strictly update the patch and minor versions (including major version zero):
|
151
|
-
- `0.1.0` → `0.2.1`
|
152
|
-
- With `--target patch`, strictly update the patch version (including major version zero):
|
153
|
-
- `0.1.0` → `0.1.2`
|
154
|
-
- With `--target @next`, update to the version published on the `next` tag:
|
155
|
-
- `0.1.0` -> `0.1.1-next.1`
|
156
|
-
|
157
|
-
## Options
|
158
|
-
|
159
|
-
Options are merged with the following precedence:
|
160
|
-
|
161
|
-
1. Command line options
|
162
|
-
2. Local [Config File](#config-file)
|
163
|
-
3. Project Config File
|
164
|
-
4. User Config File
|
165
|
-
|
166
|
-
Options that take no arguments can be negated by prefixing them with `--no-`, e.g. `--no-peer`.
|
167
|
-
|
168
|
-
<!-- BEGIN Options -->
|
169
|
-
<!-- Do not edit this section by hand. It is auto-generated in build-options.ts. Run "npm run build" or "npm run build:options" to build. -->
|
170
|
-
|
171
|
-
<table>
|
172
|
-
<tr>
|
173
|
-
<td>--cache</td>
|
174
|
-
<td>Cache versions to a local cache file. Default <code>--cacheFile</code> is ~/.ncu-cache.json and default <code>--cacheExpiration</code> is 10 minutes.</td>
|
175
|
-
</tr>
|
176
|
-
<tr>
|
177
|
-
<td>--cacheClear</td>
|
178
|
-
<td>Clear the default cache, or the cache file specified by <code>--cacheFile</code>.</td>
|
179
|
-
</tr>
|
180
|
-
<tr>
|
181
|
-
<td>--cacheExpiration <min></td>
|
182
|
-
<td>Cache expiration in minutes. Only works with <code>--cache</code>. (default: 10)</td>
|
183
|
-
</tr>
|
184
|
-
<tr>
|
185
|
-
<td>--cacheFile <path></td>
|
186
|
-
<td>Filepath for the cache file. Only works with <code>--cache</code>. (default: "~/.ncu-cache.json")</td>
|
187
|
-
</tr>
|
188
|
-
<tr>
|
189
|
-
<td>--color</td>
|
190
|
-
<td>Force color in terminal.</td>
|
191
|
-
</tr>
|
192
|
-
<tr>
|
193
|
-
<td>--concurrency <n></td>
|
194
|
-
<td>Max number of concurrent HTTP requests to registry. (default: 8)</td>
|
195
|
-
</tr>
|
196
|
-
<tr>
|
197
|
-
<td>--configFileName <s></td>
|
198
|
-
<td>Config file name. (default: .ncurc.{json,yml,js,cjs})</td>
|
199
|
-
</tr>
|
200
|
-
<tr>
|
201
|
-
<td>--configFilePath <path></td>
|
202
|
-
<td>Directory of .ncurc config file. (default: directory of <code>packageFile</code>)</td>
|
203
|
-
</tr>
|
204
|
-
<tr>
|
205
|
-
<td>--cwd <path></td>
|
206
|
-
<td>Working directory in which npm will be executed.</td>
|
207
|
-
</tr>
|
208
|
-
<tr>
|
209
|
-
<td>--deep</td>
|
210
|
-
<td>Run recursively in current working directory. Alias of (<code>--packageFile '**/package.json'<code>).</td>
|
211
|
-
</tr>
|
212
|
-
<tr>
|
213
|
-
<td>--dep <value></td>
|
214
|
-
<td>Check one or more sections of dependencies only: dev, optional, peer, prod, or packageManager (comma-delimited). (default: ["prod","dev","optional","packageManager"])</td>
|
215
|
-
</tr>
|
216
|
-
<tr>
|
217
|
-
<td>--deprecated</td>
|
218
|
-
<td>Include deprecated packages. Use <code>--no-deprecated</code> to exclude deprecated packages (uses more bandwidth). (default: true)</td>
|
219
|
-
</tr>
|
220
|
-
<tr>
|
221
|
-
<td><a href="#doctor">-d, --doctor</a></td>
|
222
|
-
<td>Iteratively installs upgrades and runs tests to identify breaking upgrades. Requires <code>-u</code> to execute.</td>
|
223
|
-
</tr>
|
224
|
-
<tr>
|
225
|
-
<td>--doctorInstall <command></td>
|
226
|
-
<td>Specifies the install script to use in doctor mode. (default: <code>npm install</code> or the equivalent for your package manager)</td>
|
227
|
-
</tr>
|
228
|
-
<tr>
|
229
|
-
<td>--doctorTest <command></td>
|
230
|
-
<td>Specifies the test script to use in doctor mode. (default: <code>npm test</code>)</td>
|
231
|
-
</tr>
|
232
|
-
<tr>
|
233
|
-
<td>--enginesNode</td>
|
234
|
-
<td>Include only packages that satisfy engines.node as specified in the package file.</td>
|
235
|
-
</tr>
|
236
|
-
<tr>
|
237
|
-
<td>-e, --errorLevel <n></td>
|
238
|
-
<td>Set the error level. 1: exits with error code 0 if no errors occur. 2: exits with error code 0 if no packages need updating (useful for continuous integration). (default: 1)</td>
|
239
|
-
</tr>
|
240
|
-
<tr>
|
241
|
-
<td><a href="#filter">-f, --filter <p></a></td>
|
242
|
-
<td>Include only package names matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.</td>
|
243
|
-
</tr>
|
244
|
-
<tr>
|
245
|
-
<td><a href="#filterresults">filterResults <fn></a></td>
|
246
|
-
<td>Filters out upgrades based on a user provided function.</td>
|
247
|
-
</tr>
|
248
|
-
<tr>
|
249
|
-
<td><a href="#filterversion">--filterVersion <p></a></td>
|
250
|
-
<td>Filter on package version using comma-or-space-delimited list, /regex/, or predicate function.</td>
|
251
|
-
</tr>
|
252
|
-
<tr>
|
253
|
-
<td><a href="#format">--format <value></a></td>
|
254
|
-
<td>Modify the output formatting or show additional information. Specify one or more comma-delimited values: group, ownerChanged, repo, time, lines, installedVersion. (default: [])</td>
|
255
|
-
</tr>
|
256
|
-
<tr>
|
257
|
-
<td>-g, --global</td>
|
258
|
-
<td>Check global packages instead of in the current project.</td>
|
259
|
-
</tr>
|
260
|
-
<tr>
|
261
|
-
<td><a href="#groupfunction">groupFunction <fn></a></td>
|
262
|
-
<td>Customize how packages are divided into groups when using <code>--format group</code>.</td>
|
263
|
-
</tr>
|
264
|
-
<tr>
|
265
|
-
<td><a href="#install">--install <value></a></td>
|
266
|
-
<td>Control the auto-install behavior: always, never, prompt. (default: "prompt")</td>
|
267
|
-
</tr>
|
268
|
-
<tr>
|
269
|
-
<td>-i, --interactive</td>
|
270
|
-
<td>Enable interactive prompts for each dependency; implies <code>-u</code> unless one of the json options are set.</td>
|
271
|
-
</tr>
|
272
|
-
<tr>
|
273
|
-
<td>-j, --jsonAll</td>
|
274
|
-
<td>Output new package file instead of human-readable message.</td>
|
275
|
-
</tr>
|
276
|
-
<tr>
|
277
|
-
<td>--jsonDeps</td>
|
278
|
-
<td>Like <code>jsonAll</code> but only lists <code>dependencies</code>, <code>devDependencies</code>, <code>optionalDependencies</code>, etc of the new package data.</td>
|
279
|
-
</tr>
|
280
|
-
<tr>
|
281
|
-
<td>--jsonUpgraded</td>
|
282
|
-
<td>Output upgraded dependencies in json.</td>
|
283
|
-
</tr>
|
284
|
-
<tr>
|
285
|
-
<td>-l, --loglevel <n></td>
|
286
|
-
<td>Amount to log: silent, error, minimal, warn, info, verbose, silly. (default: "warn")</td>
|
287
|
-
</tr>
|
288
|
-
<tr>
|
289
|
-
<td>--mergeConfig</td>
|
290
|
-
<td>Merges nested configs with the root config file for <code>--deep</code> or <code>--packageFile</code> options. (default: false)</td>
|
291
|
-
</tr>
|
292
|
-
<tr>
|
293
|
-
<td>-m, --minimal</td>
|
294
|
-
<td>Do not upgrade newer versions that are already satisfied by the version range according to semver.</td>
|
295
|
-
</tr>
|
296
|
-
<tr>
|
297
|
-
<td>--packageData <value></td>
|
298
|
-
<td>Package file data (you can also use stdin).</td>
|
299
|
-
</tr>
|
300
|
-
<tr>
|
301
|
-
<td>--packageFile <path|glob></td>
|
302
|
-
<td>Package file(s) location. (default: ./package.json)</td>
|
303
|
-
</tr>
|
304
|
-
<tr>
|
305
|
-
<td><a href="#packagemanager">-p, --packageManager <s></a></td>
|
306
|
-
<td>npm, yarn, pnpm, deno, bun, staticRegistry (default: npm).</td>
|
307
|
-
</tr>
|
308
|
-
<tr>
|
309
|
-
<td><a href="#peer">--peer</a></td>
|
310
|
-
<td>Check peer dependencies of installed packages and filter updates to compatible versions.</td>
|
311
|
-
</tr>
|
312
|
-
<tr>
|
313
|
-
<td>--pre <n></td>
|
314
|
-
<td>Include prerelease versions, e.g. -alpha.0, -beta.5, -rc.2. Automatically set to 1 when <code>--target</code> is newest or greatest, or when the current version is a prerelease. (default: 0)</td>
|
315
|
-
</tr>
|
316
|
-
<tr>
|
317
|
-
<td>--prefix <path></td>
|
318
|
-
<td>Current working directory of npm.</td>
|
319
|
-
</tr>
|
320
|
-
<tr>
|
321
|
-
<td>-r, --registry <uri></td>
|
322
|
-
<td>Specify the registry to use when looking up package versions.</td>
|
323
|
-
</tr>
|
324
|
-
<tr>
|
325
|
-
<td><a href="#registrytype">--registryType <type></a></td>
|
326
|
-
<td>Specify whether --registry refers to a full npm registry or a simple JSON file or url: npm, json. (default: npm)</td>
|
327
|
-
</tr>
|
328
|
-
<tr>
|
329
|
-
<td><a href="#reject">-x, --reject <p></a></td>
|
330
|
-
<td>Exclude packages matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.</td>
|
331
|
-
</tr>
|
332
|
-
<tr>
|
333
|
-
<td><a href="#rejectversion">--rejectVersion <p></a></td>
|
334
|
-
<td>Exclude package.json versions using comma-or-space-delimited list, /regex/, or predicate function.</td>
|
335
|
-
</tr>
|
336
|
-
<tr>
|
337
|
-
<td>--removeRange</td>
|
338
|
-
<td>Remove version ranges from the final package version.</td>
|
339
|
-
</tr>
|
340
|
-
<tr>
|
341
|
-
<td>--retry <n></td>
|
342
|
-
<td>Number of times to retry failed requests for package info. (default: 3)</td>
|
343
|
-
</tr>
|
344
|
-
<tr>
|
345
|
-
<td>--root</td>
|
346
|
-
<td>Runs updates on the root project in addition to specified workspaces. Only allowed with <code>--workspace</code> or <code>--workspaces</code>. (default: true)</td>
|
347
|
-
</tr>
|
348
|
-
<tr>
|
349
|
-
<td>-s, --silent</td>
|
350
|
-
<td>Don't output anything. Alias for <code>--loglevel</code> silent.</td>
|
351
|
-
</tr>
|
352
|
-
<tr>
|
353
|
-
<td>--stdin</td>
|
354
|
-
<td>Read package.json from stdin.</td>
|
355
|
-
</tr>
|
356
|
-
<tr>
|
357
|
-
<td><a href="#target">-t, --target <value></a></td>
|
358
|
-
<td>Determines the version to upgrade to: latest, newest, greatest, minor, patch, semver, <code>@[tag]<code>, or [function]. (default: latest)</td>
|
359
|
-
</tr>
|
360
|
-
<tr>
|
361
|
-
<td>--timeout <ms></td>
|
362
|
-
<td>Global timeout in milliseconds. (default: no global timeout and 30 seconds per npm-registry-fetch)</td>
|
363
|
-
</tr>
|
364
|
-
<tr>
|
365
|
-
<td>-u, --upgrade</td>
|
366
|
-
<td>Overwrite package file with upgraded versions instead of just outputting to console.</td>
|
367
|
-
</tr>
|
368
|
-
<tr>
|
369
|
-
<td>--verbose</td>
|
370
|
-
<td>Log additional information for debugging. Alias for <code>--loglevel</code> verbose.</td>
|
371
|
-
</tr>
|
372
|
-
<tr>
|
373
|
-
<td>-w, --workspace <s></td>
|
374
|
-
<td>Run on one or more specified workspaces. Add <code>--root</code> to also upgrade the root project. (default: [])</td>
|
375
|
-
</tr>
|
376
|
-
<tr>
|
377
|
-
<td>-ws, --workspaces</td>
|
378
|
-
<td>Run on all workspaces. Add <code>--root</code> to also upgrade the root project.</td>
|
379
|
-
</tr>
|
380
|
-
</table>
|
381
|
-
|
382
|
-
<!-- END Options -->
|
383
|
-
|
384
|
-
## Advanced Options
|
385
|
-
|
386
|
-
Some options have advanced usage, or allow per-package values by specifying a function in your .ncurc.js file.
|
387
|
-
|
388
|
-
Run `ncu --help [OPTION]` to view advanced help for a specific option, or see below:
|
389
|
-
|
390
|
-
<!-- BEGIN Advanced Options -->
|
391
|
-
<!-- Do not edit this section by hand. It is auto-generated in build-options.ts. Run "npm run build" or "npm run build:options" to build. -->
|
392
|
-
|
393
|
-
## doctor
|
394
|
-
|
395
|
-
Usage:
|
396
|
-
|
397
|
-
ncu --doctor -u
|
398
|
-
ncu --no-doctor
|
399
|
-
ncu -du
|
400
|
-
|
401
|
-
Iteratively installs upgrades and runs your project's tests to identify breaking upgrades. Reverts broken upgrades and updates package.json with working upgrades.
|
402
|
-
|
403
|
-
Requires `-u` to execute (modifies your package file, lock file, and node_modules)
|
404
|
-
|
405
|
-
To be more precise:
|
406
|
-
|
407
|
-
1. Runs `npm install` and `npm test` to ensure tests are currently passing.
|
408
|
-
2. Runs `ncu -u` to optimistically upgrade all dependencies.
|
409
|
-
3. If tests pass, hurray!
|
410
|
-
4. If tests fail, restores package file and lock file.
|
411
|
-
5. For each dependency, install upgrade and run tests.
|
412
|
-
6. Prints broken upgrades with test error.
|
413
|
-
7. Saves working upgrades to package.json.
|
414
|
-
|
415
|
-
Additional options:
|
416
|
-
|
417
|
-
<table>
|
418
|
-
<tr><td>--doctorInstall</td><td>specify a custom install script (default: `npm install` or `yarn`)</td></tr>
|
419
|
-
<tr><td>--doctorTest</td><td>specify a custom test script (default: `npm test`)</td></tr>
|
420
|
-
</table>
|
421
|
-
|
422
|
-
Example:
|
423
|
-
|
424
|
-
$ ncu --doctor -u
|
425
|
-
Running tests before upgrading
|
426
|
-
npm install
|
427
|
-
npm run test
|
428
|
-
Upgrading all dependencies and re-running tests
|
429
|
-
ncu -u
|
430
|
-
npm install
|
431
|
-
npm run test
|
432
|
-
Tests failed
|
433
|
-
Identifying broken dependencies
|
434
|
-
npm install
|
435
|
-
npm install --no-save react@16.0.0
|
436
|
-
npm run test
|
437
|
-
✓ react 15.0.0 → 16.0.0
|
438
|
-
npm install --no-save react-redux@7.0.0
|
439
|
-
npm run test
|
440
|
-
✗ react-redux 6.0.0 → 7.0.0
|
441
|
-
|
442
|
-
/projects/myproject/test.js:13
|
443
|
-
throw new Error('Test failed!')
|
444
|
-
^
|
445
|
-
|
446
|
-
npm install --no-save react-dnd@11.1.3
|
447
|
-
npm run test
|
448
|
-
✓ react-dnd 10.0.0 → 11.1.3
|
449
|
-
Saving partially upgraded package.json
|
450
|
-
|
451
|
-
## filter
|
452
|
-
|
453
|
-
Usage:
|
454
|
-
|
455
|
-
ncu --filter [p]
|
456
|
-
ncu -f [p]
|
457
|
-
|
458
|
-
Include only package names matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function. Only included packages will be checked with `--peer`.
|
459
|
-
|
460
|
-
`--filter` runs _before_ new versions are fetched, in contrast to `--filterResults` which runs _after_.
|
461
|
-
|
462
|
-
The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line.
|
463
|
-
|
464
|
-
```js
|
465
|
-
/**
|
466
|
-
@param name The name of the dependency.
|
467
|
-
@param semver A parsed Semver array of the current version.
|
468
|
-
(See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
|
469
|
-
@returns True if the package should be included, false if it should be excluded.
|
470
|
-
*/
|
471
|
-
filterFunction: (name, semver) => {
|
472
|
-
if (name.startsWith('@myorg/')) {
|
473
|
-
return false
|
474
|
-
}
|
475
|
-
return true
|
476
|
-
}
|
477
|
-
```
|
478
|
-
|
479
|
-
## filterResults
|
480
|
-
|
481
|
-
Filters out upgrades based on a user provided function.
|
482
|
-
|
483
|
-
`filterResults` runs _after_ new versions are fetched, in contrast to `filter`, `reject`, `filterVersion`, and `rejectVersion`, which run _before_. This allows you to filter out upgrades with `filterResults` based on how the version has changed (e.g. a major version change).
|
484
|
-
|
485
|
-
Only available in .ncurc.js or when importing npm-check-updates as a module.
|
486
|
-
|
487
|
-
```js
|
488
|
-
/** Filter out non-major version updates. Note this could also be achieved with --target semver.
|
489
|
-
@param {string} packageName The name of the dependency.
|
490
|
-
@param {string} current Current version declaration (may be a range).
|
491
|
-
@param {SemVer[]} currentVersionSemver Current version declaration in semantic versioning format (may be a range).
|
492
|
-
@param {string} upgraded Upgraded version.
|
493
|
-
@param {SemVer} upgradedVersionSemver Upgraded version in semantic versioning format.
|
494
|
-
@returns {boolean} Return true if the upgrade should be kept, otherwise it will be ignored.
|
495
|
-
*/
|
496
|
-
filterResults: (packageName, { current, currentVersionSemver, upgraded, upgradedVersionSemver }) => {
|
497
|
-
const currentMajor = parseInt(currentVersionSemver[0]?.major, 10)
|
498
|
-
const upgradedMajor = parseInt(upgradedVersionSemver?.major, 10)
|
499
|
-
if (currentMajor && upgradedMajor) {
|
500
|
-
return currentMajor < upgradedMajor
|
501
|
-
}
|
502
|
-
return true
|
503
|
-
}
|
504
|
-
```
|
505
|
-
|
506
|
-
For the SemVer type definition, see: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring
|
507
|
-
|
508
|
-
## filterVersion
|
509
|
-
|
510
|
-
Usage:
|
511
|
-
|
512
|
-
ncu --filterVersion [p]
|
513
|
-
|
514
|
-
Include only versions matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.
|
515
|
-
|
516
|
-
`--filterVersion` runs _before_ new versions are fetched, in contrast to `--filterResults` which runs _after_.
|
517
|
-
|
518
|
-
The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. This function is an alias for the `filter` option function.
|
519
|
-
|
520
|
-
```js
|
521
|
-
/**
|
522
|
-
@param name The name of the dependency.
|
523
|
-
@param semver A parsed Semver array of the current version.
|
524
|
-
(See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
|
525
|
-
@returns True if the package should be included, false if it should be excluded.
|
526
|
-
*/
|
527
|
-
filterVersionFunction: (name, semver) => {
|
528
|
-
if (name.startsWith('@myorg/') && parseInt(semver[0]?.major) > 5) {
|
529
|
-
return false
|
530
|
-
}
|
531
|
-
return true
|
532
|
-
}
|
533
|
-
```
|
534
|
-
|
535
|
-
## format
|
536
|
-
|
537
|
-
Usage:
|
538
|
-
|
539
|
-
ncu --format [value]
|
540
|
-
|
541
|
-
Modify the output formatting or show additional information. Specify one or more comma-delimited values.
|
542
|
-
|
543
|
-
<table>
|
544
|
-
<tr><td>group</td><td>Groups packages by major, minor, patch, and major version zero updates.</td></tr>
|
545
|
-
<tr><td>ownerChanged</td><td>Shows if the package owner has changed.</td></tr>
|
546
|
-
<tr><td>repo</td><td>Infers and displays links to the package's source code repository. Requires packages to be installed.</td></tr>
|
547
|
-
<tr><td>time</td><td>Shows the publish time of each upgrade.</td></tr>
|
548
|
-
<tr><td>lines</td><td>Prints name@version on separate lines. Useful for piping to npm install.</td></tr>
|
549
|
-
<tr><td>installedVersion</td><td>Prints the exact current version number instead of a range.</td></tr>
|
550
|
-
</table>
|
551
|
-
|
552
|
-
## groupFunction
|
553
|
-
|
554
|
-
Customize how packages are divided into groups when using `--format group`.
|
555
|
-
|
556
|
-
Only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line.
|
557
|
-
|
558
|
-
```js
|
559
|
-
/**
|
560
|
-
@param name The name of the dependency.
|
561
|
-
@param defaultGroup The predefined group name which will be used by default.
|
562
|
-
@param currentSpec The current version range in your package.json.
|
563
|
-
@param upgradedSpec The upgraded version range that will be written to your package.json.
|
564
|
-
@param upgradedVersion The upgraded version number returned by the registry.
|
565
|
-
@returns A predefined group name ('major' | 'minor' | 'patch' | 'majorVersionZero' | 'none') or a custom string to create your own group.
|
566
|
-
*/
|
567
|
-
groupFunction: (name, defaultGroup, currentSpec, upgradedSpec, upgradedVersion) => {
|
568
|
-
if (name === 'typescript' && defaultGroup === 'minor') {
|
569
|
-
return 'major'
|
570
|
-
}
|
571
|
-
if (name.startsWith('@myorg/')) {
|
572
|
-
return 'My Org'
|
573
|
-
}
|
574
|
-
return defaultGroup
|
575
|
-
}
|
576
|
-
```
|
577
|
-
|
578
|
-
## install
|
579
|
-
|
580
|
-
Usage:
|
581
|
-
|
582
|
-
ncu --install [value]
|
583
|
-
|
584
|
-
Default: prompt
|
585
|
-
|
586
|
-
Control the auto-install behavior.
|
587
|
-
|
588
|
-
<table>
|
589
|
-
<tr><td>always</td><td>Runs your package manager's install command automatically after upgrading.</td></tr>
|
590
|
-
<tr><td>never</td><td>Does not install and does not prompt.</td></tr>
|
591
|
-
<tr><td>prompt</td><td>Shows a message after upgrading that recommends an install, but does not install. In interactive mode, prompts for install. (default)</td></tr>
|
592
|
-
</table>
|
593
|
-
|
594
|
-
## packageManager
|
595
|
-
|
596
|
-
Usage:
|
597
|
-
|
598
|
-
ncu --packageManager [s]
|
599
|
-
ncu -p [s]
|
600
|
-
|
601
|
-
Specifies the package manager to use when looking up versions.
|
602
|
-
|
603
|
-
<table>
|
604
|
-
<tr><td>npm</td><td>System-installed npm. Default.</td></tr>
|
605
|
-
<tr><td>yarn</td><td>System-installed yarn. Automatically used if yarn.lock is present.</td></tr>
|
606
|
-
<tr><td>pnpm</td><td>System-installed pnpm. Automatically used if pnpm-lock.yaml is present.</td></tr>
|
607
|
-
<tr><td>bun</td><td>System-installed bun. Automatically used if bun.lock or bun.lockb is present.</td></tr>
|
608
|
-
</table>
|
609
|
-
|
610
|
-
## peer
|
611
|
-
|
612
|
-
Usage:
|
613
|
-
|
614
|
-
ncu --peer
|
615
|
-
ncu --no-peer
|
616
|
-
|
617
|
-
Check peer dependencies of installed packages and filter updates to compatible versions.
|
618
|
-
|
619
|
-
Example:
|
620
|
-
|
621
|
-
The following example demonstrates how `--peer` works, and how it uses peer dependencies from upgraded modules.
|
622
|
-
|
623
|
-
The package ncu-test-peer-update has two versions published:
|
624
|
-
|
625
|
-
- 1.0.0 has peer dependency `"ncu-test-return-version": "1.0.x"`
|
626
|
-
- 1.1.0 has peer dependency `"ncu-test-return-version": "1.1.x"`
|
627
|
-
|
628
|
-
Our test app has the following dependencies:
|
629
|
-
|
630
|
-
"ncu-test-peer-update": "1.0.0",
|
631
|
-
"ncu-test-return-version": "1.0.0"
|
632
|
-
|
633
|
-
The latest versions of these packages are:
|
634
|
-
|
635
|
-
"ncu-test-peer-update": "1.1.0",
|
636
|
-
"ncu-test-return-version": "2.0.0"
|
637
|
-
|
638
|
-
With `--peer`:
|
639
|
-
|
640
|
-
ncu upgrades packages to the highest version that still adheres to the peer dependency constraints:
|
641
|
-
|
642
|
-
ncu-test-peer-update 1.0.0 → 1.1.0
|
643
|
-
ncu-test-return-version 1.0.0 → 1.1.0
|
644
|
-
|
645
|
-
Without `--peer`:
|
646
|
-
|
647
|
-
As a comparison: without using the `--peer` option, ncu will suggest the latest versions, ignoring peer dependencies:
|
648
|
-
|
649
|
-
ncu-test-peer-update 1.0.0 → 1.1.0
|
650
|
-
ncu-test-return-version 1.0.0 → 2.0.0
|
651
|
-
|
652
|
-
## registryType
|
653
|
-
|
654
|
-
Usage:
|
655
|
-
|
656
|
-
ncu --registryType [type]
|
657
|
-
|
658
|
-
Specify whether `--registry` refers to a full npm registry or a simple JSON file.
|
659
|
-
|
660
|
-
<table>
|
661
|
-
<tr><td>npm</td><td>Default npm registry</td></tr>
|
662
|
-
<tr><td>json</td><td>Checks versions from a file or url to a simple JSON registry. Must include the `--registry` option.
|
663
|
-
|
664
|
-
Example:
|
665
|
-
|
666
|
-
// local file
|
667
|
-
$ ncu --registryType json --registry ./registry.json
|
668
|
-
|
669
|
-
// url
|
670
|
-
$ ncu --registryType json --registry https://api.mydomain/registry.json
|
671
|
-
|
672
|
-
// you can omit --registryType when the registry ends in .json
|
673
|
-
$ ncu --registry ./registry.json
|
674
|
-
$ ncu --registry https://api.mydomain/registry.json
|
675
|
-
|
676
|
-
registry.json:
|
677
|
-
|
678
|
-
{
|
679
|
-
"prettier": "2.7.1",
|
680
|
-
"typescript": "4.7.4"
|
681
|
-
}
|
682
|
-
|
683
|
-
</td></tr>
|
684
|
-
</table>
|
685
|
-
|
686
|
-
## reject
|
687
|
-
|
688
|
-
Usage:
|
689
|
-
|
690
|
-
ncu --reject [p]
|
691
|
-
ncu -x [p]
|
692
|
-
|
693
|
-
The inverse of `--filter`. Exclude package names matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function. This will also exclude them from the `--peer` check.
|
694
|
-
|
695
|
-
`--reject` runs _before_ new versions are fetched, in contrast to `--filterResults` which runs _after_.
|
696
|
-
|
697
|
-
The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line.
|
698
|
-
|
699
|
-
```js
|
700
|
-
/**
|
701
|
-
@param name The name of the dependency.
|
702
|
-
@param semver A parsed Semver array of the current version.
|
703
|
-
(See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
|
704
|
-
@returns True if the package should be excluded, false if it should be included.
|
705
|
-
*/
|
706
|
-
rejectFunction: (name, semver) => {
|
707
|
-
if (name.startsWith('@myorg/')) {
|
708
|
-
return true
|
709
|
-
}
|
710
|
-
return false
|
711
|
-
}
|
712
|
-
```
|
713
|
-
|
714
|
-
## rejectVersion
|
715
|
-
|
716
|
-
Usage:
|
717
|
-
|
718
|
-
ncu --rejectVersion [p]
|
719
|
-
|
720
|
-
The inverse of `--filterVersion`. Exclude versions matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.
|
721
|
-
|
722
|
-
`--rejectVersion` runs _before_ new versions are fetched, in contrast to `--filterResults` which runs _after_.
|
723
|
-
|
724
|
-
The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. This function is an alias for the reject option function.
|
725
|
-
|
726
|
-
```js
|
727
|
-
/**
|
728
|
-
@param name The name of the dependency.
|
729
|
-
@param semver A parsed Semver array of the current version.
|
730
|
-
(See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
|
731
|
-
@returns True if the package should be excluded, false if it should be included.
|
732
|
-
*/
|
733
|
-
rejectVersionFunction: (name, semver) => {
|
734
|
-
if (name.startsWith('@myorg/') && parseInt(semver[0]?.major) > 5) {
|
735
|
-
return true
|
736
|
-
}
|
737
|
-
return false
|
738
|
-
}
|
739
|
-
```
|
740
|
-
|
741
|
-
## target
|
742
|
-
|
743
|
-
Usage:
|
744
|
-
|
745
|
-
ncu --target [value]
|
746
|
-
ncu -t [value]
|
747
|
-
|
748
|
-
Determines the version to upgrade to. (default: "latest")
|
749
|
-
|
750
|
-
<table>
|
751
|
-
<tr><td>greatest</td><td>Upgrade to the highest version number published, regardless of release date or tag. Includes prereleases.</td></tr>
|
752
|
-
<tr><td>latest</td><td>Upgrade to whatever the package's "latest" git tag points to. Excludes prereleases unless --pre is specified.</td></tr>
|
753
|
-
<tr><td>minor</td><td>Upgrade to the highest minor version without bumping the major version.</td></tr>
|
754
|
-
<tr><td>newest</td><td>Upgrade to the version with the most recent publish date, even if there are other version numbers that are higher. Includes prereleases.</td></tr>
|
755
|
-
<tr><td>patch</td><td>Upgrade to the highest patch version without bumping the minor or major versions.</td></tr>
|
756
|
-
<tr><td>semver</td><td>Upgrade to the highest version within the semver range specified in your package.json.</td></tr>
|
757
|
-
<tr><td>@[tag]</td><td>Upgrade to the version published to a specific tag, e.g. 'next' or 'beta'.</td></tr>
|
758
|
-
</table>
|
759
|
-
|
760
|
-
You can also specify a custom function in your .ncurc.js file, or when importing npm-check-updates as a module:
|
761
|
-
|
762
|
-
```js
|
763
|
-
/** Upgrade major version zero to the next minor version, and everything else to latest.
|
764
|
-
@param name The name of the dependency.
|
765
|
-
@param semver A parsed Semver object of the upgraded version.
|
766
|
-
(See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
|
767
|
-
@returns One of the valid target values (specified in the table above).
|
768
|
-
*/
|
769
|
-
target: (name, semver) => {
|
770
|
-
if (parseInt(semver[0]?.major) === '0') return 'minor'
|
771
|
-
return 'latest'
|
772
|
-
}
|
773
|
-
```
|
774
|
-
|
775
|
-
<!-- END Advanced Options -->
|
776
|
-
|
777
|
-
## Config File
|
778
|
-
|
779
|
-
Use a `.ncurc.{json,yml,js,cjs}` file to specify configuration information.
|
780
|
-
You can specify the file name and path using `--configFileName` and `--configFilePath`
|
781
|
-
command line options.
|
782
|
-
|
783
|
-
For example, `.ncurc.json`:
|
784
|
-
|
785
|
-
```json
|
786
|
-
{
|
787
|
-
"upgrade": true,
|
788
|
-
"filter": "svelte",
|
789
|
-
"reject": ["@types/estree", "ts-node"]
|
790
|
-
}
|
791
|
-
```
|
792
|
-
|
793
|
-
If you write `.ncurc` config files using json or yaml, you can add the JSON Schema to your IDE settings for completions.
|
794
|
-
|
795
|
-
e.g. for VS Code:
|
796
|
-
|
797
|
-
```json
|
798
|
-
"json.schemas": [
|
799
|
-
{
|
800
|
-
"fileMatch": [
|
801
|
-
".ncurc",
|
802
|
-
".ncurc.json",
|
803
|
-
],
|
804
|
-
"url": "https://raw.githubusercontent.com/raineorshine/npm-check-updates/main/src/types/RunOptions.json"
|
805
|
-
}
|
806
|
-
],
|
807
|
-
"yaml.schemas": {
|
808
|
-
"https://raw.githubusercontent.com/raineorshine/npm-check-updates/main/src/types/RunOptions.json": [
|
809
|
-
".ncurc.yml",
|
810
|
-
]
|
811
|
-
},
|
812
|
-
```
|
813
|
-
|
814
|
-
## Module/Programmatic Usage
|
815
|
-
|
816
|
-
npm-check-updates can be imported as a module:
|
817
|
-
|
818
|
-
```js
|
819
|
-
import ncu from 'npm-check-updates'
|
820
|
-
|
821
|
-
const upgraded = await ncu.run({
|
822
|
-
// Pass any cli option
|
823
|
-
packageFile: '../package.json',
|
824
|
-
upgrade: true,
|
825
|
-
// Defaults:
|
826
|
-
// jsonUpgraded: true,
|
827
|
-
// silent: true,
|
828
|
-
})
|
829
|
-
|
830
|
-
console.log(upgraded) // { "mypackage": "^2.0.0", ... }
|
831
|
-
```
|
832
|
-
|
833
|
-
## Contributing
|
834
|
-
|
835
|
-
Contributions are happily accepted. I respond to all PR's and can offer guidance on where to make changes. For contributing tips see [CONTRIBUTING.md](https://github.com/raineorshine/npm-check-updates/blob/main/.github/CONTRIBUTING.md).
|
836
|
-
|
837
|
-
## Problems?
|
838
|
-
|
839
|
-
[File an issue](https://github.com/raineorshine/npm-check-updates/issues). Please [search existing issues](https://github.com/raineorshine/npm-check-updates/issues?utf8=%E2%9C%93&q=is%3Aissue) first.
|