@ttsc/lint 0.18.4 → 0.19.1

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 (188) hide show
  1. package/README.md +125 -43
  2. package/go.mod +5 -4
  3. package/internal/rulecode/rulecode.go +88 -0
  4. package/lib/index.d.ts +10 -1
  5. package/lib/index.js +45 -17
  6. package/lib/index.js.map +1 -1
  7. package/lib/structures/ITtscLintConfig.d.ts +3 -0
  8. package/lib/structures/TtscLintRuleSetting.d.ts +3 -2
  9. package/lib/structures/format/ITtscLintFormat.d.ts +3 -2
  10. package/lib/structures/format/ITtscLintFormatSortImports.d.ts +20 -4
  11. package/lib/structures/rules/ITtscLintBoundariesRuleOptions.d.ts +80 -8
  12. package/lib/structures/rules/ITtscLintBoundariesRules.d.ts +6 -8
  13. package/lib/structures/rules/ITtscLintContributorRules.d.ts +18 -2
  14. package/lib/structures/rules/ITtscLintCoreRuleOptions.d.ts +347 -0
  15. package/lib/structures/rules/ITtscLintCoreRuleOptions.js +3 -0
  16. package/lib/structures/rules/ITtscLintCoreRuleOptions.js.map +1 -0
  17. package/lib/structures/rules/ITtscLintCoreRules.d.ts +101 -67
  18. package/lib/structures/rules/ITtscLintRegexpRules.d.ts +7 -2
  19. package/lib/structures/rules/ITtscLintRuleOptionsMap.d.ts +53 -7
  20. package/lib/structures/rules/ITtscLintRules.d.ts +6 -2
  21. package/lib/structures/rules/ITtscLintSolidRules.d.ts +0 -8
  22. package/lib/structures/rules/ITtscLintTypeScriptRuleOptions.d.ts +206 -0
  23. package/lib/structures/rules/ITtscLintTypeScriptRuleOptions.js +8 -0
  24. package/lib/structures/rules/ITtscLintTypeScriptRuleOptions.js.map +1 -0
  25. package/lib/structures/rules/ITtscLintTypeScriptRules.d.ts +55 -42
  26. package/lib/structures/rules/ITtscLintUnicornRuleOptions.d.ts +276 -0
  27. package/lib/structures/rules/ITtscLintUnicornRuleOptions.js +3 -0
  28. package/lib/structures/rules/ITtscLintUnicornRuleOptions.js.map +1 -0
  29. package/lib/structures/rules/ITtscLintUnicornRules.d.ts +44 -36
  30. package/lib/structures/rules/index.d.ts +3 -0
  31. package/lib/structures/rules/index.js +3 -0
  32. package/lib/structures/rules/index.js.map +1 -1
  33. package/linthost/ast_helpers.go +521 -23
  34. package/linthost/ast_selector_matcher.go +1628 -0
  35. package/linthost/ast_selector_parser.go +628 -0
  36. package/linthost/comment_scan.go +154 -0
  37. package/linthost/compile.go +129 -79
  38. package/linthost/config.go +352 -88
  39. package/linthost/config_format.go +15 -1
  40. package/linthost/contrib_adapter.go +47 -8
  41. package/linthost/declaration_rules.go +12 -11
  42. package/linthost/directives.go +9 -67
  43. package/linthost/dispatch.go +37 -3
  44. package/linthost/engine.go +368 -53
  45. package/linthost/escape_string.go +77 -0
  46. package/linthost/fix.go +133 -23
  47. package/linthost/flags_gen.go +18 -17
  48. package/linthost/format.go +73 -167
  49. package/linthost/format_editor_settings.go +134 -26
  50. package/linthost/grapheme_tables_gen.go +1920 -0
  51. package/linthost/host.go +159 -61
  52. package/linthost/literal_escape_scan.go +117 -0
  53. package/linthost/lsp.go +545 -98
  54. package/linthost/numeric_literal_precision.go +228 -0
  55. package/linthost/polyfill_browserslist.go +1439 -0
  56. package/linthost/polyfill_browserslist_config.go +603 -0
  57. package/linthost/polyfill_corejs.go +750 -0
  58. package/linthost/polyfill_data.go +113 -0
  59. package/linthost/polyfill_data_gen.json +39868 -0
  60. package/linthost/print_nodes_array.go +7 -1
  61. package/linthost/print_nodes_object.go +7 -1
  62. package/linthost/project_engine.go +231 -0
  63. package/linthost/project_rules.go +78 -0
  64. package/linthost/regex_clean.go +191 -0
  65. package/linthost/regex_tree.go +1544 -0
  66. package/linthost/regex_tree_optimizer.go +1685 -0
  67. package/linthost/regexp_cache.go +44 -0
  68. package/linthost/rule_codes.go +105 -0
  69. package/linthost/rule_codes.json +745 -0
  70. package/linthost/rules_ban_ts_comment.go +312 -0
  71. package/linthost/rules_boundaries.go +128 -43
  72. package/linthost/rules_boundaries_dependencies.go +1013 -0
  73. package/linthost/rules_core_extra.go +62 -92
  74. package/linthost/rules_cypress.go +1 -1
  75. package/linthost/rules_default_case.go +87 -11
  76. package/linthost/rules_dupes.go +38 -13
  77. package/linthost/rules_empty.go +188 -20
  78. package/linthost/rules_escape.go +62 -48
  79. package/linthost/rules_format_arrow_parens.go +19 -5
  80. package/linthost/rules_format_bracket_spacing.go +1 -1
  81. package/linthost/rules_format_clause_join.go +1 -1
  82. package/linthost/rules_format_declaration_header.go +31 -19
  83. package/linthost/rules_format_indent.go +1 -1
  84. package/linthost/rules_format_jsdoc.go +1 -1
  85. package/linthost/rules_format_orphan_semi.go +1 -1
  86. package/linthost/rules_format_parameter_properties.go +17 -7
  87. package/linthost/rules_format_print_width.go +1 -1
  88. package/linthost/rules_format_quote_props.go +1 -1
  89. package/linthost/rules_format_quotes.go +1 -1
  90. package/linthost/rules_format_semi.go +106 -79
  91. package/linthost/rules_format_sort_imports.go +79 -45
  92. package/linthost/rules_format_statement_split.go +1 -1
  93. package/linthost/rules_format_ternary_nullish_parens.go +1 -1
  94. package/linthost/rules_format_trailing_comma.go +64 -1
  95. package/linthost/rules_format_whitespace.go +1 -1
  96. package/linthost/rules_functional.go +21 -22
  97. package/linthost/rules_gap.go +80 -3
  98. package/linthost/rules_grouped_accessor_pairs.go +84 -25
  99. package/linthost/rules_guard_for_in.go +64 -147
  100. package/linthost/rules_jsx_a11y.go +232 -22
  101. package/linthost/rules_logic.go +84 -38
  102. package/linthost/rules_nextjs.go +105 -16
  103. package/linthost/rules_no_class_assign.go +70 -0
  104. package/linthost/rules_no_duplicate_imports.go +266 -0
  105. package/linthost/rules_no_else_return.go +156 -38
  106. package/linthost/rules_no_extend_native.go +113 -17
  107. package/linthost/rules_no_fallthrough.go +1013 -0
  108. package/linthost/rules_no_func_assign.go +70 -0
  109. package/linthost/rules_no_import_assign.go +278 -86
  110. package/linthost/rules_no_inner_declarations.go +186 -0
  111. package/linthost/rules_no_loop_func.go +438 -53
  112. package/linthost/rules_no_mixed_operators.go +208 -52
  113. package/linthost/rules_no_param_reassign.go +376 -61
  114. package/linthost/rules_no_promise_executor_return.go +156 -0
  115. package/linthost/rules_no_restricted_imports.go +1013 -57
  116. package/linthost/rules_no_restricted_syntax.go +190 -26
  117. package/linthost/rules_no_useless_constructor.go +6 -36
  118. package/linthost/rules_problems.go +154 -311
  119. package/linthost/rules_promise.go +2578 -109
  120. package/linthost/rules_react_extras.go +71 -45
  121. package/linthost/rules_react_hooks.go +18 -2
  122. package/linthost/rules_react_perf.go +1 -0
  123. package/linthost/rules_react_refresh.go +1 -1
  124. package/linthost/rules_regexp.go +230 -14
  125. package/linthost/rules_security.go +45 -19
  126. package/linthost/rules_self.go +21 -1
  127. package/linthost/rules_solid.go +13 -7
  128. package/linthost/rules_storybook.go +1 -1
  129. package/linthost/rules_suggestions.go +490 -84
  130. package/linthost/rules_testing_library.go +12 -1
  131. package/linthost/rules_ts.go +227 -54
  132. package/linthost/rules_ts_async.go +0 -131
  133. package/linthost/rules_ts_no_base_to_string.go +3 -4
  134. package/linthost/rules_ts_no_misused_promises.go +817 -0
  135. package/linthost/rules_ts_no_restricted_types.go +320 -34
  136. package/linthost/rules_ts_no_unnecessary_qualifier.go +132 -55
  137. package/linthost/rules_ts_no_unsafe_assignment.go +608 -60
  138. package/linthost/rules_ts_require_array_sort_compare.go +5 -5
  139. package/linthost/rules_ts_switch_exhaustiveness_check.go +556 -86
  140. package/linthost/rules_unicorn_better_regex.go +224 -16
  141. package/linthost/rules_unicorn_consistent_destructuring.go +1002 -7
  142. package/linthost/rules_unicorn_consistent_existence_index_check.go +208 -29
  143. package/linthost/rules_unicorn_consistent_function_scoping.go +1041 -8
  144. package/linthost/rules_unicorn_consistent_template_literal_escape.go +178 -7
  145. package/linthost/rules_unicorn_escape_case.go +30 -19
  146. package/linthost/rules_unicorn_filename_case.go +763 -16
  147. package/linthost/rules_unicorn_import_style.go +783 -17
  148. package/linthost/rules_unicorn_isolated_functions.go +934 -14
  149. package/linthost/rules_unicorn_no_hex_escape.go +26 -11
  150. package/linthost/rules_unicorn_no_typeof_undefined.go +234 -25
  151. package/linthost/rules_unicorn_no_unnecessary_polyfills.go +376 -21
  152. package/linthost/rules_unicorn_no_unused_properties.go +756 -19
  153. package/linthost/rules_unicorn_number_literal_case.go +58 -39
  154. package/linthost/rules_unicorn_prefer_at.go +7 -3
  155. package/linthost/rules_unicorn_prefer_number_properties.go +381 -48
  156. package/linthost/rules_unicorn_prefer_optional_catch_binding.go +24 -24
  157. package/linthost/rules_unicorn_prefer_simple_condition_first.go +597 -19
  158. package/linthost/rules_unicorn_prefer_string_raw.go +147 -16
  159. package/linthost/rules_unicorn_prevent_abbreviations.go +1963 -95
  160. package/linthost/rules_unicorn_string_content.go +611 -15
  161. package/linthost/rules_unicorn_switch_case_break_position.go +172 -15
  162. package/linthost/rules_unicorn_template_indent.go +923 -18
  163. package/linthost/rules_unicorn_text_encoding_identifier_case.go +202 -42
  164. package/linthost/rules_unicorn_throw_new_error.go +218 -26
  165. package/linthost/rules_var.go +829 -142
  166. package/linthost/string_length.go +222 -0
  167. package/package.json +4 -3
  168. package/rule/project.go +206 -0
  169. package/rule/rule.go +58 -1
  170. package/src/index.ts +58 -17
  171. package/src/structures/ITtscLintConfig.ts +3 -0
  172. package/src/structures/TtscLintRuleSetting.ts +3 -2
  173. package/src/structures/format/ITtscLintFormat.ts +3 -2
  174. package/src/structures/format/ITtscLintFormatSortImports.ts +21 -4
  175. package/src/structures/rules/ITtscLintBoundariesRuleOptions.ts +122 -8
  176. package/src/structures/rules/ITtscLintBoundariesRules.ts +6 -8
  177. package/src/structures/rules/ITtscLintContributorRules.ts +18 -2
  178. package/src/structures/rules/ITtscLintCoreRuleOptions.ts +465 -0
  179. package/src/structures/rules/ITtscLintCoreRules.ts +122 -67
  180. package/src/structures/rules/ITtscLintRegexpRules.ts +7 -2
  181. package/src/structures/rules/ITtscLintRuleOptionsMap.ts +88 -7
  182. package/src/structures/rules/ITtscLintRules.ts +7 -2
  183. package/src/structures/rules/ITtscLintSolidRules.ts +0 -9
  184. package/src/structures/rules/ITtscLintTypeScriptRuleOptions.ts +248 -0
  185. package/src/structures/rules/ITtscLintTypeScriptRules.ts +64 -42
  186. package/src/structures/rules/ITtscLintUnicornRuleOptions.ts +350 -0
  187. package/src/structures/rules/ITtscLintUnicornRules.ts +60 -36
  188. package/src/structures/rules/index.ts +3 -0
@@ -0,0 +1,745 @@
1
+ {
2
+ "boundaries/dependencies": 14901,
3
+ "boundaries/element-types": 9732,
4
+ "boundaries/entry-point": 14731,
5
+ "boundaries/external": 14863,
6
+ "boundaries/no-private": 17653,
7
+ "boundaries/no-unknown": 13940,
8
+ "camelcase": 14385,
9
+ "complexity": 10345,
10
+ "consistent-return": 10050,
11
+ "curly": 15526,
12
+ "cypress/assertion-before-screenshot": 12952,
13
+ "cypress/no-and": 16534,
14
+ "cypress/no-assigning-return-values": 17218,
15
+ "cypress/no-async-before": 13353,
16
+ "cypress/no-async-tests": 10495,
17
+ "cypress/no-chained-get": 17018,
18
+ "cypress/no-debug": 17328,
19
+ "cypress/no-force": 10812,
20
+ "cypress/no-pause": 15621,
21
+ "cypress/no-unnecessary-waiting": 10891,
22
+ "cypress/no-xpath": 14968,
23
+ "cypress/require-data-selectors": 9228,
24
+ "cypress/unsafe-to-chain-command": 16039,
25
+ "default-case": 9253,
26
+ "default-case-last": 9520,
27
+ "default-param-last": 17125,
28
+ "dot-notation": 10205,
29
+ "eqeqeq": 15647,
30
+ "for-direction": 11936,
31
+ "format/arrow-parens": 12778,
32
+ "format/bracket-spacing": 17869,
33
+ "format/clause-join": 16481,
34
+ "format/declaration-header": 11817,
35
+ "format/indent": 12437,
36
+ "format/jsdoc": 15594,
37
+ "format/orphan-semi": 12450,
38
+ "format/parameter-properties": 13848,
39
+ "format/print-width": 13987,
40
+ "format/quote-props": 13506,
41
+ "format/quotes": 15110,
42
+ "format/semi": 12681,
43
+ "format/sort-imports": 14432,
44
+ "format/statement-split": 12833,
45
+ "format/ternary-nullish-parens": 12698,
46
+ "format/trailing-comma": 15793,
47
+ "format/whitespace": 13862,
48
+ "functional/functional-parameters": 15423,
49
+ "functional/immutable-data": 15114,
50
+ "functional/no-class-inheritance": 13498,
51
+ "functional/no-classes": 15219,
52
+ "functional/no-conditional-statements": 15700,
53
+ "functional/no-expression-statements": 15228,
54
+ "functional/no-let": 15134,
55
+ "functional/no-loop-statements": 15188,
56
+ "functional/no-mixed-types": 16864,
57
+ "functional/no-promise-reject": 10874,
58
+ "functional/no-return-void": 14876,
59
+ "functional/no-this-expressions": 17811,
60
+ "functional/no-throw-statements": 11656,
61
+ "functional/no-try-statements": 10863,
62
+ "functional/prefer-immutable-types": 13630,
63
+ "functional/prefer-property-signatures": 17045,
64
+ "functional/prefer-readonly-type": 15515,
65
+ "functional/prefer-tacit": 17011,
66
+ "functional/readonly-type": 12290,
67
+ "functional/type-declaration-immutability": 9677,
68
+ "getter-return": 9583,
69
+ "grouped-accessor-pairs": 15415,
70
+ "guard-for-in": 16728,
71
+ "id-length": 16919,
72
+ "init-declarations": 10115,
73
+ "jest/expect-expect": 9405,
74
+ "jest/max-expects": 16885,
75
+ "jest/no-conditional-expect": 16836,
76
+ "jest/no-conditional-in-test": 15909,
77
+ "jest/no-disabled-tests": 16006,
78
+ "jest/no-done-callback": 17650,
79
+ "jest/no-duplicate-hooks": 15126,
80
+ "jest/no-export": 14476,
81
+ "jest/no-focused-tests": 11899,
82
+ "jest/no-hooks": 13446,
83
+ "jest/no-identical-title": 13758,
84
+ "jest/no-standalone-expect": 10497,
85
+ "jest/no-test-prefixes": 14665,
86
+ "jest/no-test-return-statement": 9187,
87
+ "jest/prefer-to-have-length": 11144,
88
+ "jest/require-to-throw-message": 11484,
89
+ "jest/valid-describe-callback": 16256,
90
+ "jest/valid-expect": 15552,
91
+ "jest/valid-title": 9025,
92
+ "jsdoc/check-tag-names": 15223,
93
+ "jsdoc/check-values": 10528,
94
+ "jsdoc/empty-tags": 12904,
95
+ "jsdoc/no-types": 12406,
96
+ "jsdoc/reject-any-type": 17472,
97
+ "jsdoc/reject-function-type": 13644,
98
+ "jsdoc/require-description": 14891,
99
+ "jsdoc/require-param-description": 16311,
100
+ "jsdoc/require-param-name": 14120,
101
+ "jsdoc/require-property-description": 10349,
102
+ "jsdoc/require-property-name": 13586,
103
+ "jsdoc/require-returns-description": 14337,
104
+ "jsdoc/tsdoc-syntax": 9538,
105
+ "jsx-a11y/alt-text": 14967,
106
+ "jsx-a11y/anchor-ambiguous-text": 12718,
107
+ "jsx-a11y/anchor-has-content": 11110,
108
+ "jsx-a11y/anchor-is-valid": 9353,
109
+ "jsx-a11y/aria-activedescendant-has-tabindex": 16972,
110
+ "jsx-a11y/aria-props": 15372,
111
+ "jsx-a11y/aria-proptypes": 14788,
112
+ "jsx-a11y/aria-role": 14118,
113
+ "jsx-a11y/aria-unsupported-elements": 15813,
114
+ "jsx-a11y/autocomplete-valid": 14461,
115
+ "jsx-a11y/click-events-have-key-events": 10767,
116
+ "jsx-a11y/control-has-associated-label": 16328,
117
+ "jsx-a11y/heading-has-content": 17485,
118
+ "jsx-a11y/html-has-lang": 12997,
119
+ "jsx-a11y/iframe-has-title": 14056,
120
+ "jsx-a11y/img-redundant-alt": 10075,
121
+ "jsx-a11y/interactive-supports-focus": 14616,
122
+ "jsx-a11y/label-has-associated-control": 13514,
123
+ "jsx-a11y/label-has-for": 15435,
124
+ "jsx-a11y/lang": 15762,
125
+ "jsx-a11y/media-has-caption": 17272,
126
+ "jsx-a11y/mouse-events-have-key-events": 10622,
127
+ "jsx-a11y/no-access-key": 12708,
128
+ "jsx-a11y/no-aria-hidden-on-focusable": 9795,
129
+ "jsx-a11y/no-autofocus": 10849,
130
+ "jsx-a11y/no-distracting-elements": 14992,
131
+ "jsx-a11y/no-interactive-element-to-noninteractive-role": 14244,
132
+ "jsx-a11y/no-noninteractive-element-interactions": 9698,
133
+ "jsx-a11y/no-noninteractive-element-to-interactive-role": 14282,
134
+ "jsx-a11y/no-noninteractive-tabindex": 13805,
135
+ "jsx-a11y/no-redundant-roles": 15425,
136
+ "jsx-a11y/no-static-element-interactions": 15299,
137
+ "jsx-a11y/prefer-tag-over-role": 16433,
138
+ "jsx-a11y/role-has-required-aria-props": 14900,
139
+ "jsx-a11y/role-supports-aria-props": 14182,
140
+ "jsx-a11y/scope": 11522,
141
+ "jsx-a11y/tabindex-no-positive": 10599,
142
+ "max-classes-per-file": 11887,
143
+ "max-depth": 14905,
144
+ "max-lines": 17735,
145
+ "max-lines-per-function": 17680,
146
+ "max-nested-callbacks": 14678,
147
+ "max-params": 13290,
148
+ "max-statements": 10102,
149
+ "nextjs/google-font-display": 11716,
150
+ "nextjs/google-font-preconnect": 11307,
151
+ "nextjs/inline-script-id": 17687,
152
+ "nextjs/next-script-for-ga": 10204,
153
+ "nextjs/no-assign-module-variable": 14813,
154
+ "nextjs/no-async-client-component": 11300,
155
+ "nextjs/no-before-interactive-script-outside-document": 10076,
156
+ "nextjs/no-css-tags": 15681,
157
+ "nextjs/no-document-import-in-page": 16199,
158
+ "nextjs/no-duplicate-head": 16208,
159
+ "nextjs/no-head-element": 14025,
160
+ "nextjs/no-head-import-in-document": 13452,
161
+ "nextjs/no-html-link-for-pages": 13061,
162
+ "nextjs/no-img-element": 9656,
163
+ "nextjs/no-page-custom-font": 9243,
164
+ "nextjs/no-script-component-in-head": 15702,
165
+ "nextjs/no-styled-jsx-in-document": 16731,
166
+ "nextjs/no-sync-scripts": 14280,
167
+ "nextjs/no-title-in-document-head": 9983,
168
+ "nextjs/no-typos": 12177,
169
+ "nextjs/no-unwanted-polyfillio": 13922,
170
+ "no-alert": 13729,
171
+ "no-array-constructor": 13555,
172
+ "no-async-promise-executor": 12975,
173
+ "no-await-in-loop": 13044,
174
+ "no-bitwise": 10529,
175
+ "no-caller": 9962,
176
+ "no-case-declarations": 15297,
177
+ "no-class-assign": 15263,
178
+ "no-compare-neg-zero": 15328,
179
+ "no-cond-assign": 9713,
180
+ "no-console": 9898,
181
+ "no-constant-condition": 10813,
182
+ "no-constructor-return": 14552,
183
+ "no-continue": 10020,
184
+ "no-control-regex": 14884,
185
+ "no-debugger": 14702,
186
+ "no-delete-var": 10614,
187
+ "no-dupe-args": 13585,
188
+ "no-dupe-class-members": 16118,
189
+ "no-dupe-else-if": 14575,
190
+ "no-dupe-keys": 16736,
191
+ "no-duplicate-case": 13661,
192
+ "no-duplicate-imports": 16345,
193
+ "no-else-return": 9797,
194
+ "no-empty": 15054,
195
+ "no-empty-character-class": 11261,
196
+ "no-empty-function": 9461,
197
+ "no-empty-named-blocks": 14923,
198
+ "no-empty-pattern": 16381,
199
+ "no-empty-static-block": 15011,
200
+ "no-eq-null": 12651,
201
+ "no-eval": 9103,
202
+ "no-ex-assign": 16166,
203
+ "no-extend-native": 16727,
204
+ "no-extra-bind": 11515,
205
+ "no-extra-boolean-cast": 9944,
206
+ "no-fallthrough": 14225,
207
+ "no-func-assign": 14847,
208
+ "no-implicit-coercion": 15233,
209
+ "no-import-assign": 11882,
210
+ "no-inner-declarations": 17135,
211
+ "no-invalid-this": 15239,
212
+ "no-irregular-whitespace": 15428,
213
+ "no-iterator": 12751,
214
+ "no-labels": 9874,
215
+ "no-lone-blocks": 10266,
216
+ "no-lonely-if": 11582,
217
+ "no-loop-func": 11956,
218
+ "no-loss-of-precision": 9081,
219
+ "no-magic-numbers": 12563,
220
+ "no-misleading-character-class": 11905,
221
+ "no-mixed-operators": 11540,
222
+ "no-multi-assign": 12748,
223
+ "no-multi-str": 17816,
224
+ "no-negated-condition": 11461,
225
+ "no-nested-ternary": 16592,
226
+ "no-new": 13481,
227
+ "no-new-func": 17098,
228
+ "no-new-symbol": 11064,
229
+ "no-new-wrappers": 14564,
230
+ "no-obj-calls": 11454,
231
+ "no-object-constructor": 15711,
232
+ "no-octal": 12508,
233
+ "no-octal-escape": 16516,
234
+ "no-param-reassign": 14977,
235
+ "no-plusplus": 12973,
236
+ "no-promise-executor-return": 13209,
237
+ "no-proto": 12169,
238
+ "no-prototype-builtins": 10912,
239
+ "no-redeclare": 16406,
240
+ "no-regex-spaces": 17320,
241
+ "no-restricted-imports": 9403,
242
+ "no-restricted-syntax": 13456,
243
+ "no-return-assign": 15703,
244
+ "no-script-url": 14614,
245
+ "no-self-assign": 16015,
246
+ "no-self-compare": 12909,
247
+ "no-sequences": 14105,
248
+ "no-setter-return": 13635,
249
+ "no-shadow": 12705,
250
+ "no-shadow-restricted-names": 9232,
251
+ "no-sparse-arrays": 14810,
252
+ "no-template-curly-in-string": 12829,
253
+ "no-this-before-super": 11373,
254
+ "no-throw-literal": 17597,
255
+ "no-undef-init": 10838,
256
+ "no-undefined": 15979,
257
+ "no-unneeded-ternary": 12597,
258
+ "no-unreachable": 13730,
259
+ "no-unsafe-finally": 10321,
260
+ "no-unsafe-negation": 11189,
261
+ "no-unsafe-optional-chaining": 13622,
262
+ "no-unused-expressions": 17505,
263
+ "no-unused-labels": 12849,
264
+ "no-useless-assignment": 12953,
265
+ "no-useless-call": 15856,
266
+ "no-useless-catch": 9295,
267
+ "no-useless-computed-key": 15173,
268
+ "no-useless-concat": 13144,
269
+ "no-useless-constructor": 17860,
270
+ "no-useless-escape": 12123,
271
+ "no-useless-rename": 13516,
272
+ "no-useless-return": 9862,
273
+ "no-var": 11966,
274
+ "no-with": 9073,
275
+ "object-shorthand": 16865,
276
+ "operator-assignment": 11441,
277
+ "playwright/expect-expect": 12008,
278
+ "playwright/max-expects": 10108,
279
+ "playwright/no-conditional-expect": 15833,
280
+ "playwright/no-conditional-in-test": 10798,
281
+ "playwright/no-duplicate-hooks": 17849,
282
+ "playwright/no-duplicate-slow": 9566,
283
+ "playwright/no-element-handle": 10234,
284
+ "playwright/no-eval": 12141,
285
+ "playwright/no-focused-test": 17755,
286
+ "playwright/no-force-option": 11524,
287
+ "playwright/no-get-by-title": 14946,
288
+ "playwright/no-hooks": 9082,
289
+ "playwright/no-nested-step": 10553,
290
+ "playwright/no-networkidle": 17477,
291
+ "playwright/no-nth-methods": 12608,
292
+ "playwright/no-page-pause": 11699,
293
+ "playwright/no-skipped-test": 16604,
294
+ "playwright/no-slowed-test": 14566,
295
+ "playwright/no-standalone-expect": 17646,
296
+ "playwright/no-wait-for-navigation": 14877,
297
+ "playwright/no-wait-for-selector": 10354,
298
+ "playwright/no-wait-for-timeout": 13662,
299
+ "playwright/prefer-locator": 11910,
300
+ "playwright/prefer-to-have-count": 9744,
301
+ "playwright/prefer-to-have-length": 15249,
302
+ "playwright/prefer-web-first-assertions": 14673,
303
+ "playwright/require-to-pass-timeout": 17544,
304
+ "playwright/require-to-throw-message": 12059,
305
+ "playwright/valid-describe-callback": 10753,
306
+ "playwright/valid-expect": 12451,
307
+ "playwright/valid-title": 17496,
308
+ "prefer-arrow-callback": 17581,
309
+ "prefer-const": 17397,
310
+ "prefer-destructuring": 15413,
311
+ "prefer-exponentiation-operator": 14200,
312
+ "prefer-for-of": 16417,
313
+ "prefer-named-capture-group": 17542,
314
+ "prefer-numeric-literals": 11856,
315
+ "prefer-object-has-own": 12481,
316
+ "prefer-object-spread": 10687,
317
+ "prefer-rest-params": 11497,
318
+ "prefer-spread": 10213,
319
+ "prefer-template": 15448,
320
+ "promise/always-return": 12731,
321
+ "promise/avoid-new": 14059,
322
+ "promise/catch-or-return": 10209,
323
+ "promise/no-callback-in-promise": 9988,
324
+ "promise/no-multiple-resolved": 16190,
325
+ "promise/no-native": 11048,
326
+ "promise/no-nesting": 10375,
327
+ "promise/no-new-statics": 17737,
328
+ "promise/no-promise-in-callback": 11356,
329
+ "promise/no-return-in-finally": 16981,
330
+ "promise/no-return-wrap": 11720,
331
+ "promise/param-names": 15953,
332
+ "promise/prefer-await-to-callbacks": 17005,
333
+ "promise/prefer-await-to-then": 11608,
334
+ "promise/prefer-catch": 13039,
335
+ "promise/spec-only": 12017,
336
+ "promise/valid-params": 11136,
337
+ "radix": 12225,
338
+ "react-perf/jsx-no-jsx-as-prop": 10541,
339
+ "react-perf/jsx-no-new-array-as-prop": 12294,
340
+ "react-perf/jsx-no-new-function-as-prop": 12551,
341
+ "react-perf/jsx-no-new-object-as-prop": 9740,
342
+ "react/button-has-type": 17983,
343
+ "react/component-hook-factories": 15143,
344
+ "react/display-name": 12303,
345
+ "react/exhaustive-deps": 15806,
346
+ "react/iframe-missing-sandbox": 9330,
347
+ "react/immutability": 12547,
348
+ "react/jsx-key": 16620,
349
+ "react/jsx-no-duplicate-props": 12805,
350
+ "react/jsx-no-script-url": 11455,
351
+ "react/jsx-no-target-blank": 17219,
352
+ "react/jsx-no-undef": 17033,
353
+ "react/jsx-no-useless-fragment": 15408,
354
+ "react/no-array-index-key": 10257,
355
+ "react/no-children-prop": 14436,
356
+ "react/no-danger": 10410,
357
+ "react/no-danger-with-children": 14979,
358
+ "react/no-direct-mutation-state": 9036,
359
+ "react/no-find-dom-node": 13458,
360
+ "react/no-is-mounted": 10936,
361
+ "react/no-string-refs": 12181,
362
+ "react/no-unescaped-entities": 9777,
363
+ "react/only-export-components": 15123,
364
+ "react/refs": 16471,
365
+ "react/rules-of-hooks": 12447,
366
+ "react/set-state-in-effect": 14441,
367
+ "react/set-state-in-render": 13192,
368
+ "react/style-prop-object": 11868,
369
+ "react/use-memo": 14353,
370
+ "react/void-dom-elements-no-children": 15140,
371
+ "regexp/no-control-character": 16212,
372
+ "regexp/no-dupe-characters-character-class": 16371,
373
+ "regexp/no-empty-alternative": 14620,
374
+ "regexp/no-empty-capturing-group": 9848,
375
+ "regexp/no-empty-character-class": 16029,
376
+ "regexp/no-empty-group": 14952,
377
+ "regexp/no-empty-lookarounds-assertion": 15805,
378
+ "regexp/no-misleading-unicode-character": 14262,
379
+ "regexp/no-useless-character-class": 9470,
380
+ "regexp/no-useless-escape": 13467,
381
+ "regexp/no-useless-flag": 17802,
382
+ "regexp/no-useless-quantifier": 13472,
383
+ "regexp/no-useless-two-nums-quantifier": 10199,
384
+ "regexp/no-zero-quantifier": 12206,
385
+ "regexp/prefer-d": 17926,
386
+ "regexp/prefer-plus-quantifier": 15825,
387
+ "regexp/prefer-question-quantifier": 10341,
388
+ "regexp/prefer-star-quantifier": 17741,
389
+ "regexp/prefer-w": 17403,
390
+ "regexp/require-unicode-regexp": 9037,
391
+ "regexp/require-unicode-sets-regexp": 16246,
392
+ "regexp/sort-flags": 17431,
393
+ "require-yield": 13224,
394
+ "security/detect-bidi-characters": 11451,
395
+ "security/detect-buffer-noassert": 14970,
396
+ "security/detect-child-process": 12684,
397
+ "security/detect-disable-mustache-escape": 13249,
398
+ "security/detect-eval-with-expression": 17608,
399
+ "security/detect-new-buffer": 13449,
400
+ "security/detect-no-csrf-before-method-override": 16003,
401
+ "security/detect-non-literal-fs-filename": 11057,
402
+ "security/detect-non-literal-regexp": 16372,
403
+ "security/detect-non-literal-require": 9761,
404
+ "security/detect-object-injection": 15093,
405
+ "security/detect-possible-timing-attacks": 9118,
406
+ "security/detect-pseudoRandomBytes": 12826,
407
+ "security/detect-unsafe-regex": 17978,
408
+ "solid/components-return-once": 15256,
409
+ "solid/event-handlers": 16099,
410
+ "solid/imports": 15641,
411
+ "solid/jsx-no-duplicate-props": 17486,
412
+ "solid/jsx-no-script-url": 15078,
413
+ "solid/jsx-no-undef": 9961,
414
+ "solid/jsx-uses-vars": 16590,
415
+ "solid/no-array-handlers": 14128,
416
+ "solid/no-destructure": 9175,
417
+ "solid/no-innerhtml": 11262,
418
+ "solid/no-proxy-apis": 10579,
419
+ "solid/no-react-deps": 11349,
420
+ "solid/no-react-specific-props": 10136,
421
+ "solid/no-unknown-namespaces": 13988,
422
+ "solid/prefer-classlist": 14222,
423
+ "solid/prefer-for": 12737,
424
+ "solid/prefer-show": 17767,
425
+ "solid/reactivity": 10705,
426
+ "solid/self-closing-comp": 12499,
427
+ "solid/style-prop": 12432,
428
+ "solid/validate-jsx-nesting": 15280,
429
+ "sort-imports": 12374,
430
+ "sort-keys": 10384,
431
+ "storybook/await-interactions": 9808,
432
+ "storybook/context-in-play-function": 17025,
433
+ "storybook/csf-component": 16098,
434
+ "storybook/default-exports": 15407,
435
+ "storybook/hierarchy-separator": 16389,
436
+ "storybook/meta-inline-properties": 9965,
437
+ "storybook/meta-satisfies-type": 15476,
438
+ "storybook/no-redundant-story-name": 17061,
439
+ "storybook/no-renderer-packages": 16609,
440
+ "storybook/no-stories-of": 12915,
441
+ "storybook/no-title-property-in-meta": 15384,
442
+ "storybook/no-uninstalled-addons": 17339,
443
+ "storybook/prefer-pascal-case": 10056,
444
+ "storybook/story-exports": 11431,
445
+ "storybook/use-storybook-expect": 14920,
446
+ "storybook/use-storybook-testing-library": 10789,
447
+ "tanstack-query/exhaustive-deps": 10475,
448
+ "tanstack-query/infinite-query-property-order": 10486,
449
+ "tanstack-query/mutation-property-order": 17820,
450
+ "tanstack-query/no-rest-destructuring": 11368,
451
+ "tanstack-query/no-unstable-deps": 15385,
452
+ "tanstack-query/no-void-query-fn": 16910,
453
+ "tanstack-query/prefer-query-options": 13230,
454
+ "tanstack-query/stable-query-client": 13736,
455
+ "testing-library/await-async-events": 9293,
456
+ "testing-library/await-async-queries": 9836,
457
+ "testing-library/await-async-utils": 15177,
458
+ "testing-library/consistent-data-testid": 11109,
459
+ "testing-library/no-await-sync-events": 15836,
460
+ "testing-library/no-await-sync-queries": 10067,
461
+ "testing-library/no-container": 12927,
462
+ "testing-library/no-debugging-utils": 14792,
463
+ "testing-library/no-dom-import": 12474,
464
+ "testing-library/no-global-regexp-flag-in-query": 16725,
465
+ "testing-library/no-manual-cleanup": 9399,
466
+ "testing-library/no-node-access": 17145,
467
+ "testing-library/no-promise-in-fire-event": 10027,
468
+ "testing-library/no-render-in-lifecycle": 14845,
469
+ "testing-library/no-test-id-queries": 16143,
470
+ "testing-library/no-unnecessary-act": 12531,
471
+ "testing-library/no-wait-for-multiple-assertions": 12512,
472
+ "testing-library/no-wait-for-side-effects": 14010,
473
+ "testing-library/no-wait-for-snapshot": 14574,
474
+ "testing-library/prefer-explicit-assert": 9596,
475
+ "testing-library/prefer-find-by": 11446,
476
+ "testing-library/prefer-implicit-assert": 12589,
477
+ "testing-library/prefer-presence-queries": 17751,
478
+ "testing-library/prefer-query-by-disappearance": 16414,
479
+ "testing-library/prefer-query-matchers": 11891,
480
+ "testing-library/prefer-screen-queries": 10374,
481
+ "testing-library/prefer-user-event": 13841,
482
+ "testing-library/prefer-user-event-setup": 14745,
483
+ "testing-library/render-result-naming-convention": 13245,
484
+ "typescript/adjacent-overload-signatures": 10594,
485
+ "typescript/array-type": 10563,
486
+ "typescript/await-thenable": 14106,
487
+ "typescript/ban-ts-comment": 11990,
488
+ "typescript/ban-tslint-comment": 16815,
489
+ "typescript/class-literal-property-style": 12827,
490
+ "typescript/consistent-generic-constructors": 13843,
491
+ "typescript/consistent-indexed-object-style": 10869,
492
+ "typescript/consistent-type-assertions": 13532,
493
+ "typescript/consistent-type-definitions": 16737,
494
+ "typescript/consistent-type-exports": 13088,
495
+ "typescript/consistent-type-imports": 12709,
496
+ "typescript/explicit-function-return-type": 9038,
497
+ "typescript/explicit-member-accessibility": 12497,
498
+ "typescript/method-signature-style": 17513,
499
+ "typescript/no-array-delete": 15764,
500
+ "typescript/no-array-for-each": 14144,
501
+ "typescript/no-base-to-string": 10458,
502
+ "typescript/no-confusing-non-null-assertion": 16744,
503
+ "typescript/no-confusing-void-expression": 15465,
504
+ "typescript/no-deprecated": 9930,
505
+ "typescript/no-duplicate-enum-values": 9931,
506
+ "typescript/no-dynamic-delete": 13868,
507
+ "typescript/no-empty-interface": 16670,
508
+ "typescript/no-empty-object-type": 15451,
509
+ "typescript/no-explicit-any": 14004,
510
+ "typescript/no-extra-non-null-assertion": 11480,
511
+ "typescript/no-extraneous-class": 17094,
512
+ "typescript/no-floating-promises": 11058,
513
+ "typescript/no-for-in-array": 15942,
514
+ "typescript/no-import-type-side-effects": 11388,
515
+ "typescript/no-inferrable-types": 10721,
516
+ "typescript/no-invalid-void-type": 10454,
517
+ "typescript/no-magic-numbers": 14045,
518
+ "typescript/no-meaningless-void-operator": 15187,
519
+ "typescript/no-misused-new": 13032,
520
+ "typescript/no-misused-promises": 11204,
521
+ "typescript/no-misused-spread": 14413,
522
+ "typescript/no-mixed-enums": 16905,
523
+ "typescript/no-namespace": 11166,
524
+ "typescript/no-non-null-asserted-nullish-coalescing": 17113,
525
+ "typescript/no-non-null-asserted-optional-chain": 11479,
526
+ "typescript/no-non-null-assertion": 10509,
527
+ "typescript/no-redundant-type-constituents": 15685,
528
+ "typescript/no-require-imports": 10289,
529
+ "typescript/no-restricted-types": 14722,
530
+ "typescript/no-this-alias": 11967,
531
+ "typescript/no-unnecessary-boolean-literal-compare": 16794,
532
+ "typescript/no-unnecessary-condition": 13351,
533
+ "typescript/no-unnecessary-parameter-property-assignment": 13957,
534
+ "typescript/no-unnecessary-qualifier": 13722,
535
+ "typescript/no-unnecessary-template-expression": 14861,
536
+ "typescript/no-unnecessary-type-arguments": 13103,
537
+ "typescript/no-unnecessary-type-assertion": 15903,
538
+ "typescript/no-unnecessary-type-constraint": 9274,
539
+ "typescript/no-unsafe-argument": 17947,
540
+ "typescript/no-unsafe-assignment": 15517,
541
+ "typescript/no-unsafe-call": 13276,
542
+ "typescript/no-unsafe-declaration-merging": 11790,
543
+ "typescript/no-unsafe-enum-comparison": 13789,
544
+ "typescript/no-unsafe-function-type": 14387,
545
+ "typescript/no-unsafe-member-access": 15455,
546
+ "typescript/no-unsafe-return": 17898,
547
+ "typescript/no-unsafe-unary-minus": 17174,
548
+ "typescript/no-useless-constructor": 14706,
549
+ "typescript/no-useless-empty-export": 13132,
550
+ "typescript/no-wrapper-object-types": 13170,
551
+ "typescript/non-nullable-type-assertion-style": 12902,
552
+ "typescript/only-throw-error": 12707,
553
+ "typescript/parameter-properties": 12712,
554
+ "typescript/prefer-as-const": 11570,
555
+ "typescript/prefer-enum-initializers": 13165,
556
+ "typescript/prefer-find": 14787,
557
+ "typescript/prefer-function-type": 11415,
558
+ "typescript/prefer-includes": 14645,
559
+ "typescript/prefer-literal-enum-member": 15400,
560
+ "typescript/prefer-namespace-keyword": 17221,
561
+ "typescript/prefer-nullish-coalescing": 9498,
562
+ "typescript/prefer-optional-chain": 17632,
563
+ "typescript/prefer-promise-reject-errors": 17137,
564
+ "typescript/prefer-readonly": 9094,
565
+ "typescript/prefer-reduce-type-parameter": 17531,
566
+ "typescript/prefer-regexp-exec": 14081,
567
+ "typescript/prefer-return-this-type": 12232,
568
+ "typescript/prefer-string-starts-ends-with": 10365,
569
+ "typescript/promise-function-async": 9270,
570
+ "typescript/related-getter-setter-pairs": 14514,
571
+ "typescript/require-array-sort-compare": 11783,
572
+ "typescript/require-await": 16837,
573
+ "typescript/restrict-plus-operands": 15575,
574
+ "typescript/restrict-template-expressions": 13278,
575
+ "typescript/return-await": 15346,
576
+ "typescript/sort-type-constituents": 13410,
577
+ "typescript/strict-boolean-expressions": 12053,
578
+ "typescript/switch-exhaustiveness-check": 11880,
579
+ "typescript/triple-slash-reference": 10515,
580
+ "typescript/unbound-method": 9902,
581
+ "typescript/use-unknown-in-catch-callback-variable": 12042,
582
+ "unicorn/better-regex": 17624,
583
+ "unicorn/catch-error-name": 15748,
584
+ "unicorn/consistent-assert": 9513,
585
+ "unicorn/consistent-date-clone": 11879,
586
+ "unicorn/consistent-destructuring": 15002,
587
+ "unicorn/consistent-empty-array-spread": 11696,
588
+ "unicorn/consistent-existence-index-check": 15973,
589
+ "unicorn/consistent-function-scoping": 10933,
590
+ "unicorn/consistent-template-literal-escape": 11713,
591
+ "unicorn/custom-error-definition": 12886,
592
+ "unicorn/empty-brace-spaces": 10417,
593
+ "unicorn/error-message": 15648,
594
+ "unicorn/escape-case": 11782,
595
+ "unicorn/expiring-todo-comments": 13200,
596
+ "unicorn/explicit-length-check": 12146,
597
+ "unicorn/filename-case": 17308,
598
+ "unicorn/import-style": 16101,
599
+ "unicorn/isolated-functions": 9915,
600
+ "unicorn/new-for-builtins": 13515,
601
+ "unicorn/no-abusive-eslint-disable": 11168,
602
+ "unicorn/no-accessor-recursion": 11016,
603
+ "unicorn/no-anonymous-default-export": 16332,
604
+ "unicorn/no-array-callback-reference": 14593,
605
+ "unicorn/no-array-for-each": 11153,
606
+ "unicorn/no-array-method-this-argument": 12486,
607
+ "unicorn/no-array-reduce": 13316,
608
+ "unicorn/no-array-reverse": 15320,
609
+ "unicorn/no-array-sort": 10502,
610
+ "unicorn/no-await-expression-member": 12430,
611
+ "unicorn/no-await-in-promise-methods": 17199,
612
+ "unicorn/no-console-spaces": 16953,
613
+ "unicorn/no-document-cookie": 11392,
614
+ "unicorn/no-empty-file": 9516,
615
+ "unicorn/no-for-loop": 10318,
616
+ "unicorn/no-hex-escape": 10817,
617
+ "unicorn/no-immediate-mutation": 16357,
618
+ "unicorn/no-instanceof-builtins": 11027,
619
+ "unicorn/no-invalid-fetch-options": 9299,
620
+ "unicorn/no-invalid-remove-event-listener": 12120,
621
+ "unicorn/no-keyword-prefix": 16100,
622
+ "unicorn/no-lonely-if": 11743,
623
+ "unicorn/no-magic-array-flat-depth": 16551,
624
+ "unicorn/no-named-default": 13887,
625
+ "unicorn/no-negated-condition": 16364,
626
+ "unicorn/no-negation-in-equality-check": 17335,
627
+ "unicorn/no-nested-ternary": 12327,
628
+ "unicorn/no-new-array": 10516,
629
+ "unicorn/no-new-buffer": 12533,
630
+ "unicorn/no-null": 9159,
631
+ "unicorn/no-object-as-default-parameter": 15182,
632
+ "unicorn/no-process-exit": 13226,
633
+ "unicorn/no-single-promise-in-promise-methods": 16361,
634
+ "unicorn/no-static-only-class": 11816,
635
+ "unicorn/no-thenable": 10401,
636
+ "unicorn/no-this-assignment": 12444,
637
+ "unicorn/no-typeof-undefined": 9275,
638
+ "unicorn/no-unnecessary-array-flat-depth": 10640,
639
+ "unicorn/no-unnecessary-array-splice-count": 16821,
640
+ "unicorn/no-unnecessary-await": 13331,
641
+ "unicorn/no-unnecessary-polyfills": 11693,
642
+ "unicorn/no-unnecessary-slice-end": 10319,
643
+ "unicorn/no-unreadable-array-destructuring": 10155,
644
+ "unicorn/no-unreadable-iife": 16119,
645
+ "unicorn/no-unused-properties": 10854,
646
+ "unicorn/no-useless-collection-argument": 17669,
647
+ "unicorn/no-useless-error-capture-stack-trace": 14878,
648
+ "unicorn/no-useless-fallback-in-spread": 14777,
649
+ "unicorn/no-useless-iterator-to-array": 11789,
650
+ "unicorn/no-useless-length-check": 15258,
651
+ "unicorn/no-useless-promise-resolve-reject": 17775,
652
+ "unicorn/no-useless-spread": 12636,
653
+ "unicorn/no-useless-switch-case": 9230,
654
+ "unicorn/no-useless-undefined": 12738,
655
+ "unicorn/no-zero-fractions": 9122,
656
+ "unicorn/number-literal-case": 15062,
657
+ "unicorn/numeric-separators-style": 11374,
658
+ "unicorn/prefer-add-event-listener": 11096,
659
+ "unicorn/prefer-array-find": 12930,
660
+ "unicorn/prefer-array-flat": 14186,
661
+ "unicorn/prefer-array-flat-map": 11561,
662
+ "unicorn/prefer-array-index-of": 10283,
663
+ "unicorn/prefer-array-some": 11818,
664
+ "unicorn/prefer-at": 10316,
665
+ "unicorn/prefer-bigint-literals": 11793,
666
+ "unicorn/prefer-blob-reading-methods": 15712,
667
+ "unicorn/prefer-class-fields": 11767,
668
+ "unicorn/prefer-classlist-toggle": 14178,
669
+ "unicorn/prefer-code-point": 13735,
670
+ "unicorn/prefer-date-now": 9976,
671
+ "unicorn/prefer-default-parameters": 13969,
672
+ "unicorn/prefer-dom-node-append": 15345,
673
+ "unicorn/prefer-dom-node-dataset": 9811,
674
+ "unicorn/prefer-dom-node-remove": 9597,
675
+ "unicorn/prefer-dom-node-text-content": 14576,
676
+ "unicorn/prefer-event-target": 9995,
677
+ "unicorn/prefer-export-from": 17498,
678
+ "unicorn/prefer-global-this": 9185,
679
+ "unicorn/prefer-import-meta-properties": 10716,
680
+ "unicorn/prefer-includes": 15744,
681
+ "unicorn/prefer-json-parse-buffer": 15758,
682
+ "unicorn/prefer-keyboard-event-key": 15719,
683
+ "unicorn/prefer-logical-operator-over-ternary": 17822,
684
+ "unicorn/prefer-math-min-max": 17037,
685
+ "unicorn/prefer-math-trunc": 14993,
686
+ "unicorn/prefer-modern-dom-apis": 10411,
687
+ "unicorn/prefer-modern-math-apis": 11303,
688
+ "unicorn/prefer-module": 10729,
689
+ "unicorn/prefer-native-coercion-functions": 15709,
690
+ "unicorn/prefer-negative-index": 15855,
691
+ "unicorn/prefer-node-protocol": 13520,
692
+ "unicorn/prefer-number-properties": 11098,
693
+ "unicorn/prefer-object-from-entries": 13652,
694
+ "unicorn/prefer-optional-catch-binding": 16115,
695
+ "unicorn/prefer-prototype-methods": 10254,
696
+ "unicorn/prefer-query-selector": 11163,
697
+ "unicorn/prefer-reflect-apply": 10263,
698
+ "unicorn/prefer-regexp-test": 15103,
699
+ "unicorn/prefer-response-static-json": 15556,
700
+ "unicorn/prefer-set-has": 15830,
701
+ "unicorn/prefer-set-size": 12471,
702
+ "unicorn/prefer-simple-condition-first": 17396,
703
+ "unicorn/prefer-single-call": 15720,
704
+ "unicorn/prefer-spread": 15642,
705
+ "unicorn/prefer-string-raw": 13235,
706
+ "unicorn/prefer-string-replace-all": 14980,
707
+ "unicorn/prefer-string-slice": 12075,
708
+ "unicorn/prefer-string-starts-ends-with": 11226,
709
+ "unicorn/prefer-string-trim-start-end": 17690,
710
+ "unicorn/prefer-structured-clone": 15794,
711
+ "unicorn/prefer-switch": 13765,
712
+ "unicorn/prefer-ternary": 10468,
713
+ "unicorn/prefer-top-level-await": 14168,
714
+ "unicorn/prefer-type-error": 15618,
715
+ "unicorn/prevent-abbreviations": 12942,
716
+ "unicorn/relative-url-style": 10128,
717
+ "unicorn/require-array-join-separator": 10844,
718
+ "unicorn/require-module-attributes": 9420,
719
+ "unicorn/require-module-specifiers": 13036,
720
+ "unicorn/require-number-to-fixed-digits-argument": 16771,
721
+ "unicorn/require-post-message-target-origin": 16893,
722
+ "unicorn/string-content": 17249,
723
+ "unicorn/switch-case-braces": 12742,
724
+ "unicorn/switch-case-break-position": 10667,
725
+ "unicorn/template-indent": 16883,
726
+ "unicorn/text-encoding-identifier-case": 16684,
727
+ "unicorn/throw-new-error": 17016,
728
+ "use-isnan": 11448,
729
+ "valid-typeof": 12045,
730
+ "vars-on-top": 10346,
731
+ "vitest/expect-expect": 17450,
732
+ "vitest/no-conditional-expect": 11115,
733
+ "vitest/no-conditional-tests": 9584,
734
+ "vitest/no-disabled-tests": 13169,
735
+ "vitest/no-done-callback": 13468,
736
+ "vitest/no-focused-tests": 16030,
737
+ "vitest/no-identical-title": 16739,
738
+ "vitest/no-standalone-expect": 13040,
739
+ "vitest/no-test-return-statement": 16822,
740
+ "vitest/prefer-to-have-length": 16831,
741
+ "vitest/valid-describe-callback": 10615,
742
+ "vitest/valid-expect": 11377,
743
+ "vitest/valid-title": 17918,
744
+ "yoda": 9522
745
+ }