immosquare-cleaner 0.1.62 → 0.1.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1432) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +50 -20
  4. data/linters/erb-lint-3.4.1.yml +14 -0
  5. data/linters/rubocop/cop/custom_cops/style/font_awesome_normalization.rb +104 -0
  6. data/linters/rubocop-3.4.1.yml +4 -0
  7. data/linters/rubocop.yml +4 -0
  8. data/node_modules/@eslint/config-array/README.md +3 -3
  9. data/node_modules/@eslint/config-array/dist/cjs/index.d.cts +1 -1
  10. data/node_modules/@eslint/config-array/package.json +3 -3
  11. data/node_modules/@eslint/config-helpers/LICENSE +201 -0
  12. data/node_modules/@eslint/config-helpers/README.md +97 -0
  13. data/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +546 -0
  14. data/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +22 -0
  15. data/node_modules/@eslint/config-helpers/dist/cjs/types.cts +31 -0
  16. data/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +22 -0
  17. data/node_modules/@eslint/config-helpers/dist/esm/index.js +544 -0
  18. data/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  19. data/node_modules/@eslint/config-helpers/dist/esm/types.ts +31 -0
  20. data/node_modules/@eslint/config-helpers/package.json +60 -0
  21. data/node_modules/@eslint/core/README.md +3 -3
  22. data/node_modules/@eslint/core/dist/cjs/types.d.cts +102 -23
  23. data/node_modules/@eslint/core/dist/esm/types.d.ts +102 -23
  24. data/node_modules/@eslint/core/package.json +1 -1
  25. data/node_modules/@eslint/eslintrc/conf/environments.js +1 -1
  26. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +21 -12
  27. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -1
  28. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +59 -34
  29. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
  30. data/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
  31. data/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +6 -4
  32. data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +2 -0
  33. data/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +5 -5
  34. data/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +2 -2
  35. data/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +6 -5
  36. data/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +7 -5
  37. data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +13 -6
  38. data/node_modules/@eslint/eslintrc/lib/flat-compat.js +4 -3
  39. data/node_modules/@eslint/eslintrc/lib/shared/ajv.js +1 -1
  40. data/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +2 -2
  41. data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +17 -8
  42. data/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +1 -1
  43. data/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +2 -1
  44. data/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
  45. data/node_modules/@eslint/eslintrc/package.json +11 -9
  46. data/node_modules/@eslint/eslintrc/universal.js +2 -1
  47. data/node_modules/@eslint/js/package.json +1 -1
  48. data/node_modules/@eslint/js/src/index.js +2 -2
  49. data/node_modules/@eslint/object-schema/README.md +3 -3
  50. data/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +2 -2
  51. data/node_modules/@eslint/object-schema/package.json +2 -2
  52. data/node_modules/@eslint/plugin-kit/README.md +3 -3
  53. data/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +2 -2
  54. data/node_modules/@eslint/plugin-kit/package.json +9 -8
  55. data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +7 -7
  56. data/node_modules/@humanwhocodes/retry/dist/retrier.js +7 -7
  57. data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -1
  58. data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +7 -7
  59. data/node_modules/@humanwhocodes/retry/package.json +1 -1
  60. data/node_modules/eslint/README.md +40 -18
  61. data/node_modules/eslint/conf/rule-type-list.json +82 -18
  62. data/node_modules/eslint/lib/cli.js +34 -4
  63. data/node_modules/eslint/lib/config/config-loader.js +43 -26
  64. data/node_modules/eslint/lib/config/config.js +6 -1
  65. data/node_modules/eslint/lib/config/flat-config-schema.js +16 -1
  66. data/node_modules/eslint/lib/config/rule-validator.js +12 -2
  67. data/node_modules/eslint/lib/config-api.js +12 -0
  68. data/node_modules/eslint/lib/eslint/eslint.js +10 -7
  69. data/node_modules/eslint/lib/languages/js/source-code/source-code.js +18 -14
  70. data/node_modules/eslint/lib/linter/linter.js +98 -8
  71. data/node_modules/eslint/lib/options.js +19 -0
  72. data/node_modules/eslint/lib/rules/array-bracket-newline.js +20 -2
  73. data/node_modules/eslint/lib/rules/array-bracket-spacing.js +20 -2
  74. data/node_modules/eslint/lib/rules/array-element-newline.js +20 -2
  75. data/node_modules/eslint/lib/rules/arrow-body-style.js +2 -1
  76. data/node_modules/eslint/lib/rules/arrow-parens.js +20 -2
  77. data/node_modules/eslint/lib/rules/arrow-spacing.js +20 -2
  78. data/node_modules/eslint/lib/rules/block-spacing.js +20 -2
  79. data/node_modules/eslint/lib/rules/brace-style.js +20 -2
  80. data/node_modules/eslint/lib/rules/callback-return.js +19 -3
  81. data/node_modules/eslint/lib/rules/camelcase.js +1 -0
  82. data/node_modules/eslint/lib/rules/capitalized-comments.js +1 -0
  83. data/node_modules/eslint/lib/rules/comma-dangle.js +20 -2
  84. data/node_modules/eslint/lib/rules/comma-spacing.js +20 -2
  85. data/node_modules/eslint/lib/rules/comma-style.js +20 -2
  86. data/node_modules/eslint/lib/rules/computed-property-spacing.js +20 -2
  87. data/node_modules/eslint/lib/rules/consistent-this.js +10 -0
  88. data/node_modules/eslint/lib/rules/curly.js +1 -0
  89. data/node_modules/eslint/lib/rules/default-case-last.js +2 -2
  90. data/node_modules/eslint/lib/rules/default-param-last.js +1 -0
  91. data/node_modules/eslint/lib/rules/dot-location.js +20 -2
  92. data/node_modules/eslint/lib/rules/dot-notation.js +1 -0
  93. data/node_modules/eslint/lib/rules/eol-last.js +20 -2
  94. data/node_modules/eslint/lib/rules/func-call-spacing.js +20 -2
  95. data/node_modules/eslint/lib/rules/func-name-matching.js +1 -0
  96. data/node_modules/eslint/lib/rules/func-style.js +1 -0
  97. data/node_modules/eslint/lib/rules/function-call-argument-newline.js +20 -2
  98. data/node_modules/eslint/lib/rules/function-paren-newline.js +20 -2
  99. data/node_modules/eslint/lib/rules/generator-star-spacing.js +20 -2
  100. data/node_modules/eslint/lib/rules/global-require.js +19 -3
  101. data/node_modules/eslint/lib/rules/handle-callback-err.js +19 -3
  102. data/node_modules/eslint/lib/rules/id-blacklist.js +14 -2
  103. data/node_modules/eslint/lib/rules/id-denylist.js +1 -0
  104. data/node_modules/eslint/lib/rules/id-length.js +1 -0
  105. data/node_modules/eslint/lib/rules/id-match.js +1 -0
  106. data/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +20 -2
  107. data/node_modules/eslint/lib/rules/indent-legacy.js +19 -3
  108. data/node_modules/eslint/lib/rules/indent.js +20 -2
  109. data/node_modules/eslint/lib/rules/init-declarations.js +1 -0
  110. data/node_modules/eslint/lib/rules/jsx-quotes.js +20 -2
  111. data/node_modules/eslint/lib/rules/key-spacing.js +20 -2
  112. data/node_modules/eslint/lib/rules/keyword-spacing.js +20 -2
  113. data/node_modules/eslint/lib/rules/line-comment-position.js +20 -2
  114. data/node_modules/eslint/lib/rules/linebreak-style.js +20 -2
  115. data/node_modules/eslint/lib/rules/lines-around-comment.js +20 -2
  116. data/node_modules/eslint/lib/rules/lines-around-directive.js +20 -2
  117. data/node_modules/eslint/lib/rules/lines-between-class-members.js +20 -2
  118. data/node_modules/eslint/lib/rules/logical-assignment-operators.js +1 -0
  119. data/node_modules/eslint/lib/rules/max-len.js +20 -2
  120. data/node_modules/eslint/lib/rules/max-statements-per-line.js +20 -2
  121. data/node_modules/eslint/lib/rules/multiline-comment-style.js +20 -2
  122. data/node_modules/eslint/lib/rules/multiline-ternary.js +20 -2
  123. data/node_modules/eslint/lib/rules/new-parens.js +20 -2
  124. data/node_modules/eslint/lib/rules/newline-after-var.js +20 -3
  125. data/node_modules/eslint/lib/rules/newline-before-return.js +20 -2
  126. data/node_modules/eslint/lib/rules/newline-per-chained-call.js +20 -2
  127. data/node_modules/eslint/lib/rules/no-buffer-constructor.js +19 -3
  128. data/node_modules/eslint/lib/rules/no-catch-shadow.js +14 -3
  129. data/node_modules/eslint/lib/rules/no-confusing-arrow.js +20 -2
  130. data/node_modules/eslint/lib/rules/no-console.js +22 -12
  131. data/node_modules/eslint/lib/rules/no-continue.js +1 -0
  132. data/node_modules/eslint/lib/rules/no-div-regex.js +1 -0
  133. data/node_modules/eslint/lib/rules/no-else-return.js +1 -0
  134. data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +1 -0
  135. data/node_modules/eslint/lib/rules/no-extra-label.js +1 -0
  136. data/node_modules/eslint/lib/rules/no-extra-parens.js +20 -2
  137. data/node_modules/eslint/lib/rules/no-extra-semi.js +20 -2
  138. data/node_modules/eslint/lib/rules/no-floating-decimal.js +20 -2
  139. data/node_modules/eslint/lib/rules/no-implicit-coercion.js +1 -0
  140. data/node_modules/eslint/lib/rules/no-inline-comments.js +1 -0
  141. data/node_modules/eslint/lib/rules/no-label-var.js +1 -0
  142. data/node_modules/eslint/lib/rules/no-labels.js +1 -0
  143. data/node_modules/eslint/lib/rules/no-lonely-if.js +1 -0
  144. data/node_modules/eslint/lib/rules/no-magic-numbers.js +1 -0
  145. data/node_modules/eslint/lib/rules/no-mixed-operators.js +20 -2
  146. data/node_modules/eslint/lib/rules/no-mixed-requires.js +19 -3
  147. data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +20 -2
  148. data/node_modules/eslint/lib/rules/no-multi-spaces.js +20 -2
  149. data/node_modules/eslint/lib/rules/no-multi-str.js +1 -0
  150. data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +20 -2
  151. data/node_modules/eslint/lib/rules/no-native-reassign.js +14 -3
  152. data/node_modules/eslint/lib/rules/no-negated-condition.js +1 -0
  153. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +14 -3
  154. data/node_modules/eslint/lib/rules/no-nested-ternary.js +1 -0
  155. data/node_modules/eslint/lib/rules/no-new-object.js +14 -5
  156. data/node_modules/eslint/lib/rules/no-new-require.js +19 -3
  157. data/node_modules/eslint/lib/rules/no-new-symbol.js +14 -5
  158. data/node_modules/eslint/lib/rules/no-path-concat.js +19 -3
  159. data/node_modules/eslint/lib/rules/no-plusplus.js +1 -0
  160. data/node_modules/eslint/lib/rules/no-process-env.js +19 -3
  161. data/node_modules/eslint/lib/rules/no-process-exit.js +19 -3
  162. data/node_modules/eslint/lib/rules/no-restricted-modules.js +19 -3
  163. data/node_modules/eslint/lib/rules/no-return-await.js +7 -3
  164. data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +17 -7
  165. data/node_modules/eslint/lib/rules/no-spaced-func.js +20 -3
  166. data/node_modules/eslint/lib/rules/no-sync.js +19 -3
  167. data/node_modules/eslint/lib/rules/no-tabs.js +20 -2
  168. data/node_modules/eslint/lib/rules/no-ternary.js +1 -0
  169. data/node_modules/eslint/lib/rules/no-trailing-spaces.js +20 -2
  170. data/node_modules/eslint/lib/rules/no-undef-init.js +1 -0
  171. data/node_modules/eslint/lib/rules/no-undefined.js +1 -0
  172. data/node_modules/eslint/lib/rules/no-underscore-dangle.js +1 -0
  173. data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +1 -0
  174. data/node_modules/eslint/lib/rules/no-useless-computed-key.js +1 -0
  175. data/node_modules/eslint/lib/rules/no-useless-concat.js +1 -0
  176. data/node_modules/eslint/lib/rules/no-void.js +1 -0
  177. data/node_modules/eslint/lib/rules/no-warning-comments.js +1 -0
  178. data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +20 -2
  179. data/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +20 -2
  180. data/node_modules/eslint/lib/rules/object-curly-newline.js +20 -2
  181. data/node_modules/eslint/lib/rules/object-curly-spacing.js +20 -2
  182. data/node_modules/eslint/lib/rules/object-property-newline.js +20 -2
  183. data/node_modules/eslint/lib/rules/object-shorthand.js +1 -0
  184. data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +20 -2
  185. data/node_modules/eslint/lib/rules/one-var.js +1 -0
  186. data/node_modules/eslint/lib/rules/operator-assignment.js +1 -0
  187. data/node_modules/eslint/lib/rules/operator-linebreak.js +20 -2
  188. data/node_modules/eslint/lib/rules/padded-blocks.js +20 -2
  189. data/node_modules/eslint/lib/rules/padding-line-between-statements.js +20 -2
  190. data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +1 -0
  191. data/node_modules/eslint/lib/rules/prefer-destructuring.js +1 -0
  192. data/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +1 -0
  193. data/node_modules/eslint/lib/rules/prefer-numeric-literals.js +1 -0
  194. data/node_modules/eslint/lib/rules/prefer-object-spread.js +1 -0
  195. data/node_modules/eslint/lib/rules/prefer-reflect.js +7 -3
  196. data/node_modules/eslint/lib/rules/prefer-spread.js +1 -0
  197. data/node_modules/eslint/lib/rules/prefer-template.js +1 -0
  198. data/node_modules/eslint/lib/rules/quote-props.js +20 -2
  199. data/node_modules/eslint/lib/rules/quotes.js +20 -2
  200. data/node_modules/eslint/lib/rules/rest-spread-spacing.js +20 -2
  201. data/node_modules/eslint/lib/rules/semi-spacing.js +20 -2
  202. data/node_modules/eslint/lib/rules/semi-style.js +20 -2
  203. data/node_modules/eslint/lib/rules/semi.js +20 -2
  204. data/node_modules/eslint/lib/rules/sort-imports.js +3 -2
  205. data/node_modules/eslint/lib/rules/sort-keys.js +1 -0
  206. data/node_modules/eslint/lib/rules/sort-vars.js +1 -0
  207. data/node_modules/eslint/lib/rules/space-before-blocks.js +20 -2
  208. data/node_modules/eslint/lib/rules/space-before-function-paren.js +20 -2
  209. data/node_modules/eslint/lib/rules/space-in-parens.js +20 -2
  210. data/node_modules/eslint/lib/rules/space-infix-ops.js +20 -2
  211. data/node_modules/eslint/lib/rules/space-unary-ops.js +20 -2
  212. data/node_modules/eslint/lib/rules/spaced-comment.js +20 -2
  213. data/node_modules/eslint/lib/rules/switch-colon-spacing.js +20 -2
  214. data/node_modules/eslint/lib/rules/template-curly-spacing.js +20 -2
  215. data/node_modules/eslint/lib/rules/template-tag-spacing.js +20 -2
  216. data/node_modules/eslint/lib/rules/vars-on-top.js +1 -0
  217. data/node_modules/eslint/lib/rules/wrap-iife.js +20 -2
  218. data/node_modules/eslint/lib/rules/wrap-regex.js +20 -2
  219. data/node_modules/eslint/lib/rules/yield-star-spacing.js +20 -2
  220. data/node_modules/eslint/lib/rules/yoda.js +1 -0
  221. data/node_modules/eslint/lib/shared/flags.js +44 -6
  222. data/node_modules/eslint/lib/shared/option-utils.js +56 -0
  223. data/node_modules/eslint/lib/shared/types.js +19 -1
  224. data/node_modules/eslint/lib/types/config-api.d.ts +8 -0
  225. data/node_modules/eslint/lib/types/index.d.ts +82 -64
  226. data/node_modules/eslint/lib/types/rules.d.ts +5199 -0
  227. data/node_modules/eslint/messages/config-plugin-missing.js +14 -0
  228. data/node_modules/eslint/messages/config-serialize-function.js +28 -0
  229. data/node_modules/eslint/messages/eslintrc-plugins.js +6 -2
  230. data/node_modules/eslint/package.json +22 -12
  231. data/node_modules/eslint-plugin-sonarjs/README.md +2 -2
  232. data/node_modules/eslint-plugin-sonarjs/cjs/S100/generated-meta.js +1 -1
  233. data/node_modules/eslint-plugin-sonarjs/cjs/S100/index.js +1 -1
  234. data/node_modules/eslint-plugin-sonarjs/cjs/S100/meta.js +1 -1
  235. data/node_modules/eslint-plugin-sonarjs/cjs/S100/rule.js +1 -1
  236. data/node_modules/eslint-plugin-sonarjs/cjs/S101/generated-meta.js +1 -1
  237. data/node_modules/eslint-plugin-sonarjs/cjs/S101/index.js +1 -1
  238. data/node_modules/eslint-plugin-sonarjs/cjs/S101/meta.js +1 -1
  239. data/node_modules/eslint-plugin-sonarjs/cjs/S101/rule.js +1 -1
  240. data/node_modules/eslint-plugin-sonarjs/cjs/S104/generated-meta.js +1 -1
  241. data/node_modules/eslint-plugin-sonarjs/cjs/S104/index.js +1 -1
  242. data/node_modules/eslint-plugin-sonarjs/cjs/S104/meta.js +1 -1
  243. data/node_modules/eslint-plugin-sonarjs/cjs/S104/rule.js +1 -1
  244. data/node_modules/eslint-plugin-sonarjs/cjs/S105/generated-meta.js +1 -1
  245. data/node_modules/eslint-plugin-sonarjs/cjs/S105/index.js +1 -1
  246. data/node_modules/eslint-plugin-sonarjs/cjs/S105/meta.js +1 -1
  247. data/node_modules/eslint-plugin-sonarjs/cjs/S105/rule.js +1 -1
  248. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/generated-meta.js +1 -1
  249. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/index.js +1 -1
  250. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/meta.js +1 -1
  251. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/rule.js +1 -1
  252. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/generated-meta.js +1 -1
  253. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/index.js +1 -1
  254. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/meta.js +1 -1
  255. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/rule.js +1 -1
  256. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/generated-meta.js +1 -1
  257. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/index.js +1 -1
  258. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/meta.js +1 -1
  259. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/rule.js +1 -1
  260. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/generated-meta.js +1 -1
  261. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/index.js +1 -1
  262. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/meta.js +1 -1
  263. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/rule.js +1 -1
  264. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/generated-meta.js +1 -1
  265. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/index.js +1 -1
  266. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/meta.js +1 -1
  267. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/rule.js +1 -1
  268. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/generated-meta.js +1 -1
  269. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/index.js +1 -1
  270. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/meta.js +1 -1
  271. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/rule.js +1 -1
  272. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/generated-meta.js +1 -1
  273. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/index.js +1 -1
  274. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/meta.js +1 -1
  275. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/generated-meta.js +1 -1
  276. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/index.js +1 -1
  277. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/meta.js +1 -1
  278. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/rule.js +1 -1
  279. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/generated-meta.js +1 -1
  280. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/index.js +1 -1
  281. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/meta.js +1 -1
  282. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/rule.js +1 -1
  283. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/generated-meta.js +1 -1
  284. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/index.js +1 -1
  285. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/meta.js +1 -1
  286. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/rule.js +1 -1
  287. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/generated-meta.js +1 -1
  288. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/index.js +1 -1
  289. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/meta.js +1 -1
  290. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/rule.js +1 -1
  291. data/node_modules/eslint-plugin-sonarjs/cjs/S117/generated-meta.js +1 -1
  292. data/node_modules/eslint-plugin-sonarjs/cjs/S117/index.js +1 -1
  293. data/node_modules/eslint-plugin-sonarjs/cjs/S117/meta.js +1 -1
  294. data/node_modules/eslint-plugin-sonarjs/cjs/S117/rule.js +1 -1
  295. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/generated-meta.js +1 -1
  296. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/index.js +1 -1
  297. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/meta.js +1 -1
  298. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/rule.js +1 -1
  299. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/generated-meta.js +1 -1
  300. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/index.js +1 -1
  301. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/meta.js +1 -1
  302. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/rule.js +1 -1
  303. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/generated-meta.js +1 -1
  304. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/index.js +1 -1
  305. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/meta.js +1 -1
  306. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/rule.js +1 -1
  307. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/generated-meta.js +1 -1
  308. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/index.js +1 -1
  309. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/meta.js +1 -1
  310. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/rule.js +1 -1
  311. data/node_modules/eslint-plugin-sonarjs/cjs/S124/generated-meta.js +1 -1
  312. data/node_modules/eslint-plugin-sonarjs/cjs/S124/index.js +1 -1
  313. data/node_modules/eslint-plugin-sonarjs/cjs/S124/meta.js +1 -1
  314. data/node_modules/eslint-plugin-sonarjs/cjs/S124/rule.js +1 -1
  315. data/node_modules/eslint-plugin-sonarjs/cjs/S125/generated-meta.js +1 -1
  316. data/node_modules/eslint-plugin-sonarjs/cjs/S125/index.js +1 -1
  317. data/node_modules/eslint-plugin-sonarjs/cjs/S125/meta.js +1 -1
  318. data/node_modules/eslint-plugin-sonarjs/cjs/S125/rule.js +15 -35
  319. data/node_modules/eslint-plugin-sonarjs/cjs/S126/generated-meta.js +1 -1
  320. data/node_modules/eslint-plugin-sonarjs/cjs/S126/index.js +1 -1
  321. data/node_modules/eslint-plugin-sonarjs/cjs/S126/meta.js +1 -1
  322. data/node_modules/eslint-plugin-sonarjs/cjs/S126/rule.js +1 -1
  323. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/generated-meta.js +1 -1
  324. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/index.js +1 -1
  325. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/meta.js +1 -1
  326. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/rule.js +1 -1
  327. data/node_modules/eslint-plugin-sonarjs/cjs/S128/generated-meta.js +1 -1
  328. data/node_modules/eslint-plugin-sonarjs/cjs/S128/index.js +1 -1
  329. data/node_modules/eslint-plugin-sonarjs/cjs/S128/meta.js +1 -1
  330. data/node_modules/eslint-plugin-sonarjs/cjs/S128/rule.js +2 -5
  331. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/generated-meta.js +1 -1
  332. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/index.js +1 -1
  333. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/meta.js +1 -1
  334. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/rule.js +1 -1
  335. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/generated-meta.js +1 -1
  336. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/index.js +1 -1
  337. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/meta.js +1 -1
  338. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/rule.js +1 -1
  339. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/generated-meta.js +1 -1
  340. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/index.js +1 -1
  341. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/meta.js +1 -1
  342. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/rule.js +1 -1
  343. data/node_modules/eslint-plugin-sonarjs/cjs/S134/generated-meta.js +1 -1
  344. data/node_modules/eslint-plugin-sonarjs/cjs/S134/index.js +1 -1
  345. data/node_modules/eslint-plugin-sonarjs/cjs/S134/meta.js +1 -1
  346. data/node_modules/eslint-plugin-sonarjs/cjs/S134/rule.js +1 -1
  347. data/node_modules/eslint-plugin-sonarjs/cjs/S135/generated-meta.js +1 -1
  348. data/node_modules/eslint-plugin-sonarjs/cjs/S135/index.js +1 -1
  349. data/node_modules/eslint-plugin-sonarjs/cjs/S135/meta.js +1 -1
  350. data/node_modules/eslint-plugin-sonarjs/cjs/S135/rule.js +1 -1
  351. data/node_modules/eslint-plugin-sonarjs/cjs/S138/generated-meta.js +1 -1
  352. data/node_modules/eslint-plugin-sonarjs/cjs/S138/index.js +1 -1
  353. data/node_modules/eslint-plugin-sonarjs/cjs/S138/meta.js +1 -1
  354. data/node_modules/eslint-plugin-sonarjs/cjs/S138/rule.js +1 -1
  355. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/generated-meta.js +1 -1
  356. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/index.js +1 -1
  357. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/meta.js +1 -1
  358. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/rule.js +1 -1
  359. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/generated-meta.js +1 -1
  360. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/index.js +1 -1
  361. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/meta.js +1 -1
  362. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/rule.js +1 -1
  363. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/generated-meta.js +1 -1
  364. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/index.js +1 -1
  365. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/meta.js +1 -1
  366. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/rule.js +1 -1
  367. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/generated-meta.js +1 -1
  368. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/index.js +1 -1
  369. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/meta.js +1 -1
  370. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/rule.js +1 -1
  371. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/generated-meta.js +1 -1
  372. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/index.js +1 -1
  373. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/meta.js +1 -1
  374. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/rule.js +1 -1
  375. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/generated-meta.js +1 -1
  376. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/index.js +1 -1
  377. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/meta.js +1 -1
  378. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/rule.js +1 -1
  379. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/generated-meta.js +1 -1
  380. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/index.js +1 -1
  381. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/meta.js +1 -1
  382. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/rule.js +1 -1
  383. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/generated-meta.js +1 -1
  384. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/index.js +1 -1
  385. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/meta.js +1 -1
  386. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/rule.js +1 -1
  387. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/generated-meta.js +1 -1
  388. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/index.js +1 -1
  389. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/meta.js +1 -1
  390. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/rule.js +1 -1
  391. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/generated-meta.js +1 -1
  392. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/index.js +1 -1
  393. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/meta.js +1 -1
  394. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/rule.js +1 -1
  395. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/generated-meta.js +1 -1
  396. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/index.js +1 -1
  397. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/meta.js +1 -1
  398. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/rule.js +1 -1
  399. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/generated-meta.js +1 -1
  400. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/index.js +1 -1
  401. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/meta.js +1 -1
  402. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/generated-meta.js +1 -1
  403. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/index.js +1 -1
  404. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/meta.js +1 -1
  405. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/rule.js +1 -1
  406. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/generated-meta.js +1 -1
  407. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/index.js +1 -1
  408. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/meta.js +1 -1
  409. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/rule.js +1 -1
  410. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/generated-meta.js +1 -1
  411. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/index.js +1 -1
  412. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/meta.js +1 -1
  413. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/rule.js +1 -1
  414. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/generated-meta.js +1 -1
  415. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/index.js +1 -1
  416. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/meta.js +1 -1
  417. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/rule.js +1 -1
  418. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/generated-meta.js +1 -1
  419. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/index.js +1 -1
  420. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/meta.js +1 -1
  421. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/rule.js +1 -1
  422. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/generated-meta.js +1 -1
  423. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/index.js +1 -1
  424. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/meta.js +1 -1
  425. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/rule.js +1 -1
  426. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/generated-meta.js +1 -1
  427. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/index.js +1 -1
  428. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/meta.js +1 -1
  429. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/rule.js +1 -1
  430. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/generated-meta.js +1 -1
  431. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/index.js +1 -1
  432. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/meta.js +1 -1
  433. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/rule.js +1 -1
  434. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/generated-meta.js +1 -1
  435. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/index.js +1 -1
  436. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/meta.js +1 -1
  437. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/rule.js +1 -1
  438. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/generated-meta.js +1 -1
  439. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/index.js +1 -1
  440. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/meta.js +1 -1
  441. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/rule.js +1 -1
  442. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/generated-meta.js +1 -1
  443. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/index.js +1 -1
  444. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/meta.js +1 -1
  445. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/rule.js +1 -1
  446. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/generated-meta.js +1 -1
  447. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/index.js +1 -1
  448. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/meta.js +1 -1
  449. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/rule.js +1 -1
  450. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/generated-meta.js +1 -1
  451. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/index.js +1 -1
  452. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/meta.js +1 -1
  453. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/rule.js +1 -1
  454. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/generated-meta.js +1 -1
  455. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/index.js +1 -1
  456. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/meta.js +1 -1
  457. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/rule.js +1 -1
  458. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/generated-meta.js +1 -1
  459. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/index.js +1 -1
  460. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/meta.js +1 -1
  461. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/rule.js +1 -1
  462. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/generated-meta.js +1 -1
  463. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/index.js +1 -1
  464. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/meta.js +1 -1
  465. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/rule.js +1 -1
  466. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/generated-meta.js +1 -1
  467. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/index.js +1 -1
  468. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/meta.js +1 -1
  469. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/rule.js +1 -1
  470. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/generated-meta.js +1 -1
  471. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/index.js +1 -1
  472. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/meta.js +1 -1
  473. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/rule.js +1 -1
  474. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/generated-meta.js +1 -1
  475. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/index.js +1 -1
  476. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/meta.js +1 -1
  477. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/rule.js +1 -1
  478. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/generated-meta.js +1 -1
  479. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/index.js +1 -1
  480. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/meta.js +1 -1
  481. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/rule.js +1 -1
  482. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/generated-meta.js +1 -1
  483. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/index.js +1 -1
  484. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/meta.js +1 -1
  485. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/rule.js +1 -1
  486. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/generated-meta.js +1 -1
  487. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/index.js +1 -1
  488. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/meta.js +1 -1
  489. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/rule.js +1 -1
  490. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/generated-meta.js +1 -1
  491. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/index.js +1 -1
  492. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/meta.js +1 -1
  493. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/rule.js +1 -1
  494. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/generated-meta.js +1 -1
  495. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/index.js +1 -1
  496. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/meta.js +1 -1
  497. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/rule.js +1 -1
  498. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/generated-meta.js +1 -1
  499. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/index.js +1 -1
  500. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/meta.js +1 -1
  501. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/rule.js +1 -1
  502. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/generated-meta.js +1 -1
  503. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/index.js +1 -1
  504. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/meta.js +1 -1
  505. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/rule.js +1 -1
  506. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/generated-meta.js +1 -1
  507. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/index.js +1 -1
  508. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/meta.js +1 -1
  509. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/rule.js +1 -1
  510. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/generated-meta.js +1 -1
  511. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/index.js +1 -1
  512. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/meta.js +1 -1
  513. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/rule.js +1 -1
  514. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/generated-meta.js +1 -1
  515. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/index.js +1 -1
  516. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/meta.js +1 -1
  517. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/rule.js +1 -1
  518. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/generated-meta.js +1 -1
  519. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/index.js +1 -1
  520. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/meta.js +1 -1
  521. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/rule.js +1 -1
  522. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/generated-meta.js +1 -1
  523. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/index.js +1 -1
  524. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/meta.js +1 -1
  525. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/rule.js +1 -1
  526. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/generated-meta.js +1 -1
  527. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/index.js +1 -1
  528. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/meta.js +1 -1
  529. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/rule.js +1 -1
  530. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/generated-meta.js +1 -1
  531. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/index.js +1 -1
  532. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/meta.js +1 -1
  533. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/rule.js +1 -1
  534. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/generated-meta.js +1 -1
  535. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/index.js +1 -1
  536. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/meta.js +1 -1
  537. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/rule.js +1 -1
  538. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/generated-meta.js +1 -1
  539. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/index.js +1 -1
  540. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/meta.js +1 -1
  541. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/rule.js +1 -1
  542. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/generated-meta.js +1 -1
  543. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/index.js +1 -1
  544. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/meta.js +1 -1
  545. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/rule.js +1 -1
  546. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/generated-meta.js +1 -1
  547. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/index.js +1 -1
  548. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/meta.js +1 -1
  549. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/rule.js +1 -1
  550. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/generated-meta.js +1 -1
  551. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/index.js +1 -1
  552. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/meta.js +1 -1
  553. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/rule.js +1 -1
  554. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/generated-meta.js +1 -1
  555. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/index.js +1 -1
  556. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/meta.js +1 -1
  557. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/rule.js +1 -1
  558. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/generated-meta.js +1 -1
  559. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/index.js +1 -1
  560. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/meta.js +1 -1
  561. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/rule.js +1 -1
  562. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/generated-meta.js +1 -1
  563. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/index.js +1 -1
  564. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/meta.js +1 -1
  565. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/rule.js +1 -1
  566. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/generated-meta.js +1 -1
  567. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/index.js +1 -1
  568. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/meta.js +1 -1
  569. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/rule.js +1 -1
  570. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/generated-meta.js +1 -1
  571. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/index.js +1 -1
  572. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/meta.js +1 -1
  573. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/rule.js +1 -1
  574. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/generated-meta.js +1 -1
  575. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/index.js +1 -1
  576. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/meta.js +1 -1
  577. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/generated-meta.js +1 -1
  578. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/index.js +1 -1
  579. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/meta.js +1 -1
  580. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/rule.js +1 -1
  581. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/generated-meta.js +1 -1
  582. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/index.js +1 -1
  583. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/meta.js +1 -1
  584. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/rule.js +1 -1
  585. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/generated-meta.js +1 -1
  586. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/index.js +1 -1
  587. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/meta.js +1 -1
  588. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/rule.js +1 -1
  589. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/generated-meta.js +1 -1
  590. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/index.js +1 -1
  591. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/meta.js +1 -1
  592. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/rule.js +1 -1
  593. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/generated-meta.js +1 -1
  594. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/index.js +1 -1
  595. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/meta.js +1 -1
  596. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/rule.js +1 -1
  597. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/generated-meta.js +1 -1
  598. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/index.js +1 -1
  599. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/meta.js +1 -1
  600. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/rule.js +1 -1
  601. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/generated-meta.js +1 -1
  602. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/index.js +1 -1
  603. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/meta.js +1 -1
  604. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/rule.js +1 -1
  605. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/generated-meta.js +1 -1
  606. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/index.js +1 -1
  607. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/meta.js +1 -1
  608. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/rule.js +1 -1
  609. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/generated-meta.js +1 -1
  610. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/index.js +1 -1
  611. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/meta.js +1 -1
  612. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/rule.js +1 -1
  613. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/generated-meta.js +1 -1
  614. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/index.js +1 -1
  615. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/meta.js +1 -1
  616. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/rule.js +1 -1
  617. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/generated-meta.js +1 -1
  618. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/index.js +1 -1
  619. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/meta.js +1 -1
  620. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/rule.js +1 -1
  621. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/generated-meta.js +1 -1
  622. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/index.js +1 -1
  623. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/meta.js +1 -1
  624. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/rule.js +1 -1
  625. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/generated-meta.js +1 -1
  626. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/index.js +1 -1
  627. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/meta.js +1 -1
  628. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/rule.js +1 -1
  629. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/generated-meta.js +1 -1
  630. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/index.js +1 -1
  631. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/meta.js +1 -1
  632. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/rule.js +1 -1
  633. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/generated-meta.js +1 -1
  634. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/index.js +1 -1
  635. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/meta.js +1 -1
  636. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/rule.js +1 -1
  637. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/generated-meta.js +1 -1
  638. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/index.js +1 -1
  639. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/meta.js +1 -1
  640. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/rule.js +1 -1
  641. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/generated-meta.js +1 -1
  642. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/index.js +1 -1
  643. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/meta.js +1 -1
  644. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/rule.js +1 -1
  645. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/generated-meta.js +1 -1
  646. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/index.js +1 -1
  647. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/meta.js +1 -1
  648. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/rule.js +1 -1
  649. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/generated-meta.js +1 -1
  650. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/index.js +1 -1
  651. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/meta.js +1 -1
  652. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/rule.js +1 -1
  653. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/generated-meta.js +1 -1
  654. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/index.js +1 -1
  655. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/meta.js +1 -1
  656. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/rule.js +1 -1
  657. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/generated-meta.js +1 -1
  658. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/index.js +1 -1
  659. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/meta.js +1 -1
  660. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/rule.js +1 -1
  661. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/generated-meta.js +1 -1
  662. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/index.js +1 -1
  663. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/meta.js +1 -1
  664. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/rule.js +1 -1
  665. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/generated-meta.js +1 -1
  666. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/index.js +1 -1
  667. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/meta.js +1 -1
  668. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/rule.js +1 -1
  669. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/generated-meta.js +1 -1
  670. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/index.js +1 -1
  671. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/meta.js +1 -1
  672. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/rule.js +1 -1
  673. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/generated-meta.js +1 -1
  674. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/index.js +1 -1
  675. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/meta.js +1 -1
  676. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/rule.js +1 -1
  677. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/generated-meta.js +1 -1
  678. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/index.js +1 -1
  679. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/meta.js +1 -1
  680. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/rule.js +1 -1
  681. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/generated-meta.js +1 -1
  682. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/index.js +1 -1
  683. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/meta.js +1 -1
  684. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/rule.js +1 -1
  685. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/generated-meta.js +1 -1
  686. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/index.js +1 -1
  687. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/meta.js +1 -1
  688. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/rule.js +1 -1
  689. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/generated-meta.js +1 -1
  690. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/index.js +1 -1
  691. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/meta.js +1 -1
  692. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/rule.js +1 -1
  693. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/generated-meta.js +1 -1
  694. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/index.js +1 -1
  695. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/meta.js +1 -1
  696. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/rule.js +1 -1
  697. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/generated-meta.js +1 -1
  698. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/index.js +1 -1
  699. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/meta.js +1 -1
  700. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/rule.js +1 -1
  701. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/generated-meta.js +1 -1
  702. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/index.js +1 -1
  703. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/meta.js +1 -1
  704. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/rule.js +1 -1
  705. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/generated-meta.js +1 -1
  706. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/index.js +1 -1
  707. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/meta.js +1 -1
  708. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/rule.js +1 -1
  709. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/generated-meta.js +1 -1
  710. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/index.js +1 -1
  711. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/meta.js +1 -1
  712. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/rule.js +1 -1
  713. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/generated-meta.js +1 -1
  714. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/index.js +1 -1
  715. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/meta.js +1 -1
  716. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/rule.js +1 -1
  717. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/generated-meta.js +1 -1
  718. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/index.js +1 -1
  719. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/meta.js +1 -1
  720. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/rule.js +1 -1
  721. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/generated-meta.js +1 -1
  722. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/index.js +1 -1
  723. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/meta.js +1 -1
  724. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/rule.js +1 -1
  725. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/generated-meta.js +1 -1
  726. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/index.js +1 -1
  727. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/meta.js +1 -1
  728. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/rule.js +1 -1
  729. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/generated-meta.js +2 -2
  730. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/index.js +1 -1
  731. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/meta.js +1 -1
  732. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/rule.js +3 -2
  733. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/generated-meta.js +1 -1
  734. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/index.js +1 -1
  735. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/meta.js +1 -1
  736. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/rule.js +1 -1
  737. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/generated-meta.js +1 -1
  738. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/index.js +1 -1
  739. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/meta.js +1 -1
  740. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/rule.js +1 -1
  741. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/generated-meta.js +1 -1
  742. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/index.js +1 -1
  743. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/meta.js +1 -1
  744. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/rule.js +1 -1
  745. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/generated-meta.js +1 -1
  746. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/index.js +1 -1
  747. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/meta.js +1 -1
  748. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/generated-meta.js +1 -1
  749. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/index.js +1 -1
  750. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/meta.js +1 -1
  751. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/rule.js +1 -1
  752. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/generated-meta.js +1 -1
  753. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/index.js +1 -1
  754. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/meta.js +1 -1
  755. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/rule.js +21 -2
  756. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/generated-meta.js +1 -1
  757. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/index.js +1 -1
  758. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/meta.js +1 -1
  759. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/generated-meta.js +1 -1
  760. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/index.js +1 -1
  761. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/meta.js +1 -1
  762. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/rule.js +1 -1
  763. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/generated-meta.js +1 -1
  764. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/index.js +1 -1
  765. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/meta.js +1 -1
  766. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/rule.js +1 -1
  767. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/generated-meta.js +1 -1
  768. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/index.js +1 -1
  769. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/meta.js +1 -1
  770. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/rule.js +1 -1
  771. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/generated-meta.js +1 -1
  772. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/index.js +1 -1
  773. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/meta.js +1 -1
  774. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/rule.js +1 -1
  775. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/generated-meta.js +1 -1
  776. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/index.js +1 -1
  777. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/meta.js +1 -1
  778. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/rule.js +1 -1
  779. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/generated-meta.js +1 -1
  780. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/index.js +1 -1
  781. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/meta.js +1 -1
  782. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/rule.js +1 -1
  783. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/generated-meta.js +1 -1
  784. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/index.js +1 -1
  785. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/meta.js +1 -1
  786. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/rule.js +1 -1
  787. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/generated-meta.js +1 -1
  788. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/index.js +1 -1
  789. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/meta.js +1 -1
  790. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/rule.js +1 -1
  791. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/generated-meta.js +1 -1
  792. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/index.js +1 -1
  793. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/meta.js +1 -1
  794. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/rule.js +1 -1
  795. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/generated-meta.js +1 -1
  796. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/index.js +1 -1
  797. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/meta.js +1 -1
  798. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/rule.js +1 -1
  799. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/generated-meta.js +1 -1
  800. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/index.js +1 -1
  801. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/meta.js +1 -1
  802. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/rule.js +1 -1
  803. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/generated-meta.js +1 -1
  804. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/index.js +1 -1
  805. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/meta.js +1 -1
  806. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/rule.js +1 -1
  807. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/generated-meta.js +1 -1
  808. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/index.js +1 -1
  809. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/meta.js +1 -1
  810. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/rule.js +1 -1
  811. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/generated-meta.js +1 -1
  812. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/index.js +1 -1
  813. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/meta.js +1 -1
  814. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/rule.js +1 -1
  815. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/generated-meta.js +1 -1
  816. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/index.js +1 -1
  817. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/meta.js +1 -1
  818. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/rule.js +1 -1
  819. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/generated-meta.js +1 -1
  820. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/index.js +1 -1
  821. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/meta.js +1 -1
  822. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/rule.js +1 -1
  823. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/generated-meta.js +1 -1
  824. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/index.js +1 -1
  825. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/meta.js +1 -1
  826. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/rule.js +1 -1
  827. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/generated-meta.js +1 -1
  828. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/index.js +1 -1
  829. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/meta.js +1 -1
  830. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/rule.js +1 -1
  831. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/generated-meta.js +1 -1
  832. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/index.js +1 -1
  833. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/meta.js +1 -1
  834. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/rule.js +1 -1
  835. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/generated-meta.js +1 -1
  836. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/index.js +1 -1
  837. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/meta.js +1 -1
  838. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/rule.js +1 -1
  839. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/generated-meta.js +1 -1
  840. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/index.js +1 -1
  841. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/meta.js +1 -1
  842. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.aws.js +1 -1
  843. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.js +1 -1
  844. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.lib.js +1 -1
  845. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/generated-meta.js +1 -1
  846. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/index.js +1 -1
  847. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/meta.js +1 -1
  848. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/rule.js +1 -1
  849. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/generated-meta.js +1 -1
  850. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/index.js +1 -1
  851. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/meta.js +1 -1
  852. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/rule.js +1 -1
  853. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/generated-meta.js +1 -1
  854. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/index.js +1 -1
  855. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/meta.js +1 -1
  856. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/rule.js +1 -1
  857. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/generated-meta.js +1 -1
  858. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/index.js +1 -1
  859. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/meta.js +1 -1
  860. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/rule.js +1 -1
  861. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/generated-meta.js +1 -1
  862. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/index.js +1 -1
  863. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/meta.js +1 -1
  864. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/rule.js +1 -1
  865. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/generated-meta.js +1 -1
  866. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/index.js +1 -1
  867. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/meta.js +1 -1
  868. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/rule.js +1 -1
  869. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/generated-meta.js +1 -1
  870. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/index.js +1 -1
  871. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/meta.js +1 -1
  872. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/rule.js +1 -1
  873. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/generated-meta.js +1 -1
  874. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/index.js +1 -1
  875. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/meta.js +1 -1
  876. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/rule.js +1 -1
  877. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/generated-meta.js +1 -1
  878. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/index.js +1 -1
  879. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/meta.js +1 -1
  880. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/rule.js +1 -1
  881. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/generated-meta.js +1 -1
  882. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/index.js +1 -1
  883. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/meta.js +1 -1
  884. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/rule.js +1 -1
  885. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/generated-meta.js +1 -1
  886. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/index.js +1 -1
  887. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/meta.js +1 -1
  888. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/rule.js +1 -1
  889. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/generated-meta.js +1 -1
  890. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/index.js +1 -1
  891. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/meta.js +1 -1
  892. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/rule.js +1 -1
  893. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/generated-meta.js +1 -1
  894. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/index.js +1 -1
  895. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/meta.js +1 -1
  896. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/rule.js +1 -1
  897. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/generated-meta.js +1 -1
  898. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/index.js +1 -1
  899. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/meta.js +1 -1
  900. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/rule.js +1 -1
  901. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/generated-meta.js +1 -1
  902. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/index.js +1 -1
  903. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/meta.js +1 -1
  904. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/rule.js +1 -1
  905. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/generated-meta.js +1 -1
  906. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/index.js +1 -1
  907. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/meta.js +1 -1
  908. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/rule.js +1 -1
  909. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/generated-meta.js +1 -1
  910. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/index.js +1 -1
  911. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/meta.js +1 -1
  912. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/rule.js +1 -1
  913. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/generated-meta.js +1 -1
  914. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/index.js +1 -1
  915. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/meta.js +1 -1
  916. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/rule.js +1 -1
  917. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/generated-meta.js +1 -1
  918. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/index.js +1 -1
  919. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/meta.js +1 -1
  920. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/rule.js +1 -1
  921. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/generated-meta.js +1 -1
  922. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/index.js +1 -1
  923. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/meta.js +1 -1
  924. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/rule.js +1 -1
  925. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/generated-meta.js +1 -1
  926. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/index.js +1 -1
  927. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/meta.js +1 -1
  928. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/rule.js +1 -1
  929. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/generated-meta.js +1 -1
  930. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/index.js +1 -1
  931. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/meta.js +1 -1
  932. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/rule.js +1 -1
  933. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/generated-meta.js +1 -1
  934. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/index.js +1 -1
  935. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/meta.js +1 -1
  936. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/rule.js +1 -1
  937. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/generated-meta.js +1 -1
  938. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/index.js +1 -1
  939. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/meta.js +1 -1
  940. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/rule.js +1 -1
  941. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/generated-meta.js +1 -1
  942. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/index.js +1 -1
  943. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/meta.js +1 -1
  944. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/rule.js +1 -1
  945. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/generated-meta.js +1 -1
  946. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/index.js +1 -1
  947. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/meta.js +1 -1
  948. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/rule.js +1 -1
  949. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/generated-meta.js +1 -1
  950. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/index.js +1 -1
  951. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/meta.js +1 -1
  952. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/rule.js +1 -1
  953. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/generated-meta.js +1 -1
  954. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/index.js +1 -1
  955. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/meta.js +1 -1
  956. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/rule.js +1 -1
  957. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/generated-meta.js +1 -1
  958. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/index.js +1 -1
  959. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/meta.js +1 -1
  960. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/rule.js +1 -1
  961. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/generated-meta.js +1 -1
  962. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/index.js +1 -1
  963. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/meta.js +1 -1
  964. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/rule.js +1 -1
  965. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/generated-meta.js +1 -1
  966. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/index.js +1 -1
  967. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/meta.js +1 -1
  968. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.aws.js +1 -1
  969. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.js +1 -1
  970. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.lib.js +1 -1
  971. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/generated-meta.js +1 -1
  972. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/index.js +1 -1
  973. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/meta.js +1 -1
  974. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/rule.js +1 -1
  975. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/generated-meta.js +1 -1
  976. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/index.js +1 -1
  977. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/meta.js +1 -1
  978. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/rule.js +1 -1
  979. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/generated-meta.js +1 -1
  980. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/index.js +1 -1
  981. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/meta.js +1 -1
  982. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/rule.js +1 -1
  983. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/generated-meta.js +1 -1
  984. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/index.js +1 -1
  985. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/meta.js +1 -1
  986. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/rule.js +1 -1
  987. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/generated-meta.js +1 -1
  988. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/index.js +1 -1
  989. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/meta.js +1 -1
  990. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/rule.js +1 -1
  991. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/generated-meta.js +1 -1
  992. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/index.js +1 -1
  993. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/meta.js +1 -1
  994. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/rule.js +1 -1
  995. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/generated-meta.js +1 -1
  996. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/index.js +1 -1
  997. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/meta.js +1 -1
  998. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/rule.js +1 -1
  999. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/generated-meta.js +1 -1
  1000. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/index.js +1 -1
  1001. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/meta.js +1 -1
  1002. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/rule.js +1 -1
  1003. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/generated-meta.js +1 -1
  1004. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/index.js +1 -1
  1005. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/meta.js +1 -1
  1006. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/rule.js +1 -1
  1007. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/generated-meta.js +1 -1
  1008. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/index.js +1 -1
  1009. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/meta.js +1 -1
  1010. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/rule.js +1 -1
  1011. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/generated-meta.js +1 -1
  1012. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/index.js +1 -1
  1013. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/meta.js +1 -1
  1014. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/rule.js +1 -1
  1015. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/generated-meta.js +1 -1
  1016. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/index.js +1 -1
  1017. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/meta.js +1 -1
  1018. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/rule.js +1 -1
  1019. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/generated-meta.js +1 -1
  1020. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/index.js +1 -1
  1021. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/meta.js +1 -1
  1022. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/rule.js +1 -1
  1023. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/generated-meta.js +1 -1
  1024. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/index.js +1 -1
  1025. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/meta.js +1 -1
  1026. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/rule.js +1 -1
  1027. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/generated-meta.js +1 -1
  1028. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/index.js +1 -1
  1029. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/meta.js +1 -1
  1030. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/rule.js +1 -1
  1031. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/generated-meta.js +1 -1
  1032. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/index.js +1 -1
  1033. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/meta.js +1 -1
  1034. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/rule.js +1 -1
  1035. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/generated-meta.js +3 -3
  1036. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/index.js +1 -1
  1037. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/meta.js +1 -1
  1038. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/rule.js +1 -1
  1039. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/generated-meta.js +1 -1
  1040. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/index.js +1 -1
  1041. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/meta.js +1 -1
  1042. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/rule.js +1 -1
  1043. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/generated-meta.js +1 -1
  1044. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/index.js +1 -1
  1045. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/meta.js +1 -1
  1046. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/rule.js +1 -1
  1047. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/generated-meta.js +1 -1
  1048. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/index.js +1 -1
  1049. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/meta.js +1 -1
  1050. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/rule.js +1 -1
  1051. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/generated-meta.js +1 -1
  1052. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/index.js +1 -1
  1053. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/meta.js +1 -1
  1054. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/rule.js +1 -1
  1055. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/generated-meta.js +1 -1
  1056. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/index.js +1 -1
  1057. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/meta.js +1 -1
  1058. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/rule.js +1 -1
  1059. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/generated-meta.js +1 -1
  1060. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/index.js +1 -1
  1061. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/meta.js +1 -1
  1062. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/rule.js +1 -1
  1063. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/generated-meta.js +1 -1
  1064. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/index.js +1 -1
  1065. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/meta.js +1 -1
  1066. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/rule.js +1 -1
  1067. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/generated-meta.js +1 -1
  1068. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/index.js +1 -1
  1069. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/meta.js +1 -1
  1070. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/rule.js +1 -1
  1071. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/generated-meta.js +1 -1
  1072. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/index.js +1 -1
  1073. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/meta.js +1 -1
  1074. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/rule.js +1 -1
  1075. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/generated-meta.js +1 -1
  1076. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/index.js +1 -1
  1077. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/meta.js +1 -1
  1078. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/rule.js +1 -1
  1079. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/generated-meta.js +1 -1
  1080. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/index.js +1 -1
  1081. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/meta.js +1 -1
  1082. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/rule.js +1 -1
  1083. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/generated-meta.js +1 -1
  1084. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/index.js +1 -1
  1085. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/meta.js +1 -1
  1086. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/rule.js +1 -1
  1087. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/generated-meta.js +1 -1
  1088. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/index.js +1 -1
  1089. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/meta.js +1 -1
  1090. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/rule.js +1 -1
  1091. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/generated-meta.js +1 -1
  1092. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/index.js +1 -1
  1093. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/meta.js +1 -1
  1094. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/rule.js +1 -1
  1095. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/generated-meta.js +1 -1
  1096. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/index.js +1 -1
  1097. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/meta.js +1 -1
  1098. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/rule.js +1 -1
  1099. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/generated-meta.js +1 -1
  1100. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/index.js +1 -1
  1101. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/meta.js +1 -1
  1102. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/rule.js +1 -1
  1103. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/generated-meta.js +1 -1
  1104. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/index.js +1 -1
  1105. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/meta.js +1 -1
  1106. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/rule.js +1 -1
  1107. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/generated-meta.js +1 -1
  1108. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/index.js +1 -1
  1109. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/meta.js +1 -1
  1110. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/rule.js +1 -1
  1111. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/generated-meta.js +1 -1
  1112. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/index.js +1 -1
  1113. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/meta.js +1 -1
  1114. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/rule.js +1 -1
  1115. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/generated-meta.js +1 -1
  1116. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/index.js +1 -1
  1117. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/meta.js +1 -1
  1118. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/rule.js +1 -1
  1119. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/generated-meta.js +1 -1
  1120. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/index.js +1 -1
  1121. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/meta.js +1 -1
  1122. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/rule.js +1 -1
  1123. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/generated-meta.js +1 -1
  1124. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/index.js +1 -1
  1125. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/meta.js +1 -1
  1126. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/rule.js +1 -1
  1127. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/generated-meta.js +1 -1
  1128. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/index.js +1 -1
  1129. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/meta.js +1 -1
  1130. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/rule.js +1 -1
  1131. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/generated-meta.js +1 -1
  1132. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/index.js +1 -1
  1133. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/meta.js +1 -1
  1134. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/rule.js +1 -1
  1135. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/generated-meta.js +1 -1
  1136. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/index.js +1 -1
  1137. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/meta.js +1 -1
  1138. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/rule.js +1 -1
  1139. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/generated-meta.js +1 -1
  1140. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/index.js +1 -1
  1141. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/meta.js +1 -1
  1142. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/rule.js +1 -1
  1143. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/generated-meta.js +1 -1
  1144. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/index.js +1 -1
  1145. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/meta.js +1 -1
  1146. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/rule.js +1 -1
  1147. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/generated-meta.js +1 -1
  1148. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/index.js +1 -1
  1149. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/meta.js +1 -1
  1150. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/rule.js +1 -1
  1151. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/generated-meta.js +1 -1
  1152. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/index.js +1 -1
  1153. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/meta.js +1 -1
  1154. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/rule.js +1 -1
  1155. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/generated-meta.js +1 -1
  1156. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/index.js +1 -1
  1157. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/meta.js +1 -1
  1158. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/rule.js +1 -1
  1159. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/generated-meta.js +1 -1
  1160. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/index.js +1 -1
  1161. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/meta.js +1 -1
  1162. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/rule.js +1 -1
  1163. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/generated-meta.js +1 -1
  1164. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/index.js +1 -1
  1165. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/meta.js +1 -1
  1166. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/rule.js +1 -1
  1167. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/generated-meta.js +1 -1
  1168. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/index.js +1 -1
  1169. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/meta.js +1 -1
  1170. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/rule.js +1 -1
  1171. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/generated-meta.js +1 -1
  1172. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/index.js +1 -1
  1173. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/meta.js +1 -1
  1174. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/rule.js +1 -1
  1175. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/generated-meta.js +1 -1
  1176. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/index.js +1 -1
  1177. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/meta.js +1 -1
  1178. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/rule.js +1 -1
  1179. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/generated-meta.js +1 -1
  1180. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/index.js +1 -1
  1181. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/meta.js +1 -1
  1182. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/rule.js +1 -1
  1183. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/generated-meta.js +1 -1
  1184. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/index.js +1 -1
  1185. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/meta.js +1 -1
  1186. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/rule.js +1 -1
  1187. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/generated-meta.js +1 -1
  1188. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/index.js +1 -1
  1189. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/meta.js +1 -1
  1190. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/rule.js +1 -1
  1191. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/generated-meta.js +1 -1
  1192. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/index.js +1 -1
  1193. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/meta.js +1 -1
  1194. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/rule.js +1 -1
  1195. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/generated-meta.js +1 -1
  1196. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/index.js +1 -1
  1197. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/meta.js +1 -1
  1198. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/rule.js +1 -1
  1199. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/generated-meta.js +1 -1
  1200. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/index.js +1 -1
  1201. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/meta.js +1 -1
  1202. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/rule.js +1 -1
  1203. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/generated-meta.js +1 -1
  1204. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/index.js +1 -1
  1205. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/meta.js +1 -1
  1206. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/rule.js +1 -1
  1207. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/generated-meta.js +1 -1
  1208. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/index.js +1 -1
  1209. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/meta.js +1 -1
  1210. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/rule.js +1 -1
  1211. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/generated-meta.js +1 -1
  1212. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/index.js +1 -1
  1213. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/meta.js +1 -1
  1214. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/rule.js +2 -2
  1215. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/generated-meta.js +1 -1
  1216. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/index.js +1 -1
  1217. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/meta.js +1 -1
  1218. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/rule.js +1 -1
  1219. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/generated-meta.js +1 -1
  1220. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/index.js +1 -1
  1221. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/meta.js +1 -1
  1222. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/rule.js +1 -1
  1223. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/generated-meta.js +1 -1
  1224. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/index.js +1 -1
  1225. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/meta.js +1 -1
  1226. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/rule.js +1 -1
  1227. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/generated-meta.js +1 -1
  1228. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/index.js +1 -1
  1229. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/meta.js +1 -1
  1230. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/rule.js +1 -1
  1231. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/generated-meta.js +1 -1
  1232. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/index.js +1 -1
  1233. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/meta.js +1 -1
  1234. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/rule.js +1 -1
  1235. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/generated-meta.js +1 -1
  1236. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/index.js +1 -1
  1237. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/meta.js +1 -1
  1238. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/rule.js +1 -1
  1239. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/generated-meta.js +21 -2
  1240. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/index.js +1 -1
  1241. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/meta.js +1 -1
  1242. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/rule.js +2 -21
  1243. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/generated-meta.js +1 -1
  1244. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/index.js +1 -1
  1245. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/meta.js +1 -1
  1246. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/rule.js +1 -1
  1247. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/generated-meta.js +1 -1
  1248. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/index.js +1 -1
  1249. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/meta.js +1 -1
  1250. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/rule.js +1 -1
  1251. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/generated-meta.js +1 -1
  1252. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/index.js +1 -1
  1253. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/meta.js +1 -1
  1254. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/rule.js +1 -1
  1255. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/generated-meta.js +1 -1
  1256. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/index.js +1 -1
  1257. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/meta.js +1 -1
  1258. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/rule.js +1 -1
  1259. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/generated-meta.js +1 -1
  1260. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/index.js +1 -1
  1261. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/meta.js +1 -1
  1262. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/rule.js +1 -1
  1263. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/generated-meta.js +1 -1
  1264. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/index.js +1 -1
  1265. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/meta.js +1 -1
  1266. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/rule.js +1 -1
  1267. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/generated-meta.js +1 -1
  1268. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/index.js +1 -1
  1269. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/meta.js +1 -1
  1270. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/rule.js +1 -1
  1271. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/generated-meta.js +1 -1
  1272. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/index.js +1 -1
  1273. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/meta.js +1 -1
  1274. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/rule.js +1 -1
  1275. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/generated-meta.js +1 -1
  1276. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/index.js +1 -1
  1277. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/meta.js +1 -1
  1278. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/rule.js +1 -1
  1279. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/generated-meta.js +1 -1
  1280. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/index.js +1 -1
  1281. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/meta.js +1 -1
  1282. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/generated-meta.js +1 -1
  1283. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/index.js +1 -1
  1284. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/meta.js +1 -1
  1285. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/rule.js +1 -1
  1286. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/generated-meta.js +1 -1
  1287. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/index.js +1 -1
  1288. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/meta.js +1 -1
  1289. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/rule.js +1 -1
  1290. data/node_modules/eslint-plugin-sonarjs/cjs/S881/generated-meta.js +1 -1
  1291. data/node_modules/eslint-plugin-sonarjs/cjs/S881/index.js +1 -1
  1292. data/node_modules/eslint-plugin-sonarjs/cjs/S881/meta.js +1 -1
  1293. data/node_modules/eslint-plugin-sonarjs/cjs/S881/rule.js +1 -1
  1294. data/node_modules/eslint-plugin-sonarjs/cjs/S888/generated-meta.js +1 -1
  1295. data/node_modules/eslint-plugin-sonarjs/cjs/S888/index.js +1 -1
  1296. data/node_modules/eslint-plugin-sonarjs/cjs/S888/meta.js +1 -1
  1297. data/node_modules/eslint-plugin-sonarjs/cjs/S888/rule.js +1 -1
  1298. data/node_modules/eslint-plugin-sonarjs/cjs/S930/generated-meta.js +1 -1
  1299. data/node_modules/eslint-plugin-sonarjs/cjs/S930/index.js +1 -1
  1300. data/node_modules/eslint-plugin-sonarjs/cjs/S930/meta.js +1 -1
  1301. data/node_modules/eslint-plugin-sonarjs/cjs/S930/rule.js +1 -1
  1302. data/node_modules/eslint-plugin-sonarjs/cjs/external/core.js +1 -1
  1303. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/accessibility.js +1 -1
  1304. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/aws/index.js +1 -1
  1305. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/collection.js +1 -1
  1306. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/index.js +1 -1
  1307. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/interceptor.js +0 -4
  1308. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/files.js +1 -1
  1309. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-files.js +1 -1
  1310. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-up.js +1 -1
  1311. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/globals.js +1 -1
  1312. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/index.js +1 -1
  1313. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/package-json.js +30 -9
  1314. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/Detector.js +1 -1
  1315. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/CamelCaseDetector.js +1 -1
  1316. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/ContainsDetector.js +1 -1
  1317. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/EndWithDetector.js +1 -1
  1318. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/KeywordsDetector.js +1 -1
  1319. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/index.js +1 -1
  1320. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/validate-version.js +1 -1
  1321. data/node_modules/eslint-plugin-sonarjs/cjs/plugin-rules.js +1 -1
  1322. data/node_modules/eslint-plugin-sonarjs/package.json +2 -8
  1323. data/node_modules/eslint-plugin-sonarjs/types/S3723/rule.d.ts +0 -1
  1324. data/node_modules/eslint-plugin-sonarjs/types/S3776/generated-meta.d.ts +8 -2
  1325. data/node_modules/eslint-plugin-sonarjs/types/S6418/generated-meta.d.ts +17 -0
  1326. data/node_modules/eslint-plugin-sonarjs/types/helpers/package-json.d.ts +17 -1
  1327. data/node_modules/eslint-plugin-sonarjs/types/plugin-rules.d.ts +0 -1
  1328. data/node_modules/eslint-plugin-sonarjs/types/plugin.d.ts +4 -9
  1329. data/node_modules/eslint-scope/README.md +4 -3
  1330. data/node_modules/eslint-scope/dist/eslint-scope.cjs +59 -2
  1331. data/node_modules/eslint-scope/lib/index.js +1 -0
  1332. data/node_modules/eslint-scope/lib/referencer.js +52 -0
  1333. data/node_modules/eslint-scope/lib/scope-manager.js +4 -0
  1334. data/node_modules/eslint-scope/lib/scope.js +1 -1
  1335. data/node_modules/eslint-scope/lib/version.js +1 -1
  1336. data/node_modules/eslint-scope/package.json +1 -1
  1337. data/node_modules/jscodeshift/CHANGELOG.md +63 -29
  1338. data/node_modules/jscodeshift/README.md +1 -0
  1339. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.input.js +1 -0
  1340. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.js +11 -0
  1341. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.output.js +1 -0
  1342. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.input.js +1 -0
  1343. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.js +7 -0
  1344. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.output.js +1 -0
  1345. data/node_modules/jscodeshift/dist/testUtils.js +30 -6
  1346. data/node_modules/jscodeshift/package.json +4 -2
  1347. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.input.js +1 -0
  1348. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.js +11 -0
  1349. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.output.js +1 -0
  1350. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.input.js +1 -0
  1351. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.js +7 -0
  1352. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.output.js +1 -0
  1353. data/node_modules/jscodeshift/src/testUtils.js +30 -6
  1354. data/node_modules/jscodeshift/website/package.json +1 -1
  1355. data/node_modules/prettier/LICENSE +0 -4373
  1356. data/node_modules/prettier/README.md +7 -8
  1357. data/node_modules/prettier/THIRD-PARTY-NOTICES.md +4416 -0
  1358. data/node_modules/prettier/doc.js +237 -213
  1359. data/node_modules/prettier/doc.mjs +237 -213
  1360. data/node_modules/prettier/index.cjs +9 -1
  1361. data/node_modules/prettier/index.d.ts +13 -3
  1362. data/node_modules/prettier/index.mjs +619 -439
  1363. data/node_modules/prettier/internal/cli.mjs +1923 -945
  1364. data/node_modules/prettier/package.json +2 -1
  1365. data/node_modules/prettier/plugins/acorn.js +1 -1
  1366. data/node_modules/prettier/plugins/acorn.mjs +1 -1
  1367. data/node_modules/prettier/plugins/angular.js +2 -2
  1368. data/node_modules/prettier/plugins/angular.mjs +2 -2
  1369. data/node_modules/prettier/plugins/babel.js +8 -8
  1370. data/node_modules/prettier/plugins/babel.mjs +8 -8
  1371. data/node_modules/prettier/plugins/estree.js +27 -27
  1372. data/node_modules/prettier/plugins/estree.mjs +27 -27
  1373. data/node_modules/prettier/plugins/flow.js +15 -15
  1374. data/node_modules/prettier/plugins/flow.mjs +15 -15
  1375. data/node_modules/prettier/plugins/glimmer.js +21 -21
  1376. data/node_modules/prettier/plugins/glimmer.mjs +22 -22
  1377. data/node_modules/prettier/plugins/graphql.js +16 -16
  1378. data/node_modules/prettier/plugins/graphql.mjs +16 -16
  1379. data/node_modules/prettier/plugins/html.js +17 -17
  1380. data/node_modules/prettier/plugins/html.mjs +17 -17
  1381. data/node_modules/prettier/plugins/markdown.js +42 -42
  1382. data/node_modules/prettier/plugins/markdown.mjs +42 -42
  1383. data/node_modules/prettier/plugins/meriyah.js +2 -2
  1384. data/node_modules/prettier/plugins/meriyah.mjs +2 -2
  1385. data/node_modules/prettier/plugins/postcss.js +26 -26
  1386. data/node_modules/prettier/plugins/postcss.mjs +26 -26
  1387. data/node_modules/prettier/plugins/typescript.js +10 -10
  1388. data/node_modules/prettier/plugins/typescript.mjs +11 -11
  1389. data/node_modules/prettier/plugins/yaml.js +65 -65
  1390. data/node_modules/prettier/plugins/yaml.mjs +65 -65
  1391. data/node_modules/prettier/standalone.d.ts +1 -1
  1392. data/node_modules/prettier/standalone.js +24 -24
  1393. data/node_modules/prettier/standalone.mjs +24 -24
  1394. data/node_modules/semver/README.md +14 -4
  1395. data/node_modules/semver/bin/semver.js +2 -1
  1396. data/node_modules/semver/classes/semver.js +22 -6
  1397. data/node_modules/semver/functions/diff.js +5 -12
  1398. data/node_modules/semver/internal/re.js +2 -0
  1399. data/node_modules/semver/package.json +8 -7
  1400. data/package.json +8 -9
  1401. metadata +58 -35
  1402. data/node_modules/.bin/ncu +0 -1
  1403. data/node_modules/.bin/npm-check-updates +0 -1
  1404. data/node_modules/eslint/lib/types/rules/best-practices.d.ts +0 -1129
  1405. data/node_modules/eslint/lib/types/rules/deprecated.d.ts +0 -235
  1406. data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +0 -647
  1407. data/node_modules/eslint/lib/types/rules/index.d.ts +0 -50
  1408. data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +0 -160
  1409. data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +0 -653
  1410. data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +0 -38
  1411. data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +0 -2037
  1412. data/node_modules/eslint/lib/types/rules/variables.d.ts +0 -234
  1413. data/node_modules/npm-check-updates/LICENSE +0 -13
  1414. data/node_modules/npm-check-updates/README.md +0 -839
  1415. data/node_modules/npm-check-updates/build/cli.d.ts +0 -1
  1416. data/node_modules/npm-check-updates/build/cli.js +0 -29
  1417. data/node_modules/npm-check-updates/build/cli.js.map +0 -1
  1418. data/node_modules/npm-check-updates/build/index-B5lQw6vg.js +0 -6
  1419. data/node_modules/npm-check-updates/build/index-B5lQw6vg.js.map +0 -1
  1420. data/node_modules/npm-check-updates/build/index-BnIU43YD.js +0 -2
  1421. data/node_modules/npm-check-updates/build/index-BnIU43YD.js.map +0 -1
  1422. data/node_modules/npm-check-updates/build/index-CUgqEqMa.js +0 -2
  1423. data/node_modules/npm-check-updates/build/index-CUgqEqMa.js.map +0 -1
  1424. data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js +0 -58
  1425. data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js.map +0 -1
  1426. data/node_modules/npm-check-updates/build/index-_DliZFxU.js +0 -5
  1427. data/node_modules/npm-check-updates/build/index-_DliZFxU.js.map +0 -1
  1428. data/node_modules/npm-check-updates/build/index.d.ts +0 -211
  1429. data/node_modules/npm-check-updates/build/index.js +0 -551
  1430. data/node_modules/npm-check-updates/build/index.js.map +0 -1
  1431. data/node_modules/npm-check-updates/package.json +0 -179
  1432. /data/node_modules/@eslint/plugin-kit/dist/cjs/{types.ts → types.cts} +0 -0
@@ -1,2037 +0,0 @@
1
- /**
2
- * @fileoverview This file contains the rule types for ESLint. It was initially extracted
3
- * from the `@types/eslint` package.
4
- */
5
-
6
- /*
7
- * MIT License
8
- * Copyright (c) Microsoft Corporation.
9
- *
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * The above copyright notice and this permission notice shall be included in all
17
- * copies or substantial portions of the Software.
18
- *
19
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
- * SOFTWARE
26
- */
27
-
28
- import { Linter } from "../index";
29
-
30
- export interface StylisticIssues extends Linter.RulesRecord {
31
- /**
32
- * Rule to enforce linebreaks after opening and before closing array brackets.
33
- *
34
- * @since 4.0.0-alpha.1
35
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/array-bracket-newline) in `@stylistic/eslint-plugin-js`.
36
- * @see https://eslint.org/docs/rules/array-bracket-newline
37
- */
38
- "array-bracket-newline": Linter.RuleEntry<
39
- [
40
- | "always"
41
- | "never"
42
- | "consistent"
43
- | Partial<{
44
- /**
45
- * @default true
46
- */
47
- multiline: boolean;
48
- /**
49
- * @default null
50
- */
51
- minItems: number | null;
52
- }>,
53
- ]
54
- >;
55
-
56
- /**
57
- * Rule to enforce consistent spacing inside array brackets.
58
- *
59
- * @since 0.24.0
60
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/array-bracket-spacing) in `@stylistic/eslint-plugin-js`.
61
- * @see https://eslint.org/docs/rules/array-bracket-spacing
62
- */
63
- "array-bracket-spacing":
64
- | Linter.RuleEntry<
65
- [
66
- "never",
67
- Partial<{
68
- /**
69
- * @default false
70
- */
71
- singleValue: boolean;
72
- /**
73
- * @default false
74
- */
75
- objectsInArrays: boolean;
76
- /**
77
- * @default false
78
- */
79
- arraysInArrays: boolean;
80
- }>,
81
- ]
82
- >
83
- | Linter.RuleEntry<
84
- [
85
- "always",
86
- Partial<{
87
- /**
88
- * @default true
89
- */
90
- singleValue: boolean;
91
- /**
92
- * @default true
93
- */
94
- objectsInArrays: boolean;
95
- /**
96
- * @default true
97
- */
98
- arraysInArrays: boolean;
99
- }>,
100
- ]
101
- >;
102
-
103
- /**
104
- * Rule to enforce line breaks after each array element.
105
- *
106
- * @since 4.0.0-rc.0
107
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/array-element-newline) in `@stylistic/eslint-plugin-js`.
108
- * @see https://eslint.org/docs/rules/array-element-newline
109
- */
110
- "array-element-newline": Linter.RuleEntry<
111
- [
112
- | "always"
113
- | "never"
114
- | "consistent"
115
- | Partial<{
116
- /**
117
- * @default true
118
- */
119
- multiline: boolean;
120
- /**
121
- * @default null
122
- */
123
- minItems: number | null;
124
- }>,
125
- ]
126
- >;
127
-
128
- /**
129
- * Rule to disallow or enforce spaces inside of blocks after opening block and before closing block.
130
- *
131
- * @since 1.2.0
132
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/block-spacing) in `@stylistic/eslint-plugin-js`.
133
- * @see https://eslint.org/docs/rules/block-spacing
134
- */
135
- "block-spacing": Linter.RuleEntry<["always" | "never"]>;
136
-
137
- /**
138
- * Rule to enforce consistent brace style for blocks.
139
- *
140
- * @since 0.0.7
141
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/brace-style) in `@stylistic/eslint-plugin-js`.
142
- * @see https://eslint.org/docs/rules/brace-style
143
- */
144
- "brace-style": Linter.RuleEntry<
145
- [
146
- "1tbs" | "stroustrup" | "allman",
147
- Partial<{
148
- /**
149
- * @default false
150
- */
151
- allowSingleLine: boolean;
152
- }>,
153
- ]
154
- >;
155
-
156
- /**
157
- * Rule to enforce camelcase naming convention.
158
- *
159
- * @since 0.0.2
160
- * @see https://eslint.org/docs/rules/camelcase
161
- */
162
- camelcase: Linter.RuleEntry<
163
- [
164
- Partial<{
165
- /**
166
- * @default 'always'
167
- */
168
- properties: "always" | "never";
169
- /**
170
- * @default false
171
- */
172
- ignoreDestructuring: boolean;
173
- /**
174
- * @since 6.7.0
175
- * @default false
176
- */
177
- ignoreImports: boolean;
178
- /**
179
- * @since 7.4.0
180
- * @default false
181
- */
182
- ignoreGlobals: boolean;
183
- /**
184
- * @remarks
185
- * Also accept for regular expression patterns
186
- */
187
- allow: string[];
188
- }>,
189
- ]
190
- >;
191
-
192
- /**
193
- * Rule to enforce or disallow capitalization of the first letter of a comment.
194
- *
195
- * @since 3.11.0
196
- * @see https://eslint.org/docs/rules/capitalized-comments
197
- */
198
- "capitalized-comments": Linter.RuleEntry<
199
- [
200
- "always" | "never",
201
- Partial<{
202
- ignorePattern: string;
203
- /**
204
- * @default false
205
- */
206
- ignoreInlineComments: boolean;
207
- /**
208
- * @default false
209
- */
210
- ignoreConsecutiveComments: boolean;
211
- }>,
212
- ]
213
- >;
214
-
215
- /**
216
- * Rule to require or disallow trailing commas.
217
- *
218
- * @since 0.16.0
219
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/comma-dangle) in `@stylistic/eslint-plugin-js`.
220
- * @see https://eslint.org/docs/rules/comma-dangle
221
- */
222
- "comma-dangle": Linter.RuleEntry<
223
- [
224
- | "never"
225
- | "always"
226
- | "always-multiline"
227
- | "only-multiline"
228
- | Partial<{
229
- /**
230
- * @default 'never'
231
- */
232
- arrays: "never" | "always" | "always-multiline" | "only-multiline";
233
- /**
234
- * @default 'never'
235
- */
236
- objects: "never" | "always" | "always-multiline" | "only-multiline";
237
- /**
238
- * @default 'never'
239
- */
240
- imports: "never" | "always" | "always-multiline" | "only-multiline";
241
- /**
242
- * @default 'never'
243
- */
244
- exports: "never" | "always" | "always-multiline" | "only-multiline";
245
- /**
246
- * @default 'never'
247
- */
248
- functions: "never" | "always" | "always-multiline" | "only-multiline";
249
- }>,
250
- ]
251
- >;
252
-
253
- /**
254
- * Rule to enforce consistent spacing before and after commas.
255
- *
256
- * @since 0.9.0
257
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/comma-spacing) in `@stylistic/eslint-plugin-js`.
258
- * @see https://eslint.org/docs/rules/comma-spacing
259
- */
260
- "comma-spacing": Linter.RuleEntry<
261
- [
262
- Partial<{
263
- /**
264
- * @default false
265
- */
266
- before: boolean;
267
- /**
268
- * @default true
269
- */
270
- after: boolean;
271
- }>,
272
- ]
273
- >;
274
-
275
- /**
276
- * Rule to enforce consistent comma style.
277
- *
278
- * @since 0.9.0
279
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/comma-style) in `@stylistic/eslint-plugin-js`.
280
- * @see https://eslint.org/docs/rules/comma-style
281
- */
282
- "comma-style": Linter.RuleEntry<
283
- [
284
- "last" | "first",
285
- Partial<{
286
- exceptions: Record<string, boolean>;
287
- }>,
288
- ]
289
- >;
290
-
291
- /**
292
- * Rule to enforce consistent spacing inside computed property brackets.
293
- *
294
- * @since 0.23.0
295
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/computed-property-spacing) in `@stylistic/eslint-plugin-js`.
296
- * @see https://eslint.org/docs/rules/computed-property-spacing
297
- */
298
- "computed-property-spacing": Linter.RuleEntry<["never" | "always"]>;
299
-
300
- /**
301
- * Rule to enforce consistent naming when capturing the current execution context.
302
- *
303
- * @since 0.0.9
304
- * @see https://eslint.org/docs/rules/consistent-this
305
- */
306
- "consistent-this": Linter.RuleEntry<[...string[]]>;
307
-
308
- /**
309
- * Rule to require or disallow newline at the end of files.
310
- *
311
- * @since 0.7.1
312
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/eol-last) in `@stylistic/eslint-plugin-js`.
313
- * @see https://eslint.org/docs/rules/eol-last
314
- */
315
- "eol-last": Linter.RuleEntry<
316
- [
317
- "always" | "never", // | 'unix' | 'windows'
318
- ]
319
- >;
320
-
321
- /**
322
- * Rule to require or disallow spacing between function identifiers and their invocations.
323
- *
324
- * @since 3.3.0
325
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/function-call-spacing) in `@stylistic/eslint-plugin-js`.
326
- * @see https://eslint.org/docs/rules/func-call-spacing
327
- */
328
- "func-call-spacing": Linter.RuleEntry<["never" | "always"]>;
329
-
330
- /**
331
- * Rule to require function names to match the name of the variable or property to which they are assigned.
332
- *
333
- * @since 3.8.0
334
- * @see https://eslint.org/docs/rules/func-name-matching
335
- */
336
- "func-name-matching":
337
- | Linter.RuleEntry<
338
- [
339
- "always" | "never",
340
- Partial<{
341
- /**
342
- * @default false
343
- */
344
- considerPropertyDescriptor: boolean;
345
- /**
346
- * @default false
347
- */
348
- includeCommonJSModuleExports: boolean;
349
- }>,
350
- ]
351
- >
352
- | Linter.RuleEntry<
353
- [
354
- Partial<{
355
- /**
356
- * @default false
357
- */
358
- considerPropertyDescriptor: boolean;
359
- /**
360
- * @default false
361
- */
362
- includeCommonJSModuleExports: boolean;
363
- }>,
364
- ]
365
- >;
366
-
367
- /**
368
- * Rule to require or disallow named `function` expressions.
369
- *
370
- * @since 0.4.0
371
- * @see https://eslint.org/docs/rules/func-names
372
- */
373
- "func-names": Linter.RuleEntry<
374
- [
375
- "always" | "as-needed" | "never",
376
- Partial<{
377
- generators: "always" | "as-needed" | "never";
378
- }>,
379
- ]
380
- >;
381
-
382
- /**
383
- * Rule to enforce the consistent use of either `function` declarations or expressions.
384
- *
385
- * @since 0.2.0
386
- * @see https://eslint.org/docs/rules/func-style
387
- */
388
- "func-style": Linter.RuleEntry<
389
- [
390
- "expression" | "declaration",
391
- Partial<{
392
- /**
393
- * @default false
394
- */
395
- allowArrowFunctions: boolean;
396
- overrides: {
397
- namedExports: "declaration" | "expression" | "ignore";
398
- }
399
- }>,
400
- ]
401
- >;
402
-
403
- /**
404
- * Rule to enforce consistent line breaks inside function parentheses.
405
- *
406
- * @since 4.6.0
407
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/function-paren-newline) in `@stylistic/eslint-plugin-js`.
408
- * @see https://eslint.org/docs/rules/function-paren-newline
409
- */
410
- "function-paren-newline": Linter.RuleEntry<
411
- [
412
- | "always"
413
- | "never"
414
- | "multiline"
415
- | "multiline-arguments"
416
- | "consistent"
417
- | Partial<{
418
- minItems: number;
419
- }>,
420
- ]
421
- >;
422
-
423
- /**
424
- * Rule to disallow specified identifiers.
425
- *
426
- * @since 2.0.0-beta.2
427
- * @see https://eslint.org/docs/rules/id-blacklist
428
- */
429
- "id-blacklist": Linter.RuleEntry<[...string[]]>;
430
-
431
- /**
432
- * Rule to enforce minimum and maximum identifier lengths.
433
- *
434
- * @since 1.0.0
435
- * @see https://eslint.org/docs/rules/id-length
436
- */
437
- "id-length": Linter.RuleEntry<
438
- [
439
- Partial<{
440
- /**
441
- * @default 2
442
- */
443
- min: number;
444
- /**
445
- * @default Infinity
446
- */
447
- max: number;
448
- /**
449
- * @default 'always'
450
- */
451
- properties: "always" | "never";
452
- exceptions: string[];
453
- }>,
454
- ]
455
- >;
456
-
457
- /**
458
- * Rule to require identifiers to match a specified regular expression.
459
- *
460
- * @since 1.0.0
461
- * @see https://eslint.org/docs/rules/id-match
462
- */
463
- "id-match": Linter.RuleEntry<
464
- [
465
- string,
466
- Partial<{
467
- /**
468
- * @default false
469
- */
470
- properties: boolean;
471
- /**
472
- * @default false
473
- */
474
- onlyDeclarations: boolean;
475
- /**
476
- * @default false
477
- */
478
- ignoreDestructuring: boolean;
479
- }>,
480
- ]
481
- >;
482
-
483
- /**
484
- * Rule to enforce the location of arrow function bodies.
485
- *
486
- * @since 4.12.0
487
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/implicit-arrow-linebreak) in `@stylistic/eslint-plugin-js`.
488
- * @see https://eslint.org/docs/rules/implicit-arrow-linebreak
489
- */
490
- "implicit-arrow-linebreak": Linter.RuleEntry<["beside" | "below"]>;
491
-
492
- /**
493
- * Rule to enforce consistent indentation.
494
- *
495
- * @since 0.14.0
496
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/indent) in `@stylistic/eslint-plugin-js`.
497
- * @see https://eslint.org/docs/rules/indent
498
- */
499
- indent: Linter.RuleEntry<
500
- [
501
- number | "tab",
502
- Partial<{
503
- /**
504
- * @default 0
505
- */
506
- SwitchCase: number;
507
- /**
508
- * @default 1
509
- */
510
- VariableDeclarator:
511
- | Partial<{
512
- /**
513
- * @default 1
514
- */
515
- var: number | "first";
516
- /**
517
- * @default 1
518
- */
519
- let: number | "first";
520
- /**
521
- * @default 1
522
- */
523
- const: number | "first";
524
- }>
525
- | number
526
- | "first";
527
- /**
528
- * @default 1
529
- */
530
- outerIIFEBody: number;
531
- /**
532
- * @default 1
533
- */
534
- MemberExpression: number | "off";
535
- /**
536
- * @default { parameters: 1, body: 1 }
537
- */
538
- FunctionDeclaration: Partial<{
539
- /**
540
- * @default 1
541
- */
542
- parameters: number | "first" | "off";
543
- /**
544
- * @default 1
545
- */
546
- body: number;
547
- }>;
548
- /**
549
- * @default { parameters: 1, body: 1 }
550
- */
551
- FunctionExpression: Partial<{
552
- /**
553
- * @default 1
554
- */
555
- parameters: number | "first" | "off";
556
- /**
557
- * @default 1
558
- */
559
- body: number;
560
- }>;
561
- /**
562
- * @default { arguments: 1 }
563
- */
564
- CallExpression: Partial<{
565
- /**
566
- * @default 1
567
- */
568
- arguments: number | "first" | "off";
569
- }>;
570
- /**
571
- * @default 1
572
- */
573
- ArrayExpression: number | "first" | "off";
574
- /**
575
- * @default 1
576
- */
577
- ObjectExpression: number | "first" | "off";
578
- /**
579
- * @default 1
580
- */
581
- ImportDeclaration: number | "first" | "off";
582
- /**
583
- * @default false
584
- */
585
- flatTernaryExpressions: boolean;
586
- ignoredNodes: string[];
587
- /**
588
- * @default false
589
- */
590
- ignoreComments: boolean;
591
- }>,
592
- ]
593
- >;
594
-
595
- /**
596
- * Rule to enforce the consistent use of either double or single quotes in JSX attributes.
597
- *
598
- * @since 1.4.0
599
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/jsx-quotes) in `@stylistic/eslint-plugin-js`.
600
- * @see https://eslint.org/docs/rules/jsx-quotes
601
- */
602
- "jsx-quotes": Linter.RuleEntry<["prefer-double" | "prefer-single"]>;
603
-
604
- /**
605
- * Rule to enforce consistent spacing between keys and values in object literal properties.
606
- *
607
- * @since 0.9.0
608
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/key-spacing) in `@stylistic/eslint-plugin-js`.
609
- * @see https://eslint.org/docs/rules/key-spacing
610
- */
611
- "key-spacing": Linter.RuleEntry<
612
- [
613
- | Partial<
614
- | {
615
- /**
616
- * @default false
617
- */
618
- beforeColon: boolean;
619
- /**
620
- * @default true
621
- */
622
- afterColon: boolean;
623
- /**
624
- * @default 'strict'
625
- */
626
- mode: "strict" | "minimum";
627
- align:
628
- | Partial<{
629
- /**
630
- * @default false
631
- */
632
- beforeColon: boolean;
633
- /**
634
- * @default true
635
- */
636
- afterColon: boolean;
637
- /**
638
- * @default 'colon'
639
- */
640
- on: "value" | "colon";
641
- /**
642
- * @default 'strict'
643
- */
644
- mode: "strict" | "minimum";
645
- }>
646
- | "value"
647
- | "colon";
648
- }
649
- | {
650
- singleLine?:
651
- | Partial<{
652
- /**
653
- * @default false
654
- */
655
- beforeColon: boolean;
656
- /**
657
- * @default true
658
- */
659
- afterColon: boolean;
660
- /**
661
- * @default 'strict'
662
- */
663
- mode: "strict" | "minimum";
664
- }>
665
- | undefined;
666
- multiLine?:
667
- | Partial<{
668
- /**
669
- * @default false
670
- */
671
- beforeColon: boolean;
672
- /**
673
- * @default true
674
- */
675
- afterColon: boolean;
676
- /**
677
- * @default 'strict'
678
- */
679
- mode: "strict" | "minimum";
680
- align:
681
- | Partial<{
682
- /**
683
- * @default false
684
- */
685
- beforeColon: boolean;
686
- /**
687
- * @default true
688
- */
689
- afterColon: boolean;
690
- /**
691
- * @default 'colon'
692
- */
693
- on: "value" | "colon";
694
- /**
695
- * @default 'strict'
696
- */
697
- mode: "strict" | "minimum";
698
- }>
699
- | "value"
700
- | "colon";
701
- }>
702
- | undefined;
703
- }
704
- >
705
- | {
706
- align: Partial<{
707
- /**
708
- * @default false
709
- */
710
- beforeColon: boolean;
711
- /**
712
- * @default true
713
- */
714
- afterColon: boolean;
715
- /**
716
- * @default 'colon'
717
- */
718
- on: "value" | "colon";
719
- /**
720
- * @default 'strict'
721
- */
722
- mode: "strict" | "minimum";
723
- }>;
724
- singleLine?:
725
- | Partial<{
726
- /**
727
- * @default false
728
- */
729
- beforeColon: boolean;
730
- /**
731
- * @default true
732
- */
733
- afterColon: boolean;
734
- /**
735
- * @default 'strict'
736
- */
737
- mode: "strict" | "minimum";
738
- }>
739
- | undefined;
740
- multiLine?:
741
- | Partial<{
742
- /**
743
- * @default false
744
- */
745
- beforeColon: boolean;
746
- /**
747
- * @default true
748
- */
749
- afterColon: boolean;
750
- /**
751
- * @default 'strict'
752
- */
753
- mode: "strict" | "minimum";
754
- }>
755
- | undefined;
756
- },
757
- ]
758
- >;
759
-
760
- /**
761
- * Rule to enforce consistent spacing before and after keywords.
762
- *
763
- * @since 2.0.0-beta.1
764
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/keyword-spacing) in `@stylistic/eslint-plugin-js`.
765
- * @see https://eslint.org/docs/rules/keyword-spacing
766
- */
767
- "keyword-spacing": Linter.RuleEntry<
768
- [
769
- Partial<{
770
- /**
771
- * @default true
772
- */
773
- before: boolean;
774
- /**
775
- * @default true
776
- */
777
- after: boolean;
778
- overrides: Record<
779
- string,
780
- Partial<{
781
- before: boolean;
782
- after: boolean;
783
- }>
784
- >;
785
- }>,
786
- ]
787
- >;
788
-
789
- /**
790
- * Rule to enforce position of line comments.
791
- *
792
- * @since 3.5.0
793
- * @deprecated since 9.3.0, please use the [corresponding rule](https://eslint.style/rules/js/line-comment-position) in `@stylistic/eslint-plugin-js`.
794
- * @see https://eslint.org/docs/rules/line-comment-position
795
- */
796
- "line-comment-position": Linter.RuleEntry<
797
- [
798
- Partial<{
799
- /**
800
- * @default 'above'
801
- */
802
- position: "above" | "beside";
803
- ignorePattern: string;
804
- /**
805
- * @default true
806
- */
807
- applyDefaultIgnorePatterns: boolean;
808
- }>,
809
- ]
810
- >;
811
-
812
- /**
813
- * Rule to enforce consistent linebreak style.
814
- *
815
- * @since 0.21.0
816
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/linebreak-style) in `@stylistic/eslint-plugin-js`.
817
- * @see https://eslint.org/docs/rules/linebreak-style
818
- */
819
- "linebreak-style": Linter.RuleEntry<["unix" | "windows"]>;
820
-
821
- /**
822
- * Rule to require empty lines around comments.
823
- *
824
- * @since 0.22.0
825
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/lines-around-comment) in `@stylistic/eslint-plugin-js`.
826
- * @see https://eslint.org/docs/rules/lines-around-comment
827
- */
828
- "lines-around-comment": Linter.RuleEntry<
829
- [
830
- Partial<{
831
- /**
832
- * @default true
833
- */
834
- beforeBlockComment: boolean;
835
- /**
836
- * @default false
837
- */
838
- afterBlockComment: boolean;
839
- /**
840
- * @default false
841
- */
842
- beforeLineComment: boolean;
843
- /**
844
- * @default false
845
- */
846
- afterLineComment: boolean;
847
- /**
848
- * @default false
849
- */
850
- allowBlockStart: boolean;
851
- /**
852
- * @default false
853
- */
854
- allowBlockEnd: boolean;
855
- /**
856
- * @default false
857
- */
858
- allowObjectStart: boolean;
859
- /**
860
- * @default false
861
- */
862
- allowObjectEnd: boolean;
863
- /**
864
- * @default false
865
- */
866
- allowArrayStart: boolean;
867
- /**
868
- * @default false
869
- */
870
- allowArrayEnd: boolean;
871
- /**
872
- * @default false
873
- */
874
- allowClassStart: boolean;
875
- /**
876
- * @default false
877
- */
878
- allowClassEnd: boolean;
879
- ignorePattern: string;
880
- /**
881
- * @default true
882
- */
883
- applyDefaultIgnorePatterns: boolean;
884
- }>,
885
- ]
886
- >;
887
-
888
- /**
889
- * Rule to require or disallow an empty line between class members.
890
- *
891
- * @since 4.9.0
892
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/lines-between-class-members) in `@stylistic/eslint-plugin-js`.
893
- * @see https://eslint.org/docs/rules/lines-between-class-members
894
- */
895
- "lines-between-class-members": Linter.RuleEntry<
896
- [
897
- "always" | "never" | {
898
- enforce: Array<
899
- {
900
- blankLine: "always" | "never";
901
- prev: "method" | "field" | "*";
902
- next: "method" | "field" | "*";
903
- }
904
- >
905
- },
906
- Partial<{
907
- /**
908
- * @default false
909
- */
910
- exceptAfterSingleLine: boolean;
911
- }>,
912
- ]
913
- >;
914
-
915
- /**
916
- * Rule to enforce a maximum depth that blocks can be nested.
917
- *
918
- * @since 0.0.9
919
- * @see https://eslint.org/docs/rules/max-depth
920
- */
921
- "max-depth": Linter.RuleEntry<
922
- [
923
- Partial<{
924
- /**
925
- * @default 4
926
- */
927
- max: number;
928
- }>,
929
- ]
930
- >;
931
-
932
- /**
933
- * Rule to enforce a maximum line length.
934
- *
935
- * @since 0.0.9
936
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/max-len) in `@stylistic/eslint-plugin-js`.
937
- * @see https://eslint.org/docs/rules/max-len
938
- */
939
- "max-len": Linter.RuleEntry<
940
- [
941
- Partial<{
942
- /**
943
- * @default 80
944
- */
945
- code: number;
946
- /**
947
- * @default 4
948
- */
949
- tabWidth: number;
950
- comments: number;
951
- ignorePattern: string;
952
- /**
953
- * @default false
954
- */
955
- ignoreComments: boolean;
956
- /**
957
- * @default false
958
- */
959
- ignoreTrailingComments: boolean;
960
- /**
961
- * @default false
962
- */
963
- ignoreUrls: boolean;
964
- /**
965
- * @default false
966
- */
967
- ignoreStrings: boolean;
968
- /**
969
- * @default false
970
- */
971
- ignoreTemplateLiterals: boolean;
972
- /**
973
- * @default false
974
- */
975
- ignoreRegExpLiterals: boolean;
976
- }>,
977
- ]
978
- >;
979
-
980
- /**
981
- * Rule to enforce a maximum number of lines per file.
982
- *
983
- * @since 2.12.0
984
- * @see https://eslint.org/docs/rules/max-lines
985
- */
986
- "max-lines": Linter.RuleEntry<
987
- [
988
- | Partial<{
989
- /**
990
- * @default 300
991
- */
992
- max: number;
993
- /**
994
- * @default false
995
- */
996
- skipBlankLines: boolean;
997
- /**
998
- * @default false
999
- */
1000
- skipComments: boolean;
1001
- }>
1002
- | number,
1003
- ]
1004
- >;
1005
-
1006
- /**
1007
- * Rule to enforce a maximum number of line of code in a function.
1008
- *
1009
- * @since 5.0.0
1010
- * @see https://eslint.org/docs/rules/max-lines-per-function
1011
- */
1012
- "max-lines-per-function": Linter.RuleEntry<
1013
- [
1014
- Partial<{
1015
- /**
1016
- * @default 50
1017
- */
1018
- max: number;
1019
- /**
1020
- * @default false
1021
- */
1022
- skipBlankLines: boolean;
1023
- /**
1024
- * @default false
1025
- */
1026
- skipComments: boolean;
1027
- /**
1028
- * @default false
1029
- */
1030
- IIFEs: boolean;
1031
- }>,
1032
- ]
1033
- >;
1034
-
1035
- /**
1036
- * Rule to enforce a maximum depth that callbacks can be nested.
1037
- *
1038
- * @since 0.2.0
1039
- * @see https://eslint.org/docs/rules/max-nested-callbacks
1040
- */
1041
- "max-nested-callbacks": Linter.RuleEntry<
1042
- [
1043
- | Partial<{
1044
- /**
1045
- * @default 10
1046
- */
1047
- max: number;
1048
- }>
1049
- | number,
1050
- ]
1051
- >;
1052
-
1053
- /**
1054
- * Rule to enforce a maximum number of parameters in function definitions.
1055
- *
1056
- * @since 0.0.9
1057
- * @see https://eslint.org/docs/rules/max-params
1058
- */
1059
- "max-params": Linter.RuleEntry<
1060
- [
1061
- | Partial<{
1062
- /**
1063
- * @default 3
1064
- */
1065
- max: number;
1066
- }>
1067
- | number,
1068
- ]
1069
- >;
1070
-
1071
- /**
1072
- * Rule to enforce a maximum number of statements allowed in function blocks.
1073
- *
1074
- * @since 0.0.9
1075
- * @see https://eslint.org/docs/rules/max-statements
1076
- */
1077
- "max-statements": Linter.RuleEntry<
1078
- [
1079
- | Partial<{
1080
- /**
1081
- * @default 10
1082
- */
1083
- max: number;
1084
- /**
1085
- * @default false
1086
- */
1087
- ignoreTopLevelFunctions: boolean;
1088
- }>
1089
- | number,
1090
- ]
1091
- >;
1092
-
1093
- /**
1094
- * Rule to enforce a maximum number of statements allowed per line.
1095
- *
1096
- * @since 2.5.0
1097
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/max-statements-per-line) in `@stylistic/eslint-plugin-js`.
1098
- * @see https://eslint.org/docs/rules/max-statements-per-line
1099
- */
1100
- "max-statements-per-line": Linter.RuleEntry<
1101
- [
1102
- | Partial<{
1103
- /**
1104
- * @default 1
1105
- */
1106
- max: number;
1107
- }>
1108
- | number,
1109
- ]
1110
- >;
1111
-
1112
- /**
1113
- * Rule to enforce a particular style for multiline comments.
1114
- *
1115
- * @since 4.10.0
1116
- * @deprecated since 9.3.0, please use the [corresponding rule](https://eslint.style/rules/js/multiline-comment-style) in `@stylistic/eslint-plugin-js`.
1117
- * @see https://eslint.org/docs/rules/multiline-comment-style
1118
- */
1119
- "multiline-comment-style": Linter.RuleEntry<["starred-block" | "bare-block" | "separate-lines"]>;
1120
-
1121
- /**
1122
- * Rule to enforce newlines between operands of ternary expressions.
1123
- *
1124
- * @since 3.1.0
1125
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/multiline-ternary) in `@stylistic/eslint-plugin-js`.
1126
- * @see https://eslint.org/docs/rules/multiline-ternary
1127
- */
1128
- "multiline-ternary": Linter.RuleEntry<["always" | "always-multiline" | "never"]>;
1129
-
1130
- /**
1131
- * Rule to require constructor names to begin with a capital letter.
1132
- *
1133
- * @since 0.0.3-0
1134
- * @see https://eslint.org/docs/rules/new-cap
1135
- */
1136
- "new-cap": Linter.RuleEntry<
1137
- [
1138
- Partial<{
1139
- /**
1140
- * @default true
1141
- */
1142
- newIsCap: boolean;
1143
- /**
1144
- * @default true
1145
- */
1146
- capIsNew: boolean;
1147
- newIsCapExceptions: string[];
1148
- newIsCapExceptionPattern: string;
1149
- capIsNewExceptions: string[];
1150
- capIsNewExceptionPattern: string;
1151
- /**
1152
- * @default true
1153
- */
1154
- properties: boolean;
1155
- }>,
1156
- ]
1157
- >;
1158
-
1159
- /**
1160
- * Rule to enforce or disallow parentheses when invoking a constructor with no arguments.
1161
- *
1162
- * @since 0.0.6
1163
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/new-parens) in `@stylistic/eslint-plugin-js`.
1164
- * @see https://eslint.org/docs/rules/new-parens
1165
- */
1166
- "new-parens": Linter.RuleEntry<["always" | "never"]>;
1167
-
1168
- /**
1169
- * Rule to require a newline after each call in a method chain.
1170
- *
1171
- * @since 2.0.0-rc.0
1172
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/newline-per-chained-call) in `@stylistic/eslint-plugin-js`.
1173
- * @see https://eslint.org/docs/rules/newline-per-chained-call
1174
- */
1175
- "newline-per-chained-call": Linter.RuleEntry<
1176
- [
1177
- {
1178
- /**
1179
- * @default 2
1180
- */
1181
- ignoreChainWithDepth: number;
1182
- },
1183
- ]
1184
- >;
1185
-
1186
- /**
1187
- * Rule to disallow `Array` constructors.
1188
- *
1189
- * @since 0.4.0
1190
- * @see https://eslint.org/docs/rules/no-array-constructor
1191
- */
1192
- "no-array-constructor": Linter.RuleEntry<[]>;
1193
-
1194
- /**
1195
- * Rule to disallow bitwise operators.
1196
- *
1197
- * @since 0.0.2
1198
- * @see https://eslint.org/docs/rules/no-bitwise
1199
- */
1200
- "no-bitwise": Linter.RuleEntry<
1201
- [
1202
- Partial<{
1203
- allow: string[];
1204
- /**
1205
- * @default false
1206
- */
1207
- int32Hint: boolean;
1208
- }>,
1209
- ]
1210
- >;
1211
-
1212
- /**
1213
- * Rule to disallow `continue` statements.
1214
- *
1215
- * @since 0.19.0
1216
- * @see https://eslint.org/docs/rules/no-continue
1217
- */
1218
- "no-continue": Linter.RuleEntry<[]>;
1219
-
1220
- /**
1221
- * Rule to disallow inline comments after code.
1222
- *
1223
- * @since 0.10.0
1224
- * @see https://eslint.org/docs/rules/no-inline-comments
1225
- */
1226
- "no-inline-comments": Linter.RuleEntry<[]>;
1227
-
1228
- /**
1229
- * Rule to disallow `if` statements as the only statement in `else` blocks.
1230
- *
1231
- * @since 0.6.0
1232
- * @see https://eslint.org/docs/rules/no-lonely-if
1233
- */
1234
- "no-lonely-if": Linter.RuleEntry<[]>;
1235
-
1236
- /**
1237
- * Rule to disallow mixed binary operators.
1238
- *
1239
- * @since 2.12.0
1240
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-mixed-operators) in `@stylistic/eslint-plugin-js`.
1241
- * @see https://eslint.org/docs/rules/no-mixed-operators
1242
- */
1243
- "no-mixed-operators": Linter.RuleEntry<
1244
- [
1245
- Partial<{
1246
- /**
1247
- * @default
1248
- * [
1249
- * ["+", "-", "*", "/", "%", "**"],
1250
- * ["&", "|", "^", "~", "<<", ">>", ">>>"],
1251
- * ["==", "!=", "===", "!==", ">", ">=", "<", "<="],
1252
- * ["&&", "||"],
1253
- * ["in", "instanceof"]
1254
- * ]
1255
- */
1256
- groups: string[][];
1257
- /**
1258
- * @default true
1259
- */
1260
- allowSamePrecedence: boolean;
1261
- }>,
1262
- ]
1263
- >;
1264
-
1265
- /**
1266
- * Rule to disallow mixed spaces and tabs for indentation.
1267
- *
1268
- * @remarks
1269
- * Recommended by ESLint, the rule was enabled in `eslint:recommended`.
1270
- *
1271
- * @since 0.7.1
1272
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-mixed-spaces-and-tabs) in `@stylistic/eslint-plugin-js`.
1273
- * @see https://eslint.org/docs/rules/no-mixed-spaces-and-tabs
1274
- */
1275
- "no-mixed-spaces-and-tabs": Linter.RuleEntry<["smart-tabs"]>;
1276
-
1277
- /**
1278
- * Rule to disallow use of chained assignment expressions.
1279
- *
1280
- * @since 3.14.0
1281
- * @see https://eslint.org/docs/rules/no-multi-assign
1282
- */
1283
- "no-multi-assign": Linter.RuleEntry<[]>;
1284
-
1285
- /**
1286
- * Rule to disallow multiple empty lines.
1287
- *
1288
- * @since 0.9.0
1289
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-multiple-empty-lines) in `@stylistic/eslint-plugin-js`.
1290
- * @see https://eslint.org/docs/rules/no-multiple-empty-lines
1291
- */
1292
- "no-multiple-empty-lines": Linter.RuleEntry<
1293
- [
1294
- | Partial<{
1295
- /**
1296
- * @default 2
1297
- */
1298
- max: number;
1299
- maxEOF: number;
1300
- maxBOF: number;
1301
- }>
1302
- | number,
1303
- ]
1304
- >;
1305
-
1306
- /**
1307
- * Rule to disallow negated conditions.
1308
- *
1309
- * @since 1.6.0
1310
- * @see https://eslint.org/docs/rules/no-negated-condition
1311
- */
1312
- "no-negated-condition": Linter.RuleEntry<[]>;
1313
-
1314
- /**
1315
- * Rule to disallow nested ternary expressions.
1316
- *
1317
- * @since 0.2.0
1318
- * @see https://eslint.org/docs/rules/no-nested-ternary
1319
- */
1320
- "no-nested-ternary": Linter.RuleEntry<[]>;
1321
-
1322
- /**
1323
- * Rule to disallow calls to the `Object` constructor without an argument
1324
- *
1325
- * @since 8.50.0
1326
- * @see https://eslint.org/docs/rules/no-object-constructor
1327
- */
1328
- "no-object-constructor": Linter.RuleEntry<[]>;
1329
-
1330
- /**
1331
- * Rule to disallow the unary operators `++` and `--`.
1332
- *
1333
- * @since 0.0.9
1334
- * @see https://eslint.org/docs/rules/no-plusplus
1335
- */
1336
- "no-plusplus": Linter.RuleEntry<
1337
- [
1338
- Partial<{
1339
- /**
1340
- * @default false
1341
- */
1342
- allowForLoopAfterthoughts: boolean;
1343
- }>,
1344
- ]
1345
- >;
1346
-
1347
- /**
1348
- * Rule to disallow specified syntax.
1349
- *
1350
- * @since 1.4.0
1351
- * @see https://eslint.org/docs/rules/no-restricted-syntax
1352
- */
1353
- "no-restricted-syntax": Linter.RuleEntry<
1354
- [
1355
- ...Array<
1356
- | string
1357
- | {
1358
- selector: string;
1359
- message?: string | undefined;
1360
- }
1361
- >,
1362
- ]
1363
- >;
1364
-
1365
- /**
1366
- * Rule to disallow all tabs.
1367
- *
1368
- * @since 3.2.0
1369
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-tabs) in `@stylistic/eslint-plugin-js`.
1370
- * @see https://eslint.org/docs/rules/no-tabs
1371
- */
1372
- "no-tabs": Linter.RuleEntry<
1373
- [
1374
- Partial<{
1375
- /**
1376
- * @default false
1377
- */
1378
- allowIndentationTabs: boolean;
1379
- }>,
1380
- ]
1381
- >;
1382
-
1383
- /**
1384
- * Rule to disallow ternary operators.
1385
- *
1386
- * @since 0.0.9
1387
- * @see https://eslint.org/docs/rules/no-ternary
1388
- */
1389
- "no-ternary": Linter.RuleEntry<[]>;
1390
-
1391
- /**
1392
- * Rule to disallow trailing whitespace at the end of lines.
1393
- *
1394
- * @since 0.7.1
1395
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-trailing-spaces) in `@stylistic/eslint-plugin-js`.
1396
- * @see https://eslint.org/docs/rules/no-trailing-spaces
1397
- */
1398
- "no-trailing-spaces": Linter.RuleEntry<
1399
- [
1400
- Partial<{
1401
- /**
1402
- * @default false
1403
- */
1404
- skipBlankLines: boolean;
1405
- /**
1406
- * @default false
1407
- */
1408
- ignoreComments: boolean;
1409
- }>,
1410
- ]
1411
- >;
1412
-
1413
- /**
1414
- * Rule to disallow dangling underscores in identifiers.
1415
- *
1416
- * @since 0.0.9
1417
- * @see https://eslint.org/docs/rules/no-underscore-dangle
1418
- */
1419
- "no-underscore-dangle": Linter.RuleEntry<
1420
- [
1421
- Partial<{
1422
- allow: string[];
1423
- /**
1424
- * @default false
1425
- */
1426
- allowAfterThis: boolean;
1427
- /**
1428
- * @default false
1429
- */
1430
- allowAfterSuper: boolean;
1431
- /**
1432
- * @since 6.7.0
1433
- * @default false
1434
- */
1435
- allowAfterThisConstructor: boolean;
1436
- /**
1437
- * @default false
1438
- */
1439
- enforceInMethodNames: boolean;
1440
- /**
1441
- * @since 8.15.0
1442
- * @default false
1443
- */
1444
- enforceInClassFields: boolean;
1445
- /**
1446
- * @since 8.31.0
1447
- * @default true
1448
- */
1449
- allowInArrayDestructuring: boolean;
1450
- /**
1451
- * @since 8.31.0
1452
- * @default true
1453
- */
1454
- allowInObjectDestructuring: boolean;
1455
- /**
1456
- * @since 7.7.0
1457
- * @default true
1458
- */
1459
- allowFunctionParams: boolean;
1460
- }>,
1461
- ]
1462
- >;
1463
-
1464
- /**
1465
- * Rule to disallow ternary operators when simpler alternatives exist.
1466
- *
1467
- * @since 0.21.0
1468
- * @see https://eslint.org/docs/rules/no-unneeded-ternary
1469
- */
1470
- "no-unneeded-ternary": Linter.RuleEntry<
1471
- [
1472
- Partial<{
1473
- /**
1474
- * @default true
1475
- */
1476
- defaultAssignment: boolean;
1477
- }>,
1478
- ]
1479
- >;
1480
-
1481
- /**
1482
- * Rule to disallow whitespace before properties.
1483
- *
1484
- * @since 2.0.0-beta.1
1485
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/no-whitespace-before-property) in `@stylistic/eslint-plugin-js`.
1486
- * @see https://eslint.org/docs/rules/no-whitespace-before-property
1487
- */
1488
- "no-whitespace-before-property": Linter.RuleEntry<[]>;
1489
-
1490
- /**
1491
- * Rule to enforce the location of single-line statements.
1492
- *
1493
- * @since 3.17.0
1494
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/nonblock-statement-body-position) in `@stylistic/eslint-plugin-js`.
1495
- * @see https://eslint.org/docs/rules/nonblock-statement-body-position
1496
- */
1497
- "nonblock-statement-body-position": Linter.RuleEntry<
1498
- [
1499
- "beside" | "below" | "any",
1500
- Partial<{
1501
- overrides: Record<string, "beside" | "below" | "any">;
1502
- }>,
1503
- ]
1504
- >;
1505
-
1506
- /**
1507
- * Rule to enforce consistent line breaks inside braces.
1508
- *
1509
- * @since 2.12.0
1510
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/object-curly-newline) in `@stylistic/eslint-plugin-js`.
1511
- * @see https://eslint.org/docs/rules/object-curly-newline
1512
- */
1513
- "object-curly-newline": Linter.RuleEntry<
1514
- [
1515
- | "always"
1516
- | "never"
1517
- | Partial<{
1518
- /**
1519
- * @default false
1520
- */
1521
- multiline: boolean;
1522
- minProperties: number;
1523
- /**
1524
- * @default true
1525
- */
1526
- consistent: boolean;
1527
- }>
1528
- | Partial<
1529
- Record<
1530
- "ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportDeclaration",
1531
- | "always"
1532
- | "never"
1533
- | Partial<{
1534
- /**
1535
- * @default false
1536
- */
1537
- multiline: boolean;
1538
- minProperties: number;
1539
- /**
1540
- * @default true
1541
- */
1542
- consistent: boolean;
1543
- }>
1544
- >
1545
- >,
1546
- ]
1547
- >;
1548
-
1549
- /**
1550
- * Rule to enforce consistent spacing inside braces.
1551
- *
1552
- * @since 0.22.0
1553
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/object-curly-spacing) in `@stylistic/eslint-plugin-js`.
1554
- * @see https://eslint.org/docs/rules/object-curly-spacing
1555
- */
1556
- "object-curly-spacing":
1557
- | Linter.RuleEntry<
1558
- [
1559
- "never",
1560
- {
1561
- /**
1562
- * @default false
1563
- */
1564
- arraysInObjects: boolean;
1565
- /**
1566
- * @default false
1567
- */
1568
- objectsInObjects: boolean;
1569
- },
1570
- ]
1571
- >
1572
- | Linter.RuleEntry<
1573
- [
1574
- "always",
1575
- {
1576
- /**
1577
- * @default true
1578
- */
1579
- arraysInObjects: boolean;
1580
- /**
1581
- * @default true
1582
- */
1583
- objectsInObjects: boolean;
1584
- },
1585
- ]
1586
- >;
1587
-
1588
- /**
1589
- * Rule to enforce placing object properties on separate lines.
1590
- *
1591
- * @since 2.10.0
1592
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/object-property-newline) in `@stylistic/eslint-plugin-js`.
1593
- * @see https://eslint.org/docs/rules/object-property-newline
1594
- */
1595
- "object-property-newline": Linter.RuleEntry<
1596
- [
1597
- Partial<{
1598
- /**
1599
- * @default false
1600
- */
1601
- allowAllPropertiesOnSameLine: boolean;
1602
- }>,
1603
- ]
1604
- >;
1605
-
1606
- /**
1607
- * Rule to enforce variables to be declared either together or separately in functions.
1608
- *
1609
- * @since 0.0.9
1610
- * @see https://eslint.org/docs/rules/one-var
1611
- */
1612
- "one-var": Linter.RuleEntry<
1613
- [
1614
- | "always"
1615
- | "never"
1616
- | "consecutive"
1617
- | Partial<
1618
- {
1619
- /**
1620
- * @default false
1621
- */
1622
- separateRequires: boolean;
1623
- } & Record<"var" | "let" | "const", "always" | "never" | "consecutive">
1624
- >
1625
- | Partial<Record<"initialized" | "uninitialized", "always" | "never" | "consecutive">>,
1626
- ]
1627
- >;
1628
-
1629
- /**
1630
- * Rule to require or disallow newlines around variable declarations.
1631
- *
1632
- * @since 2.0.0-beta.3
1633
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/one-var-declaration-per-line) in `@stylistic/eslint-plugin-js`.
1634
- * @see https://eslint.org/docs/rules/one-var-declaration-per-line
1635
- */
1636
- "one-var-declaration-per-line": Linter.RuleEntry<["initializations" | "always"]>;
1637
-
1638
- /**
1639
- * Rule to require or disallow assignment operator shorthand where possible.
1640
- *
1641
- * @since 0.10.0
1642
- * @see https://eslint.org/docs/rules/operator-assignment
1643
- */
1644
- "operator-assignment": Linter.RuleEntry<["always" | "never"]>;
1645
-
1646
- /**
1647
- * Rule to enforce consistent linebreak style for operators.
1648
- *
1649
- * @since 0.19.0
1650
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/operator-linebreak) in `@stylistic/eslint-plugin-js`.
1651
- * @see https://eslint.org/docs/rules/operator-linebreak
1652
- */
1653
- "operator-linebreak": Linter.RuleEntry<
1654
- [
1655
- "after" | "before" | "none",
1656
- Partial<{
1657
- overrides: Record<string, "after" | "before" | "none">;
1658
- }>,
1659
- ]
1660
- >;
1661
-
1662
- /**
1663
- * Rule to require or disallow padding within blocks.
1664
- *
1665
- * @since 0.9.0
1666
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/padded-blocks) in `@stylistic/eslint-plugin-js`.
1667
- * @see https://eslint.org/docs/rules/padded-blocks
1668
- */
1669
- "padded-blocks": Linter.RuleEntry<
1670
- [
1671
- "always" | "never" | Partial<Record<"blocks" | "classes" | "switches", "always" | "never">>,
1672
- {
1673
- /**
1674
- * @default false
1675
- */
1676
- allowSingleLineBlocks: boolean;
1677
- },
1678
- ]
1679
- >;
1680
-
1681
- /**
1682
- * Rule to require or disallow padding lines between statements.
1683
- *
1684
- * @since 4.0.0-beta.0
1685
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/padding-line-between-statements) in `@stylistic/eslint-plugin-js`.
1686
- * @see https://eslint.org/docs/rules/padding-line-between-statements
1687
- */
1688
- "padding-line-between-statements": Linter.RuleEntry<
1689
- [
1690
- ...Array<
1691
- {
1692
- blankLine: "any" | "never" | "always";
1693
- } & Record<"prev" | "next", string | string[]>
1694
- >,
1695
- ]
1696
- >;
1697
-
1698
- /**
1699
- * Rule to disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead.
1700
- *
1701
- * @since 5.0.0-alpha.3
1702
- * @see https://eslint.org/docs/rules/prefer-object-spread
1703
- */
1704
- "prefer-object-spread": Linter.RuleEntry<[]>;
1705
-
1706
- /**
1707
- * Rule to require quotes around object literal property names.
1708
- *
1709
- * @since 0.0.6
1710
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/quote-props) in `@stylistic/eslint-plugin-js`.
1711
- * @see https://eslint.org/docs/rules/quote-props
1712
- */
1713
- "quote-props":
1714
- | Linter.RuleEntry<["always" | "consistent"]>
1715
- | Linter.RuleEntry<
1716
- [
1717
- "as-needed",
1718
- Partial<{
1719
- /**
1720
- * @default false
1721
- */
1722
- keywords: boolean;
1723
- /**
1724
- * @default true
1725
- */
1726
- unnecessary: boolean;
1727
- /**
1728
- * @default false
1729
- */
1730
- numbers: boolean;
1731
- }>,
1732
- ]
1733
- >
1734
- | Linter.RuleEntry<
1735
- [
1736
- "consistent-as-needed",
1737
- Partial<{
1738
- /**
1739
- * @default false
1740
- */
1741
- keywords: boolean;
1742
- }>,
1743
- ]
1744
- >;
1745
-
1746
- /**
1747
- * Rule to enforce the consistent use of either backticks, double, or single quotes.
1748
- *
1749
- * @since 0.0.7
1750
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/quotes) in `@stylistic/eslint-plugin-js`.
1751
- * @see https://eslint.org/docs/rules/quotes
1752
- */
1753
- quotes: Linter.RuleEntry<
1754
- [
1755
- "double" | "single" | "backtick",
1756
- Partial<{
1757
- /**
1758
- * @default false
1759
- */
1760
- avoidEscape: boolean;
1761
- /**
1762
- * @default false
1763
- */
1764
- allowTemplateLiterals: boolean;
1765
- }>,
1766
- ]
1767
- >;
1768
-
1769
- /**
1770
- * Rule to require or disallow semicolons instead of ASI.
1771
- *
1772
- * @since 0.0.6
1773
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/semi) in `@stylistic/eslint-plugin-js`.
1774
- * @see https://eslint.org/docs/rules/semi
1775
- */
1776
- semi:
1777
- | Linter.RuleEntry<
1778
- [
1779
- "always",
1780
- Partial<{
1781
- /**
1782
- * @default false
1783
- */
1784
- omitLastInOneLineBlock: boolean;
1785
- }>,
1786
- ]
1787
- >
1788
- | Linter.RuleEntry<
1789
- [
1790
- "never",
1791
- Partial<{
1792
- /**
1793
- * @default 'any'
1794
- */
1795
- beforeStatementContinuationChars: "any" | "always" | "never";
1796
- }>,
1797
- ]
1798
- >;
1799
-
1800
- /**
1801
- * Rule to enforce consistent spacing before and after semicolons.
1802
- *
1803
- * @since 0.16.0
1804
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/semi-spacing) in `@stylistic/eslint-plugin-js`.
1805
- * @see https://eslint.org/docs/rules/semi-spacing
1806
- */
1807
- "semi-spacing": Linter.RuleEntry<
1808
- [
1809
- Partial<{
1810
- /**
1811
- * @default false
1812
- */
1813
- before: boolean;
1814
- /**
1815
- * @default true
1816
- */
1817
- after: boolean;
1818
- }>,
1819
- ]
1820
- >;
1821
-
1822
- /**
1823
- * Rule to enforce location of semicolons.
1824
- *
1825
- * @since 4.0.0-beta.0
1826
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/semi-style) in `@stylistic/eslint-plugin-js`.
1827
- * @see https://eslint.org/docs/rules/semi-style
1828
- */
1829
- "semi-style": Linter.RuleEntry<["last" | "first"]>;
1830
-
1831
- /**
1832
- * Rule to require object keys to be sorted.
1833
- *
1834
- * @since 3.3.0
1835
- * @see https://eslint.org/docs/rules/sort-keys
1836
- */
1837
- "sort-keys": Linter.RuleEntry<
1838
- [
1839
- "asc" | "desc",
1840
- Partial<{
1841
- /**
1842
- * @default true
1843
- */
1844
- caseSensitive: boolean;
1845
- /**
1846
- * @default 2
1847
- */
1848
- minKeys: number;
1849
- /**
1850
- * @default false
1851
- */
1852
- natural: boolean;
1853
- /**
1854
- * @default false
1855
- */
1856
- allowLineSeparatedGroups: boolean;
1857
- /**
1858
- * @default false
1859
- */
1860
- ignoreComputedKeys: boolean;
1861
- }>,
1862
- ]
1863
- >;
1864
-
1865
- /**
1866
- * Rule to require variables within the same declaration block to be sorted.
1867
- *
1868
- * @since 0.2.0
1869
- * @see https://eslint.org/docs/rules/sort-vars
1870
- */
1871
- "sort-vars": Linter.RuleEntry<
1872
- [
1873
- Partial<{
1874
- /**
1875
- * @default false
1876
- */
1877
- ignoreCase: boolean;
1878
- }>,
1879
- ]
1880
- >;
1881
-
1882
- /**
1883
- * Rule to enforce consistent spacing before blocks.
1884
- *
1885
- * @since 0.9.0
1886
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-before-blocks) in `@stylistic/eslint-plugin-js`.
1887
- * @see https://eslint.org/docs/rules/space-before-blocks
1888
- */
1889
- "space-before-blocks": Linter.RuleEntry<
1890
- ["always" | "never" | Partial<Record<"functions" | "keywords" | "classes", "always" | "never" | "off">>]
1891
- >;
1892
-
1893
- /**
1894
- * Rule to enforce consistent spacing before `function` definition opening parenthesis.
1895
- *
1896
- * @since 0.18.0
1897
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-before-function-paren) in `@stylistic/eslint-plugin-js`.
1898
- * @see https://eslint.org/docs/rules/space-before-function-paren
1899
- */
1900
- "space-before-function-paren": Linter.RuleEntry<
1901
- ["always" | "never" | Partial<Record<"anonymous" | "named" | "asyncArrow", "always" | "never" | "ignore">>]
1902
- >;
1903
-
1904
- /**
1905
- * Rule to enforce consistent spacing inside parentheses.
1906
- *
1907
- * @since 0.8.0
1908
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-in-parens) in `@stylistic/eslint-plugin-js`.
1909
- * @see https://eslint.org/docs/rules/space-in-parens
1910
- */
1911
- "space-in-parens": Linter.RuleEntry<
1912
- [
1913
- "never" | "always",
1914
- Partial<{
1915
- exceptions: string[];
1916
- }>,
1917
- ]
1918
- >;
1919
-
1920
- /**
1921
- * Rule to require spacing around infix operators.
1922
- *
1923
- * @since 0.2.0
1924
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-infix-ops) in `@stylistic/eslint-plugin-js`.
1925
- * @see https://eslint.org/docs/rules/space-infix-ops
1926
- */
1927
- "space-infix-ops": Linter.RuleEntry<
1928
- [
1929
- Partial<{
1930
- /**
1931
- * @default false
1932
- */
1933
- int32Hint: boolean;
1934
- }>,
1935
- ]
1936
- >;
1937
-
1938
- /**
1939
- * Rule to enforce consistent spacing before or after unary operators.
1940
- *
1941
- * @since 0.10.0
1942
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/space-unary-ops) in `@stylistic/eslint-plugin-js`.
1943
- * @see https://eslint.org/docs/rules/space-unary-ops
1944
- */
1945
- "space-unary-ops": Linter.RuleEntry<
1946
- [
1947
- Partial<{
1948
- /**
1949
- * @default true
1950
- */
1951
- words: boolean;
1952
- /**
1953
- * @default false
1954
- */
1955
- nonwords: boolean;
1956
- overrides: Record<string, boolean>;
1957
- }>,
1958
- ]
1959
- >;
1960
-
1961
- /**
1962
- * Rule to enforce consistent spacing after the `//` or `/*` in a comment.
1963
- *
1964
- * @since 0.23.0
1965
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/spaced-comment) in `@stylistic/eslint-plugin-js`.
1966
- * @see https://eslint.org/docs/rules/spaced-comment
1967
- */
1968
- "spaced-comment": Linter.RuleEntry<
1969
- [
1970
- "always" | "never",
1971
- {
1972
- exceptions: string[];
1973
- markers: string[];
1974
- line: {
1975
- exceptions: string[];
1976
- markers: string[];
1977
- };
1978
- block: {
1979
- exceptions: string[];
1980
- markers: string[];
1981
- /**
1982
- * @default false
1983
- */
1984
- balanced: boolean;
1985
- };
1986
- },
1987
- ]
1988
- >;
1989
-
1990
- /**
1991
- * Rule to enforce spacing around colons of switch statements.
1992
- *
1993
- * @since 4.0.0-beta.0
1994
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/switch-colon-spacing) in `@stylistic/eslint-plugin-js`.
1995
- * @see https://eslint.org/docs/rules/switch-colon-spacing
1996
- */
1997
- "switch-colon-spacing": Linter.RuleEntry<
1998
- [
1999
- Partial<{
2000
- /**
2001
- * @default false
2002
- */
2003
- before: boolean;
2004
- /**
2005
- * @default true
2006
- */
2007
- after: boolean;
2008
- }>,
2009
- ]
2010
- >;
2011
-
2012
- /**
2013
- * Rule to require or disallow spacing between template tags and their literals.
2014
- *
2015
- * @since 3.15.0
2016
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/template-tag-spacing) in `@stylistic/eslint-plugin-js`.
2017
- * @see https://eslint.org/docs/rules/template-tag-spacing
2018
- */
2019
- "template-tag-spacing": Linter.RuleEntry<["never" | "always"]>;
2020
-
2021
- /**
2022
- * Rule to require or disallow Unicode byte order mark (BOM).
2023
- *
2024
- * @since 2.11.0
2025
- * @see https://eslint.org/docs/rules/unicode-bom
2026
- */
2027
- "unicode-bom": Linter.RuleEntry<["never" | "always"]>;
2028
-
2029
- /**
2030
- * Rule to require parenthesis around regex literals.
2031
- *
2032
- * @since 0.1.0
2033
- * @deprecated since 8.53.0, please use the [corresponding rule](https://eslint.style/rules/js/wrap-regex) in `@stylistic/eslint-plugin-js`.
2034
- * @see https://eslint.org/docs/rules/wrap-regex
2035
- */
2036
- "wrap-regex": Linter.RuleEntry<[]>;
2037
- }