@ttsc/lint 0.13.1 → 0.14.0-dev.20260528.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.
- package/README.md +948 -69
- package/lib/defaultFormat.d.ts +9 -6
- package/lib/defaultFormat.js +9 -6
- package/lib/defaultFormat.js.map +1 -1
- package/lib/index.d.ts +46 -0
- package/lib/index.js +35 -10
- package/lib/index.js.map +1 -1
- package/lib/structures/ITtscLintConfig.d.ts +12 -6
- package/lib/structures/{ITtscLintFormatConfig.d.ts → ITtscLintFormat.d.ts} +2 -2
- package/lib/structures/{TtscLintRuleMap.js → ITtscLintFormat.js} +1 -1
- package/lib/structures/ITtscLintFormat.js.map +1 -0
- package/lib/structures/TtscLintRuleSetting.d.ts +49 -0
- package/lib/structures/{TtscLintRuleOptions.js → TtscLintRuleSetting.js} +1 -1
- package/lib/structures/TtscLintRuleSetting.js.map +1 -0
- package/lib/structures/index.d.ts +3 -4
- package/lib/structures/index.js +3 -4
- package/lib/structures/index.js.map +1 -1
- package/lib/structures/rules/ITtscLintBoundariesRuleOptions.d.ts +104 -0
- package/lib/structures/rules/ITtscLintBoundariesRuleOptions.js +14 -0
- package/lib/structures/rules/ITtscLintBoundariesRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintBoundariesRules.d.ts +79 -0
- package/lib/structures/rules/ITtscLintBoundariesRules.js +3 -0
- package/lib/structures/rules/ITtscLintBoundariesRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintContributorRules.d.ts +17 -0
- package/lib/structures/rules/ITtscLintContributorRules.js +3 -0
- package/lib/structures/rules/ITtscLintContributorRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintCoreRules.d.ts +1257 -0
- package/lib/structures/{ITtscLintFormatConfig.js → rules/ITtscLintCoreRules.js} +1 -1
- package/lib/structures/rules/ITtscLintCoreRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintCypressRuleOptions.d.ts +17 -0
- package/lib/structures/rules/ITtscLintCypressRuleOptions.js +10 -0
- package/lib/structures/rules/ITtscLintCypressRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintCypressRules.d.ts +129 -0
- package/lib/structures/rules/ITtscLintCypressRules.js +3 -0
- package/lib/structures/rules/ITtscLintCypressRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintFunctionalRuleOptions.d.ts +157 -0
- package/lib/structures/rules/ITtscLintFunctionalRuleOptions.js +13 -0
- package/lib/structures/rules/ITtscLintFunctionalRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintFunctionalRules.d.ts +167 -0
- package/lib/structures/rules/ITtscLintFunctionalRules.js +3 -0
- package/lib/structures/rules/ITtscLintFunctionalRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintJestRules.d.ts +201 -0
- package/lib/structures/rules/ITtscLintJestRules.js +3 -0
- package/lib/structures/rules/ITtscLintJestRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintJsdocRules.d.ts +140 -0
- package/lib/structures/rules/ITtscLintJsdocRules.js +3 -0
- package/lib/structures/rules/ITtscLintJsdocRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintJsxA11yRules.d.ts +302 -0
- package/lib/structures/rules/ITtscLintJsxA11yRules.js +3 -0
- package/lib/structures/rules/ITtscLintJsxA11yRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintNextjsRules.d.ts +185 -0
- package/lib/structures/rules/ITtscLintNextjsRules.js +3 -0
- package/lib/structures/rules/ITtscLintNextjsRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintPlaywrightRules.d.ts +330 -0
- package/lib/structures/rules/ITtscLintPlaywrightRules.js +3 -0
- package/lib/structures/rules/ITtscLintPlaywrightRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintPromiseRules.d.ts +188 -0
- package/lib/structures/rules/ITtscLintPromiseRules.js +3 -0
- package/lib/structures/rules/ITtscLintPromiseRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintReactPerfRuleOptions.d.ts +18 -0
- package/lib/structures/rules/ITtscLintReactPerfRuleOptions.js +8 -0
- package/lib/structures/rules/ITtscLintReactPerfRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintReactPerfRules.d.ts +51 -0
- package/lib/structures/rules/ITtscLintReactPerfRules.js +3 -0
- package/lib/structures/rules/ITtscLintReactPerfRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintReactRuleOptions.d.ts +39 -0
- package/lib/structures/rules/ITtscLintReactRuleOptions.js +12 -0
- package/lib/structures/rules/ITtscLintReactRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintReactRules.d.ts +289 -0
- package/lib/structures/rules/ITtscLintReactRules.js +3 -0
- package/lib/structures/rules/ITtscLintReactRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintRegexpRules.d.ts +190 -0
- package/lib/structures/rules/ITtscLintRegexpRules.js +3 -0
- package/lib/structures/rules/ITtscLintRegexpRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintRuleOptionsMap.d.ts +66 -0
- package/lib/structures/rules/ITtscLintRuleOptionsMap.js +3 -0
- package/lib/structures/rules/ITtscLintRuleOptionsMap.js.map +1 -0
- package/lib/structures/rules/ITtscLintRules.d.ts +55 -0
- package/lib/structures/{TtscLintRule.js → rules/ITtscLintRules.js} +1 -1
- package/lib/structures/rules/ITtscLintRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintSecurityRules.d.ts +148 -0
- package/lib/structures/rules/ITtscLintSecurityRules.js +3 -0
- package/lib/structures/rules/ITtscLintSecurityRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintSolidRules.d.ts +181 -0
- package/lib/structures/rules/ITtscLintSolidRules.js +3 -0
- package/lib/structures/rules/ITtscLintSolidRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintStorybookRuleOptions.d.ts +21 -0
- package/lib/structures/rules/ITtscLintStorybookRuleOptions.js +9 -0
- package/lib/structures/rules/ITtscLintStorybookRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintStorybookRules.d.ts +174 -0
- package/lib/structures/rules/ITtscLintStorybookRules.js +3 -0
- package/lib/structures/rules/ITtscLintStorybookRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintTanstackQueryRules.d.ts +94 -0
- package/lib/structures/rules/ITtscLintTanstackQueryRules.js +3 -0
- package/lib/structures/rules/ITtscLintTanstackQueryRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintTestingLibraryRuleOptions.d.ts +22 -0
- package/lib/structures/rules/ITtscLintTestingLibraryRuleOptions.js +10 -0
- package/lib/structures/rules/ITtscLintTestingLibraryRuleOptions.js.map +1 -0
- package/lib/structures/rules/ITtscLintTestingLibraryRules.d.ts +310 -0
- package/lib/structures/rules/ITtscLintTestingLibraryRules.js +3 -0
- package/lib/structures/rules/ITtscLintTestingLibraryRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintTypeScriptRules.d.ts +1132 -0
- package/lib/structures/rules/ITtscLintTypeScriptRules.js +3 -0
- package/lib/structures/rules/ITtscLintTypeScriptRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintUnicornRules.d.ts +997 -0
- package/lib/structures/rules/ITtscLintUnicornRules.js +3 -0
- package/lib/structures/rules/ITtscLintUnicornRules.js.map +1 -0
- package/lib/structures/rules/ITtscLintVitestRules.d.ts +141 -0
- package/lib/structures/rules/ITtscLintVitestRules.js +3 -0
- package/lib/structures/rules/ITtscLintVitestRules.js.map +1 -0
- package/lib/structures/rules/index.d.ts +31 -0
- package/lib/structures/rules/index.js +48 -0
- package/lib/structures/rules/index.js.map +1 -0
- package/linthost/ast_helpers.go +30 -5
- package/linthost/config.go +48 -17
- package/linthost/config_format.go +9 -9
- package/linthost/directives.go +67 -25
- package/linthost/dispatch.go +14 -3
- package/linthost/engine.go +152 -31
- package/linthost/fix.go +2 -2
- package/linthost/lsp.go +747 -0
- package/linthost/print_dispatch.go +2 -2
- package/linthost/print_nodes_function.go +2 -2
- package/linthost/print_nodes_object.go +1 -1
- package/linthost/rule_names.go +14 -0
- package/linthost/rules_arrays.go +2 -2
- package/linthost/rules_boundaries.go +532 -0
- package/linthost/rules_camelcase.go +133 -0
- package/linthost/rules_complexity.go +94 -0
- package/linthost/rules_consistent_return.go +130 -0
- package/linthost/rules_console.go +1 -1
- package/linthost/rules_core_extra.go +739 -0
- package/linthost/rules_curly.go +70 -0
- package/linthost/rules_cypress.go +608 -0
- package/linthost/rules_debugger.go +2 -2
- package/linthost/rules_default_case.go +39 -0
- package/linthost/rules_default_case_last.go +46 -0
- package/linthost/rules_dupes.go +3 -3
- package/linthost/rules_empty.go +3 -3
- package/linthost/rules_escape.go +44 -24
- package/linthost/rules_eval.go +2 -2
- package/linthost/rules_finally.go +2 -2
- package/linthost/rules_format_jsdoc.go +1 -1
- package/linthost/rules_format_print_width.go +9 -9
- package/linthost/rules_format_quotes.go +1 -1
- package/linthost/rules_format_semi.go +1 -1
- package/linthost/rules_format_sort_imports.go +1 -1
- package/linthost/rules_format_trailing_comma.go +1 -1
- package/linthost/rules_functional.go +967 -0
- package/linthost/rules_gap.go +24 -45
- package/linthost/rules_grouped_accessor_pairs.go +87 -0
- package/linthost/rules_guard_for_in.go +198 -0
- package/linthost/rules_id_length.go +77 -0
- package/linthost/rules_imports.go +70 -2
- package/linthost/rules_init_declarations.go +53 -0
- package/linthost/rules_jest.go +618 -0
- package/linthost/rules_jsdoc.go +502 -0
- package/linthost/rules_jsx_a11y.go +1264 -0
- package/linthost/rules_logic.go +12 -12
- package/linthost/rules_loops.go +1 -1
- package/linthost/rules_max_classes_per_file.go +58 -0
- package/linthost/rules_max_depth.go +83 -0
- package/linthost/rules_max_lines.go +101 -0
- package/linthost/rules_max_lines_per_function.go +57 -0
- package/linthost/rules_max_nested_callbacks.go +61 -0
- package/linthost/rules_max_params.go +49 -0
- package/linthost/rules_max_statements.go +59 -0
- package/linthost/rules_misc.go +1 -1
- package/linthost/rules_nextjs.go +697 -0
- package/linthost/rules_no_else_return.go +75 -0
- package/linthost/rules_no_empty_named_blocks.go +91 -0
- package/linthost/rules_no_extend_native.go +51 -0
- package/linthost/rules_no_import_assign.go +140 -0
- package/linthost/rules_no_invalid_this.go +52 -0
- package/linthost/rules_no_loop_func.go +85 -0
- package/linthost/rules_no_magic_numbers.go +123 -0
- package/linthost/rules_no_mixed_operators.go +80 -0
- package/linthost/rules_no_param_reassign.go +98 -0
- package/linthost/rules_no_redeclare.go +270 -0
- package/linthost/rules_no_restricted_imports.go +105 -0
- package/linthost/rules_no_restricted_syntax.go +49 -0
- package/linthost/rules_no_shadow.go +147 -0
- package/linthost/rules_no_unreachable.go +77 -0
- package/linthost/rules_no_useless_assignment.go +120 -0
- package/linthost/rules_no_useless_constructor.go +245 -0
- package/linthost/rules_no_useless_return.go +51 -0
- package/linthost/rules_params.go +1 -1
- package/linthost/rules_playwright.go +788 -0
- package/linthost/rules_prefer_arrow_callback.go +124 -0
- package/linthost/rules_prefer_destructuring.go +98 -0
- package/linthost/rules_prefer_named_capture_group.go +129 -0
- package/linthost/rules_prefer_rest_params.go +94 -0
- package/linthost/rules_problems.go +41 -30
- package/linthost/rules_promise.go +1128 -73
- package/linthost/rules_protos.go +2 -2
- package/linthost/rules_react.go +773 -0
- package/linthost/rules_react_extras.go +227 -0
- package/linthost/rules_react_hooks.go +848 -0
- package/linthost/rules_react_perf.go +293 -0
- package/linthost/rules_react_refresh.go +583 -0
- package/linthost/rules_regexp.go +410 -0
- package/linthost/rules_security.go +830 -0
- package/linthost/rules_self.go +2 -2
- package/linthost/rules_solid.go +1073 -0
- package/linthost/rules_sort_imports.go +69 -0
- package/linthost/rules_sort_keys.go +134 -0
- package/linthost/rules_storybook.go +1176 -0
- package/linthost/rules_strings.go +4 -4
- package/linthost/rules_suggestions.go +38 -38
- package/linthost/rules_tanstack_query.go +844 -0
- package/linthost/rules_testing_library.go +1204 -0
- package/linthost/rules_throw.go +1 -1
- package/linthost/rules_ts.go +19 -19
- package/linthost/rules_ts_async.go +399 -0
- package/linthost/rules_ts_class_literal_property_style.go +115 -0
- package/linthost/rules_ts_consistent_type_exports.go +256 -0
- package/linthost/rules_ts_explicit_function_return_type.go +67 -0
- package/linthost/rules_ts_extra.go +155 -36
- package/linthost/rules_ts_no_base_to_string.go +218 -0
- package/linthost/rules_ts_no_confusing_void.go +72 -0
- package/linthost/rules_ts_no_deprecated.go +195 -0
- package/linthost/rules_ts_no_for_in_array.go +84 -0
- package/linthost/rules_ts_no_magic_numbers.go +124 -0
- package/linthost/rules_ts_no_meaningless_void_operator.go +84 -0
- package/linthost/rules_ts_no_misused_spread.go +104 -0
- package/linthost/rules_ts_no_redundant_type_constituents.go +113 -0
- package/linthost/rules_ts_no_restricted_types.go +62 -0
- package/linthost/rules_ts_no_unnecessary_boolean_literal_compare.go +129 -0
- package/linthost/rules_ts_no_unnecessary_condition.go +250 -0
- package/linthost/rules_ts_no_unnecessary_qualifier.go +118 -0
- package/linthost/rules_ts_no_unnecessary_template_expression.go +178 -0
- package/linthost/rules_ts_no_unnecessary_type_arguments.go +234 -0
- package/linthost/rules_ts_no_unnecessary_type_assertion.go +157 -0
- package/linthost/rules_ts_no_unsafe_argument.go +82 -0
- package/linthost/rules_ts_no_unsafe_assignment.go +102 -0
- package/linthost/rules_ts_no_unsafe_call.go +82 -0
- package/linthost/rules_ts_no_unsafe_enum_comparison.go +235 -0
- package/linthost/rules_ts_no_unsafe_member_access.go +58 -0
- package/linthost/rules_ts_no_unsafe_return.go +126 -0
- package/linthost/rules_ts_no_unsafe_unary_minus.go +81 -0
- package/linthost/rules_ts_no_useless_constructor.go +52 -0
- package/linthost/rules_ts_non_nullable_type_assertion_style.go +108 -0
- package/linthost/rules_ts_parameter_properties.go +38 -0
- package/linthost/rules_ts_prefer_find.go +178 -0
- package/linthost/rules_ts_prefer_includes.go +255 -0
- package/linthost/rules_ts_prefer_nullish_coalescing.go +104 -0
- package/linthost/rules_ts_prefer_optional_chain.go +228 -0
- package/linthost/rules_ts_prefer_promise_reject_errors.go +176 -0
- package/linthost/rules_ts_prefer_readonly.go +73 -0
- package/linthost/rules_ts_prefer_reduce_type_parameter.go +116 -0
- package/linthost/rules_ts_prefer_regexp_exec.go +122 -0
- package/linthost/rules_ts_prefer_return_this_type.go +135 -0
- package/linthost/rules_ts_prefer_string_starts_ends_with.go +360 -0
- package/linthost/rules_ts_promise_function_async.go +77 -0
- package/linthost/rules_ts_related_getter_setter_pairs.go +113 -0
- package/linthost/rules_ts_require_array_sort_compare.go +96 -0
- package/linthost/rules_ts_restrict_plus_operands.go +127 -0
- package/linthost/rules_ts_restrict_template_expressions.go +95 -0
- package/linthost/rules_ts_simple.go +387 -0
- package/linthost/rules_ts_sort_type_constituents.go +144 -0
- package/linthost/rules_ts_strict_boolean_expressions.go +157 -0
- package/linthost/rules_ts_switch_exhaustiveness_check.go +147 -0
- package/linthost/rules_ts_unbound_method.go +126 -0
- package/linthost/rules_tsdoc.go +136 -0
- package/linthost/rules_unicorn_better_regex.go +27 -0
- package/linthost/rules_unicorn_catch_error_name.go +46 -0
- package/linthost/rules_unicorn_consistent_assert.go +47 -0
- package/linthost/rules_unicorn_consistent_date_clone.go +54 -0
- package/linthost/rules_unicorn_consistent_destructuring.go +25 -0
- package/linthost/rules_unicorn_consistent_empty_array_spread.go +62 -0
- package/linthost/rules_unicorn_consistent_existence_index_check.go +80 -0
- package/linthost/rules_unicorn_consistent_function_scoping.go +25 -0
- package/linthost/rules_unicorn_consistent_template_literal_escape.go +25 -0
- package/linthost/rules_unicorn_custom_error_definition.go +138 -0
- package/linthost/rules_unicorn_empty_brace_spaces.go +73 -0
- package/linthost/rules_unicorn_error_message.go +64 -0
- package/linthost/rules_unicorn_escape_case.go +51 -0
- package/linthost/rules_unicorn_expiring_todo_comments.go +78 -0
- package/linthost/rules_unicorn_explicit_length_check.go +88 -0
- package/linthost/rules_unicorn_filename_case.go +29 -0
- package/linthost/rules_unicorn_import_style.go +28 -0
- package/linthost/rules_unicorn_isolated_functions.go +29 -0
- package/linthost/rules_unicorn_new_for_builtins.go +87 -0
- package/linthost/rules_unicorn_no_abusive_eslint_disable.go +63 -0
- package/linthost/rules_unicorn_no_accessor_recursion.go +115 -0
- package/linthost/rules_unicorn_no_anonymous_default_export.go +74 -0
- package/linthost/rules_unicorn_no_array_callback_reference.go +65 -0
- package/linthost/rules_unicorn_no_array_for_each.go +40 -0
- package/linthost/rules_unicorn_no_array_method_this_argument.go +61 -0
- package/linthost/rules_unicorn_no_array_reduce.go +41 -0
- package/linthost/rules_unicorn_no_array_reverse.go +44 -0
- package/linthost/rules_unicorn_no_array_sort.go +43 -0
- package/linthost/rules_unicorn_no_await_expression_member.go +40 -0
- package/linthost/rules_unicorn_no_await_in_promise_methods.go +69 -0
- package/linthost/rules_unicorn_no_console_spaces.go +61 -0
- package/linthost/rules_unicorn_no_document_cookie.go +41 -0
- package/linthost/rules_unicorn_no_empty_file.go +44 -0
- package/linthost/rules_unicorn_no_for_loop.go +102 -0
- package/linthost/rules_unicorn_no_hex_escape.go +42 -0
- package/linthost/rules_unicorn_no_immediate_mutation.go +90 -0
- package/linthost/rules_unicorn_no_instanceof_builtins.go +66 -0
- package/linthost/rules_unicorn_no_invalid_fetch_options.go +79 -0
- package/linthost/rules_unicorn_no_invalid_remove_event_listener.go +51 -0
- package/linthost/rules_unicorn_no_keyword_prefix.go +101 -0
- package/linthost/rules_unicorn_no_lonely_if.go +44 -0
- package/linthost/rules_unicorn_no_magic_array_flat_depth.go +51 -0
- package/linthost/rules_unicorn_no_named_default.go +54 -0
- package/linthost/rules_unicorn_no_negated_condition.go +85 -0
- package/linthost/rules_unicorn_no_negation_in_equality_check.go +50 -0
- package/linthost/rules_unicorn_no_nested_ternary.go +43 -0
- package/linthost/rules_unicorn_no_new_array.go +30 -0
- package/linthost/rules_unicorn_no_new_buffer.go +31 -0
- package/linthost/rules_unicorn_no_null.go +24 -0
- package/linthost/rules_unicorn_no_object_as_default_parameter.go +48 -0
- package/linthost/rules_unicorn_no_process_exit.go +43 -0
- package/linthost/rules_unicorn_no_single_promise_in_promise_methods.go +59 -0
- package/linthost/rules_unicorn_no_static_only_class.go +56 -0
- package/linthost/rules_unicorn_no_thenable.go +74 -0
- package/linthost/rules_unicorn_no_this_assignment.go +35 -0
- package/linthost/rules_unicorn_no_typeof_undefined.go +58 -0
- package/linthost/rules_unicorn_no_unnecessary_array_flat_depth.go +49 -0
- package/linthost/rules_unicorn_no_unnecessary_array_splice_count.go +70 -0
- package/linthost/rules_unicorn_no_unnecessary_await.go +51 -0
- package/linthost/rules_unicorn_no_unnecessary_polyfills.go +32 -0
- package/linthost/rules_unicorn_no_unnecessary_slice_end.go +48 -0
- package/linthost/rules_unicorn_no_unreadable_array_destructuring.go +115 -0
- package/linthost/rules_unicorn_no_unreadable_iife.go +50 -0
- package/linthost/rules_unicorn_no_unused_properties.go +30 -0
- package/linthost/rules_unicorn_no_useless_collection_argument.go +63 -0
- package/linthost/rules_unicorn_no_useless_error_capture_stack_trace.go +46 -0
- package/linthost/rules_unicorn_no_useless_fallback_in_spread.go +81 -0
- package/linthost/rules_unicorn_no_useless_iterator_to_array.go +72 -0
- package/linthost/rules_unicorn_no_useless_length_check.go +144 -0
- package/linthost/rules_unicorn_no_useless_promise_resolve_reject.go +81 -0
- package/linthost/rules_unicorn_no_useless_spread.go +67 -0
- package/linthost/rules_unicorn_no_useless_switch_case.go +55 -0
- package/linthost/rules_unicorn_no_useless_undefined.go +55 -0
- package/linthost/rules_unicorn_no_zero_fractions.go +52 -0
- package/linthost/rules_unicorn_number_literal_case.go +69 -0
- package/linthost/rules_unicorn_numeric_separators_style.go +75 -0
- package/linthost/rules_unicorn_prefer_add_event_listener.go +66 -0
- package/linthost/rules_unicorn_prefer_array_find.go +51 -0
- package/linthost/rules_unicorn_prefer_array_flat.go +52 -0
- package/linthost/rules_unicorn_prefer_array_flat_map.go +63 -0
- package/linthost/rules_unicorn_prefer_array_index_of.go +147 -0
- package/linthost/rules_unicorn_prefer_array_some.go +67 -0
- package/linthost/rules_unicorn_prefer_at.go +77 -0
- package/linthost/rules_unicorn_prefer_bigint_literals.go +77 -0
- package/linthost/rules_unicorn_prefer_blob_reading_methods.go +44 -0
- package/linthost/rules_unicorn_prefer_class_fields.go +93 -0
- package/linthost/rules_unicorn_prefer_classlist_toggle.go +120 -0
- package/linthost/rules_unicorn_prefer_code_point.go +49 -0
- package/linthost/rules_unicorn_prefer_date_now.go +78 -0
- package/linthost/rules_unicorn_prefer_default_parameters.go +144 -0
- package/linthost/rules_unicorn_prefer_dom_node_append.go +40 -0
- package/linthost/rules_unicorn_prefer_dom_node_dataset.go +55 -0
- package/linthost/rules_unicorn_prefer_dom_node_remove.go +41 -0
- package/linthost/rules_unicorn_prefer_dom_node_text_content.go +37 -0
- package/linthost/rules_unicorn_prefer_event_target.go +36 -0
- package/linthost/rules_unicorn_prefer_export_from.go +129 -0
- package/linthost/rules_unicorn_prefer_global_this.go +127 -0
- package/linthost/rules_unicorn_prefer_import_meta_properties.go +66 -0
- package/linthost/rules_unicorn_prefer_includes.go +149 -0
- package/linthost/rules_unicorn_prefer_json_parse_buffer.go +65 -0
- package/linthost/rules_unicorn_prefer_keyboard_event_key.go +38 -0
- package/linthost/rules_unicorn_prefer_logical_operator_over_ternary.go +48 -0
- package/linthost/rules_unicorn_prefer_math_min_max.go +60 -0
- package/linthost/rules_unicorn_prefer_math_trunc.go +62 -0
- package/linthost/rules_unicorn_prefer_modern_dom_apis.go +47 -0
- package/linthost/rules_unicorn_prefer_modern_math_apis.go +70 -0
- package/linthost/rules_unicorn_prefer_module.go +50 -0
- package/linthost/rules_unicorn_prefer_native_coercion_functions.go +114 -0
- package/linthost/rules_unicorn_prefer_negative_index.go +74 -0
- package/linthost/rules_unicorn_prefer_node_protocol.go +122 -0
- package/linthost/rules_unicorn_prefer_number_properties.go +88 -0
- package/linthost/rules_unicorn_prefer_object_from_entries.go +55 -0
- package/linthost/rules_unicorn_prefer_optional_catch_binding.go +62 -0
- package/linthost/rules_unicorn_prefer_prototype_methods.go +54 -0
- package/linthost/rules_unicorn_prefer_query_selector.go +56 -0
- package/linthost/rules_unicorn_prefer_reflect_apply.go +36 -0
- package/linthost/rules_unicorn_prefer_regexp_test_rule.go +80 -0
- package/linthost/rules_unicorn_prefer_response_static_json.go +53 -0
- package/linthost/rules_unicorn_prefer_set_has.go +42 -0
- package/linthost/rules_unicorn_prefer_set_size.go +48 -0
- package/linthost/rules_unicorn_prefer_simple_condition_first.go +34 -0
- package/linthost/rules_unicorn_prefer_single_call.go +96 -0
- package/linthost/rules_unicorn_prefer_spread.go +51 -0
- package/linthost/rules_unicorn_prefer_string_raw.go +43 -0
- package/linthost/rules_unicorn_prefer_string_replace_all.go +95 -0
- package/linthost/rules_unicorn_prefer_string_slice.go +43 -0
- package/linthost/rules_unicorn_prefer_string_starts_ends_with.go +148 -0
- package/linthost/rules_unicorn_prefer_string_trim_start_end.go +48 -0
- package/linthost/rules_unicorn_prefer_structured_clone.go +71 -0
- package/linthost/rules_unicorn_prefer_switch.go +103 -0
- package/linthost/rules_unicorn_prefer_ternary.go +71 -0
- package/linthost/rules_unicorn_prefer_top_level_await.go +72 -0
- package/linthost/rules_unicorn_prefer_type_error.go +127 -0
- package/linthost/rules_unicorn_prevent_abbreviations.go +127 -0
- package/linthost/rules_unicorn_relative_url_style.go +49 -0
- package/linthost/rules_unicorn_require_array_join_separator.go +45 -0
- package/linthost/rules_unicorn_require_module_attributes.go +54 -0
- package/linthost/rules_unicorn_require_module_specifiers.go +55 -0
- package/linthost/rules_unicorn_require_number_to_fixed_digits_argument.go +43 -0
- package/linthost/rules_unicorn_require_post_message_target_origin.go +44 -0
- package/linthost/rules_unicorn_string_content.go +27 -0
- package/linthost/rules_unicorn_switch_case_braces.go +42 -0
- package/linthost/rules_unicorn_switch_case_break_position.go +31 -0
- package/linthost/rules_unicorn_template_indent.go +28 -0
- package/linthost/rules_unicorn_text_encoding_identifier_case.go +72 -0
- package/linthost/rules_unicorn_throw_new_error.go +61 -0
- package/linthost/rules_var.go +4 -4
- package/linthost/rules_vitest.go +568 -0
- package/package.json +3 -3
- package/plugin/main.go +49 -3
- package/rule/astutil/astutil.go +10 -3
- package/rule/rule.go +12 -10
- package/src/defaultFormat.ts +11 -8
- package/src/index.ts +40 -16
- package/src/structures/ITtscLintConfig.ts +12 -6
- package/src/structures/{ITtscLintFormatConfig.ts → ITtscLintFormat.ts} +2 -2
- package/src/structures/TtscLintRuleSetting.ts +55 -0
- package/src/structures/index.ts +3 -4
- package/src/structures/rules/ITtscLintBoundariesRuleOptions.ts +128 -0
- package/src/structures/rules/ITtscLintBoundariesRules.ts +95 -0
- package/src/structures/rules/ITtscLintContributorRules.ts +21 -0
- package/src/structures/rules/ITtscLintCoreRules.ts +1406 -0
- package/src/structures/rules/ITtscLintCypressRuleOptions.ts +18 -0
- package/src/structures/rules/ITtscLintCypressRules.ts +145 -0
- package/src/structures/rules/ITtscLintFunctionalRuleOptions.ts +213 -0
- package/src/structures/rules/ITtscLintFunctionalRules.ts +202 -0
- package/src/structures/rules/ITtscLintJestRules.ts +220 -0
- package/src/structures/rules/ITtscLintJsdocRules.ts +153 -0
- package/src/structures/rules/ITtscLintJsxA11yRules.ts +339 -0
- package/src/structures/rules/ITtscLintNextjsRules.ts +206 -0
- package/src/structures/rules/ITtscLintPlaywrightRules.ts +361 -0
- package/src/structures/rules/ITtscLintPromiseRules.ts +205 -0
- package/src/structures/rules/ITtscLintReactPerfRuleOptions.ts +19 -0
- package/src/structures/rules/ITtscLintReactPerfRules.ts +55 -0
- package/src/structures/rules/ITtscLintReactRuleOptions.ts +43 -0
- package/src/structures/rules/ITtscLintReactRules.ts +321 -0
- package/src/structures/rules/ITtscLintRegexpRules.ts +212 -0
- package/src/structures/rules/ITtscLintRuleOptionsMap.ts +89 -0
- package/src/structures/rules/ITtscLintRules.ts +77 -0
- package/src/structures/rules/ITtscLintSecurityRules.ts +162 -0
- package/src/structures/rules/ITtscLintSolidRules.ts +202 -0
- package/src/structures/rules/ITtscLintStorybookRuleOptions.ts +23 -0
- package/src/structures/rules/ITtscLintStorybookRules.ts +193 -0
- package/src/structures/rules/ITtscLintTanstackQueryRules.ts +102 -0
- package/src/structures/rules/ITtscLintTestingLibraryRuleOptions.ts +24 -0
- package/src/structures/rules/ITtscLintTestingLibraryRules.ts +342 -0
- package/src/structures/rules/ITtscLintTypeScriptRules.ts +1230 -0
- package/src/structures/rules/ITtscLintUnicornRules.ts +1143 -0
- package/src/structures/rules/ITtscLintVitestRules.ts +154 -0
- package/src/structures/rules/index.ts +31 -0
- package/lib/structures/ITtscLintFormatConfig.js.map +0 -1
- package/lib/structures/TtscLintRule.d.ts +0 -17
- package/lib/structures/TtscLintRule.js.map +0 -1
- package/lib/structures/TtscLintRuleMap.d.ts +0 -46
- package/lib/structures/TtscLintRuleMap.js.map +0 -1
- package/lib/structures/TtscLintRuleOptions.d.ts +0 -137
- package/lib/structures/TtscLintRuleOptions.js.map +0 -1
- package/src/structures/TtscLintRule.ts +0 -160
- package/src/structures/TtscLintRuleMap.ts +0 -55
- package/src/structures/TtscLintRuleOptions.ts +0 -151
|
@@ -0,0 +1,844 @@
|
|
|
1
|
+
package linthost
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"fmt"
|
|
5
|
+
"strings"
|
|
6
|
+
"unicode"
|
|
7
|
+
|
|
8
|
+
shimast "github.com/microsoft/typescript-go/shim/ast"
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
type tanstackQueryRule struct {
|
|
12
|
+
name string
|
|
13
|
+
run func(*Context, *shimast.Node)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
func (r tanstackQueryRule) Name() string { return "tanstack-query/" + r.name }
|
|
17
|
+
func (r tanstackQueryRule) Visits() []shimast.Kind { return []shimast.Kind{shimast.KindSourceFile} }
|
|
18
|
+
func (r tanstackQueryRule) Check(ctx *Context, node *shimast.Node) {
|
|
19
|
+
if r.run != nil {
|
|
20
|
+
r.run(ctx, node)
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
type tanstackImports struct {
|
|
25
|
+
values map[string]string
|
|
26
|
+
namespaces map[string]bool
|
|
27
|
+
imports map[string]bool
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
func collectTanstackImports(root *shimast.Node) tanstackImports {
|
|
31
|
+
imports := tanstackImports{
|
|
32
|
+
values: map[string]string{},
|
|
33
|
+
namespaces: map[string]bool{},
|
|
34
|
+
imports: map[string]bool{},
|
|
35
|
+
}
|
|
36
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
37
|
+
if node.Kind != shimast.KindImportDeclaration {
|
|
38
|
+
return
|
|
39
|
+
}
|
|
40
|
+
decl := node.AsImportDeclaration()
|
|
41
|
+
if decl == nil || decl.ImportClause == nil {
|
|
42
|
+
return
|
|
43
|
+
}
|
|
44
|
+
clause := decl.ImportClause.AsImportClause()
|
|
45
|
+
if clause == nil {
|
|
46
|
+
return
|
|
47
|
+
}
|
|
48
|
+
module := stringLiteralText(decl.ModuleSpecifier)
|
|
49
|
+
if !isTanstackQueryModule(module) {
|
|
50
|
+
return
|
|
51
|
+
}
|
|
52
|
+
if name := identifierText(clause.Name()); name != "" {
|
|
53
|
+
imports.values[name] = "default"
|
|
54
|
+
imports.imports[name] = true
|
|
55
|
+
}
|
|
56
|
+
if clause.NamedBindings == nil {
|
|
57
|
+
return
|
|
58
|
+
}
|
|
59
|
+
switch clause.NamedBindings.Kind {
|
|
60
|
+
case shimast.KindNamedImports:
|
|
61
|
+
named := clause.NamedBindings.AsNamedImports()
|
|
62
|
+
if named == nil || named.Elements == nil {
|
|
63
|
+
return
|
|
64
|
+
}
|
|
65
|
+
for _, specNode := range named.Elements.Nodes {
|
|
66
|
+
spec := specNode.AsImportSpecifier()
|
|
67
|
+
if spec == nil {
|
|
68
|
+
continue
|
|
69
|
+
}
|
|
70
|
+
local := identifierText(spec.Name())
|
|
71
|
+
if local == "" {
|
|
72
|
+
continue
|
|
73
|
+
}
|
|
74
|
+
imported := local
|
|
75
|
+
if spec.PropertyName != nil {
|
|
76
|
+
imported = identifierText(spec.PropertyName)
|
|
77
|
+
}
|
|
78
|
+
imports.values[local] = imported
|
|
79
|
+
imports.imports[local] = true
|
|
80
|
+
}
|
|
81
|
+
case shimast.KindNamespaceImport:
|
|
82
|
+
ns := clause.NamedBindings.AsNamespaceImport()
|
|
83
|
+
if ns != nil {
|
|
84
|
+
if name := identifierText(ns.Name()); name != "" {
|
|
85
|
+
imports.namespaces[name] = true
|
|
86
|
+
imports.imports[name] = true
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
})
|
|
91
|
+
return imports
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
func collectImportNames(root *shimast.Node) map[string]bool {
|
|
95
|
+
names := map[string]bool{}
|
|
96
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
97
|
+
if node.Kind != shimast.KindImportDeclaration {
|
|
98
|
+
return
|
|
99
|
+
}
|
|
100
|
+
decl := node.AsImportDeclaration()
|
|
101
|
+
if decl == nil || decl.ImportClause == nil {
|
|
102
|
+
return
|
|
103
|
+
}
|
|
104
|
+
clause := decl.ImportClause.AsImportClause()
|
|
105
|
+
if clause == nil {
|
|
106
|
+
return
|
|
107
|
+
}
|
|
108
|
+
if name := identifierText(clause.Name()); name != "" {
|
|
109
|
+
names[name] = true
|
|
110
|
+
}
|
|
111
|
+
if clause.NamedBindings == nil {
|
|
112
|
+
return
|
|
113
|
+
}
|
|
114
|
+
switch clause.NamedBindings.Kind {
|
|
115
|
+
case shimast.KindNamedImports:
|
|
116
|
+
named := clause.NamedBindings.AsNamedImports()
|
|
117
|
+
if named == nil || named.Elements == nil {
|
|
118
|
+
return
|
|
119
|
+
}
|
|
120
|
+
for _, specNode := range named.Elements.Nodes {
|
|
121
|
+
spec := specNode.AsImportSpecifier()
|
|
122
|
+
if spec != nil {
|
|
123
|
+
if name := identifierText(spec.Name()); name != "" {
|
|
124
|
+
names[name] = true
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
case shimast.KindNamespaceImport:
|
|
129
|
+
ns := clause.NamedBindings.AsNamespaceImport()
|
|
130
|
+
if ns != nil {
|
|
131
|
+
if name := identifierText(ns.Name()); name != "" {
|
|
132
|
+
names[name] = true
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
})
|
|
137
|
+
return names
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
func isTanstackQueryModule(module string) bool {
|
|
141
|
+
return module == "@tanstack/react-query" ||
|
|
142
|
+
module == "@tanstack/query-core" ||
|
|
143
|
+
(strings.HasPrefix(module, "@tanstack/") && strings.Contains(module, "query"))
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
func tanstackCalleeName(expr *shimast.Node, imports tanstackImports) string {
|
|
147
|
+
expr = stripParens(expr)
|
|
148
|
+
if name := identifierText(expr); name != "" {
|
|
149
|
+
if imported := imports.values[name]; imported != "" {
|
|
150
|
+
return imported
|
|
151
|
+
}
|
|
152
|
+
return ""
|
|
153
|
+
}
|
|
154
|
+
if expr == nil || expr.Kind != shimast.KindPropertyAccessExpression {
|
|
155
|
+
return ""
|
|
156
|
+
}
|
|
157
|
+
access := expr.AsPropertyAccessExpression()
|
|
158
|
+
if access == nil || access.Expression == nil {
|
|
159
|
+
return ""
|
|
160
|
+
}
|
|
161
|
+
if ns := identifierText(access.Expression); ns != "" && imports.namespaces[ns] {
|
|
162
|
+
return identifierText(access.Name())
|
|
163
|
+
}
|
|
164
|
+
return ""
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
func callTanstackName(call *shimast.CallExpression, imports tanstackImports) string {
|
|
168
|
+
if call == nil {
|
|
169
|
+
return ""
|
|
170
|
+
}
|
|
171
|
+
return tanstackCalleeName(call.Expression, imports)
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
func newTanstackName(expr *shimast.NewExpression, imports tanstackImports) string {
|
|
175
|
+
if expr == nil {
|
|
176
|
+
return ""
|
|
177
|
+
}
|
|
178
|
+
return tanstackCalleeName(expr.Expression, imports)
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
func isQueryResultHook(name string) bool {
|
|
182
|
+
switch name {
|
|
183
|
+
case "useQuery",
|
|
184
|
+
"useQueries",
|
|
185
|
+
"useInfiniteQuery",
|
|
186
|
+
"useSuspenseQuery",
|
|
187
|
+
"useSuspenseQueries",
|
|
188
|
+
"useSuspenseInfiniteQuery",
|
|
189
|
+
"useMutation":
|
|
190
|
+
return true
|
|
191
|
+
}
|
|
192
|
+
return false
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
func isQueryHook(name string) bool {
|
|
196
|
+
switch name {
|
|
197
|
+
case "useQuery",
|
|
198
|
+
"useQueries",
|
|
199
|
+
"useInfiniteQuery",
|
|
200
|
+
"useSuspenseQuery",
|
|
201
|
+
"useSuspenseQueries",
|
|
202
|
+
"useSuspenseInfiniteQuery":
|
|
203
|
+
return true
|
|
204
|
+
}
|
|
205
|
+
return false
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
func isUseQueriesHook(name string) bool {
|
|
209
|
+
return name == "useQueries" || name == "useSuspenseQueries"
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
func firstArgumentObject(call *shimast.CallExpression) *shimast.Node {
|
|
213
|
+
if call == nil || call.Arguments == nil || len(call.Arguments.Nodes) == 0 {
|
|
214
|
+
return nil
|
|
215
|
+
}
|
|
216
|
+
node := stripParens(call.Arguments.Nodes[0])
|
|
217
|
+
if node == nil || node.Kind != shimast.KindObjectLiteralExpression {
|
|
218
|
+
return nil
|
|
219
|
+
}
|
|
220
|
+
return node
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
func objectProperty(file *shimast.SourceFile, object *shimast.Node, key string) *shimast.Node {
|
|
224
|
+
if object == nil {
|
|
225
|
+
return nil
|
|
226
|
+
}
|
|
227
|
+
if object.Kind != shimast.KindObjectLiteralExpression {
|
|
228
|
+
return nil
|
|
229
|
+
}
|
|
230
|
+
obj := object.AsObjectLiteralExpression()
|
|
231
|
+
if obj == nil || obj.Properties == nil {
|
|
232
|
+
return nil
|
|
233
|
+
}
|
|
234
|
+
for _, prop := range obj.Properties.Nodes {
|
|
235
|
+
if propertyKey(file, prop) == key {
|
|
236
|
+
return prop
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
return nil
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
func objectPropertyInitializer(file *shimast.SourceFile, object *shimast.Node, key string) *shimast.Node {
|
|
243
|
+
prop := objectProperty(file, object, key)
|
|
244
|
+
if prop == nil || prop.Kind != shimast.KindPropertyAssignment {
|
|
245
|
+
return nil
|
|
246
|
+
}
|
|
247
|
+
assignment := prop.AsPropertyAssignment()
|
|
248
|
+
if assignment == nil {
|
|
249
|
+
return nil
|
|
250
|
+
}
|
|
251
|
+
return stripParens(assignment.Initializer)
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
func objectHasProperty(file *shimast.SourceFile, object *shimast.Node, key string) bool {
|
|
255
|
+
return objectProperty(file, object, key) != nil
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
func objectPropertyIndexes(file *shimast.SourceFile, object *shimast.Node, keys ...string) map[string]int {
|
|
259
|
+
indexes := map[string]int{}
|
|
260
|
+
if object == nil {
|
|
261
|
+
return indexes
|
|
262
|
+
}
|
|
263
|
+
if object.Kind != shimast.KindObjectLiteralExpression {
|
|
264
|
+
return indexes
|
|
265
|
+
}
|
|
266
|
+
obj := object.AsObjectLiteralExpression()
|
|
267
|
+
if obj == nil || obj.Properties == nil {
|
|
268
|
+
return indexes
|
|
269
|
+
}
|
|
270
|
+
for i, prop := range obj.Properties.Nodes {
|
|
271
|
+
key := propertyKey(file, prop)
|
|
272
|
+
for _, want := range keys {
|
|
273
|
+
if key == want {
|
|
274
|
+
indexes[key] = i
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
return indexes
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
func arrayElements(node *shimast.Node) []*shimast.Node {
|
|
282
|
+
if node == nil {
|
|
283
|
+
return nil
|
|
284
|
+
}
|
|
285
|
+
if node.Kind != shimast.KindArrayLiteralExpression {
|
|
286
|
+
return nil
|
|
287
|
+
}
|
|
288
|
+
arr := node.AsArrayLiteralExpression()
|
|
289
|
+
if arr == nil || arr.Elements == nil {
|
|
290
|
+
return nil
|
|
291
|
+
}
|
|
292
|
+
return arr.Elements.Nodes
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
func bindingPatternHasObjectRest(node *shimast.Node) bool {
|
|
296
|
+
node = stripParens(node)
|
|
297
|
+
if node == nil {
|
|
298
|
+
return false
|
|
299
|
+
}
|
|
300
|
+
switch node.Kind {
|
|
301
|
+
case shimast.KindObjectBindingPattern:
|
|
302
|
+
pattern := node.AsBindingPattern()
|
|
303
|
+
if pattern == nil || pattern.Elements == nil {
|
|
304
|
+
return false
|
|
305
|
+
}
|
|
306
|
+
for _, elementNode := range pattern.Elements.Nodes {
|
|
307
|
+
if elementNode.Kind != shimast.KindBindingElement {
|
|
308
|
+
continue
|
|
309
|
+
}
|
|
310
|
+
element := elementNode.AsBindingElement()
|
|
311
|
+
if element == nil {
|
|
312
|
+
continue
|
|
313
|
+
}
|
|
314
|
+
if element.DotDotDotToken != nil {
|
|
315
|
+
return true
|
|
316
|
+
}
|
|
317
|
+
if bindingPatternHasObjectRest(element.Name()) {
|
|
318
|
+
return true
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
case shimast.KindArrayBindingPattern:
|
|
322
|
+
pattern := node.AsBindingPattern()
|
|
323
|
+
if pattern == nil || pattern.Elements == nil {
|
|
324
|
+
return false
|
|
325
|
+
}
|
|
326
|
+
for _, elementNode := range pattern.Elements.Nodes {
|
|
327
|
+
if elementNode.Kind != shimast.KindBindingElement {
|
|
328
|
+
continue
|
|
329
|
+
}
|
|
330
|
+
element := elementNode.AsBindingElement()
|
|
331
|
+
if element != nil && bindingPatternHasObjectRest(element.Name()) {
|
|
332
|
+
return true
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
return false
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
func collectBindingIdentifierNames(node *shimast.Node, names map[string]bool, includeObjectPattern bool) {
|
|
340
|
+
if node == nil {
|
|
341
|
+
return
|
|
342
|
+
}
|
|
343
|
+
if name := identifierText(node); name != "" {
|
|
344
|
+
names[name] = true
|
|
345
|
+
return
|
|
346
|
+
}
|
|
347
|
+
switch node.Kind {
|
|
348
|
+
case shimast.KindArrayBindingPattern:
|
|
349
|
+
pattern := node.AsBindingPattern()
|
|
350
|
+
if pattern == nil || pattern.Elements == nil {
|
|
351
|
+
return
|
|
352
|
+
}
|
|
353
|
+
for _, elementNode := range pattern.Elements.Nodes {
|
|
354
|
+
if elementNode.Kind != shimast.KindBindingElement {
|
|
355
|
+
continue
|
|
356
|
+
}
|
|
357
|
+
element := elementNode.AsBindingElement()
|
|
358
|
+
if element != nil {
|
|
359
|
+
collectBindingIdentifierNames(element.Name(), names, includeObjectPattern)
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
case shimast.KindObjectBindingPattern:
|
|
363
|
+
if !includeObjectPattern {
|
|
364
|
+
return
|
|
365
|
+
}
|
|
366
|
+
pattern := node.AsBindingPattern()
|
|
367
|
+
if pattern == nil || pattern.Elements == nil {
|
|
368
|
+
return
|
|
369
|
+
}
|
|
370
|
+
for _, elementNode := range pattern.Elements.Nodes {
|
|
371
|
+
if elementNode.Kind != shimast.KindBindingElement {
|
|
372
|
+
continue
|
|
373
|
+
}
|
|
374
|
+
element := elementNode.AsBindingElement()
|
|
375
|
+
if element != nil {
|
|
376
|
+
collectBindingIdentifierNames(element.Name(), names, includeObjectPattern)
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
func runNoRestDestructuring(ctx *Context, root *shimast.Node) {
|
|
383
|
+
imports := collectTanstackImports(root)
|
|
384
|
+
tracked := map[string]bool{}
|
|
385
|
+
|
|
386
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
387
|
+
if node.Kind != shimast.KindVariableDeclaration {
|
|
388
|
+
return
|
|
389
|
+
}
|
|
390
|
+
decl := node.AsVariableDeclaration()
|
|
391
|
+
if decl == nil || decl.Initializer == nil {
|
|
392
|
+
return
|
|
393
|
+
}
|
|
394
|
+
init := stripParens(decl.Initializer)
|
|
395
|
+
if init == nil || init.Kind != shimast.KindCallExpression {
|
|
396
|
+
return
|
|
397
|
+
}
|
|
398
|
+
call := init.AsCallExpression()
|
|
399
|
+
if call == nil {
|
|
400
|
+
return
|
|
401
|
+
}
|
|
402
|
+
name := callTanstackName(call, imports)
|
|
403
|
+
if !isQueryHook(name) {
|
|
404
|
+
return
|
|
405
|
+
}
|
|
406
|
+
if bindingPatternHasObjectRest(decl.Name()) {
|
|
407
|
+
ctx.Report(decl.Name(), "Object rest destructuring on a TanStack Query result observes all result changes.")
|
|
408
|
+
return
|
|
409
|
+
}
|
|
410
|
+
if id := identifierText(decl.Name()); id != "" {
|
|
411
|
+
tracked[id] = true
|
|
412
|
+
}
|
|
413
|
+
})
|
|
414
|
+
|
|
415
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
416
|
+
switch node.Kind {
|
|
417
|
+
case shimast.KindVariableDeclaration:
|
|
418
|
+
decl := node.AsVariableDeclaration()
|
|
419
|
+
if decl == nil || decl.Initializer == nil {
|
|
420
|
+
return
|
|
421
|
+
}
|
|
422
|
+
if tracked[identifierText(stripParens(decl.Initializer))] && bindingPatternHasObjectRest(decl.Name()) {
|
|
423
|
+
ctx.Report(decl.Name(), "Object rest destructuring on a TanStack Query result observes all result changes.")
|
|
424
|
+
}
|
|
425
|
+
case shimast.KindSpreadAssignment:
|
|
426
|
+
spread := node.AsSpreadAssignment()
|
|
427
|
+
if spread != nil && tracked[identifierText(stripParens(spread.Expression))] {
|
|
428
|
+
ctx.Report(node, "Spreading a TanStack Query result observes all result changes.")
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
})
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
func runStableQueryClient(ctx *Context, root *shimast.Node) {
|
|
435
|
+
imports := collectTanstackImports(root)
|
|
436
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
437
|
+
if node.Kind != shimast.KindNewExpression {
|
|
438
|
+
return
|
|
439
|
+
}
|
|
440
|
+
expr := node.AsNewExpression()
|
|
441
|
+
if expr == nil || newTanstackName(expr, imports) != "QueryClient" {
|
|
442
|
+
return
|
|
443
|
+
}
|
|
444
|
+
fn := nearestFunction(node)
|
|
445
|
+
if fn == nil || hasAsyncModifier(fn) {
|
|
446
|
+
return
|
|
447
|
+
}
|
|
448
|
+
if name := functionLikeName(fn); !isReactComponentOrHookName(name) {
|
|
449
|
+
return
|
|
450
|
+
}
|
|
451
|
+
ctx.Report(node, "QueryClient is not stable inside this component or hook. Move it outside or initialize it with useState.")
|
|
452
|
+
})
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
func nearestFunction(node *shimast.Node) *shimast.Node {
|
|
456
|
+
for cur := node.Parent; cur != nil; cur = cur.Parent {
|
|
457
|
+
if isFunctionLikeKind(cur) {
|
|
458
|
+
return cur
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
return nil
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
func functionLikeName(node *shimast.Node) string {
|
|
465
|
+
if node == nil {
|
|
466
|
+
return ""
|
|
467
|
+
}
|
|
468
|
+
switch node.Kind {
|
|
469
|
+
case shimast.KindFunctionDeclaration:
|
|
470
|
+
return identifierText(node.AsFunctionDeclaration().Name())
|
|
471
|
+
case shimast.KindFunctionExpression:
|
|
472
|
+
expr := node.AsFunctionExpression()
|
|
473
|
+
if expr != nil {
|
|
474
|
+
if name := identifierText(expr.Name()); name != "" {
|
|
475
|
+
return name
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
for cur := node.Parent; cur != nil; cur = cur.Parent {
|
|
480
|
+
if cur.Kind != shimast.KindVariableDeclaration {
|
|
481
|
+
continue
|
|
482
|
+
}
|
|
483
|
+
if decl := cur.AsVariableDeclaration(); decl != nil && stripParens(decl.Initializer) == node {
|
|
484
|
+
return identifierText(decl.Name())
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
return ""
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
func isReactComponentOrHookName(name string) bool {
|
|
491
|
+
if name == "" {
|
|
492
|
+
return false
|
|
493
|
+
}
|
|
494
|
+
first, _ := utf8FirstRune(name)
|
|
495
|
+
return unicode.IsUpper(first) || (strings.HasPrefix(name, "use") && len(name) > 3)
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
func utf8FirstRune(text string) (rune, int) {
|
|
499
|
+
for i, r := range text {
|
|
500
|
+
return r, i
|
|
501
|
+
}
|
|
502
|
+
return 0, 0
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
func runNoUnstableDeps(ctx *Context, root *shimast.Node) {
|
|
506
|
+
imports := collectTanstackImports(root)
|
|
507
|
+
tracked := map[string]bool{}
|
|
508
|
+
|
|
509
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
510
|
+
if node.Kind != shimast.KindVariableDeclaration {
|
|
511
|
+
return
|
|
512
|
+
}
|
|
513
|
+
decl := node.AsVariableDeclaration()
|
|
514
|
+
if decl == nil || decl.Initializer == nil {
|
|
515
|
+
return
|
|
516
|
+
}
|
|
517
|
+
init := stripParens(decl.Initializer)
|
|
518
|
+
if init == nil || init.Kind != shimast.KindCallExpression {
|
|
519
|
+
return
|
|
520
|
+
}
|
|
521
|
+
call := init.AsCallExpression()
|
|
522
|
+
if call == nil {
|
|
523
|
+
return
|
|
524
|
+
}
|
|
525
|
+
name := callTanstackName(call, imports)
|
|
526
|
+
if !isQueryResultHook(name) {
|
|
527
|
+
return
|
|
528
|
+
}
|
|
529
|
+
if isUseQueriesHook(name) {
|
|
530
|
+
if arg := firstArgumentObject(call); objectHasProperty(ctx.File, arg, "combine") {
|
|
531
|
+
return
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
collectBindingIdentifierNames(decl.Name(), tracked, false)
|
|
535
|
+
})
|
|
536
|
+
|
|
537
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
538
|
+
if node.Kind != shimast.KindCallExpression {
|
|
539
|
+
return
|
|
540
|
+
}
|
|
541
|
+
call := node.AsCallExpression()
|
|
542
|
+
if call == nil || call.Arguments == nil || len(call.Arguments.Nodes) < 2 || !isReactDepsHook(call.Expression) {
|
|
543
|
+
return
|
|
544
|
+
}
|
|
545
|
+
deps := stripParens(call.Arguments.Nodes[1])
|
|
546
|
+
if deps == nil || deps.Kind != shimast.KindArrayLiteralExpression {
|
|
547
|
+
return
|
|
548
|
+
}
|
|
549
|
+
for _, element := range arrayElements(deps) {
|
|
550
|
+
if tracked[identifierText(stripParens(element))] {
|
|
551
|
+
ctx.Report(element, "TanStack Query hook results are not referentially stable. Destructure the result before using it in a dependency array.")
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
})
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
func isReactDepsHook(expr *shimast.Node) bool {
|
|
558
|
+
if name := identifierText(stripParens(expr)); name == "useEffect" || name == "useCallback" || name == "useMemo" {
|
|
559
|
+
return true
|
|
560
|
+
}
|
|
561
|
+
expr = stripParens(expr)
|
|
562
|
+
if expr == nil || expr.Kind != shimast.KindPropertyAccessExpression {
|
|
563
|
+
return false
|
|
564
|
+
}
|
|
565
|
+
access := expr.AsPropertyAccessExpression()
|
|
566
|
+
if access == nil {
|
|
567
|
+
return false
|
|
568
|
+
}
|
|
569
|
+
name := identifierText(access.Name())
|
|
570
|
+
return (identifierText(access.Expression) == "React" || identifierText(access.Expression) == "react") &&
|
|
571
|
+
(name == "useEffect" || name == "useCallback" || name == "useMemo")
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
func runInfiniteQueryPropertyOrder(ctx *Context, root *shimast.Node) {
|
|
575
|
+
imports := collectTanstackImports(root)
|
|
576
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
577
|
+
if node.Kind != shimast.KindCallExpression {
|
|
578
|
+
return
|
|
579
|
+
}
|
|
580
|
+
call := node.AsCallExpression()
|
|
581
|
+
name := callTanstackName(call, imports)
|
|
582
|
+
if name != "infiniteQueryOptions" && name != "useInfiniteQuery" && name != "useSuspenseInfiniteQuery" {
|
|
583
|
+
return
|
|
584
|
+
}
|
|
585
|
+
object := firstArgumentObject(call)
|
|
586
|
+
if object == nil {
|
|
587
|
+
return
|
|
588
|
+
}
|
|
589
|
+
indexes := objectPropertyIndexes(ctx.File, object, "queryFn", "getPreviousPageParam", "getNextPageParam")
|
|
590
|
+
queryFn, ok := indexes["queryFn"]
|
|
591
|
+
if !ok {
|
|
592
|
+
return
|
|
593
|
+
}
|
|
594
|
+
for _, key := range []string{"getPreviousPageParam", "getNextPageParam"} {
|
|
595
|
+
if index, ok := indexes[key]; ok && index < queryFn {
|
|
596
|
+
ctx.Report(objectProperty(ctx.File, object, key), "`queryFn` must be declared before `"+key+"` in infinite query options.")
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
})
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
func runMutationPropertyOrder(ctx *Context, root *shimast.Node) {
|
|
603
|
+
imports := collectTanstackImports(root)
|
|
604
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
605
|
+
if node.Kind != shimast.KindCallExpression {
|
|
606
|
+
return
|
|
607
|
+
}
|
|
608
|
+
call := node.AsCallExpression()
|
|
609
|
+
if callTanstackName(call, imports) != "useMutation" {
|
|
610
|
+
return
|
|
611
|
+
}
|
|
612
|
+
object := firstArgumentObject(call)
|
|
613
|
+
if object == nil {
|
|
614
|
+
return
|
|
615
|
+
}
|
|
616
|
+
indexes := objectPropertyIndexes(ctx.File, object, "onMutate", "onError", "onSettled")
|
|
617
|
+
onMutate, ok := indexes["onMutate"]
|
|
618
|
+
if !ok {
|
|
619
|
+
return
|
|
620
|
+
}
|
|
621
|
+
for _, key := range []string{"onError", "onSettled"} {
|
|
622
|
+
if index, ok := indexes[key]; ok && index < onMutate {
|
|
623
|
+
ctx.Report(objectProperty(ctx.File, object, key), "`onMutate` must be declared before `"+key+"` in mutation options.")
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
})
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
func runNoVoidQueryFn(ctx *Context, root *shimast.Node) {
|
|
630
|
+
imports := collectTanstackImports(root)
|
|
631
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
632
|
+
if node.Kind != shimast.KindPropertyAssignment {
|
|
633
|
+
return
|
|
634
|
+
}
|
|
635
|
+
prop := node.AsPropertyAssignment()
|
|
636
|
+
if prop == nil || propertyKey(ctx.File, node) != "queryFn" {
|
|
637
|
+
return
|
|
638
|
+
}
|
|
639
|
+
parent := node.Parent
|
|
640
|
+
if parent == nil || parent.Kind != shimast.KindObjectLiteralExpression {
|
|
641
|
+
return
|
|
642
|
+
}
|
|
643
|
+
if !objectHasProperty(ctx.File, parent, "queryKey") && !isTanstackOptionsArgument(parent, imports) {
|
|
644
|
+
return
|
|
645
|
+
}
|
|
646
|
+
if functionReturnsOnlyVoid(stripParens(prop.Initializer)) {
|
|
647
|
+
ctx.Report(prop.Initializer, "TanStack Query queryFn must return a value.")
|
|
648
|
+
}
|
|
649
|
+
})
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
func isTanstackOptionsArgument(object *shimast.Node, imports tanstackImports) bool {
|
|
653
|
+
if object == nil || object.Parent == nil {
|
|
654
|
+
return false
|
|
655
|
+
}
|
|
656
|
+
if object.Parent.Kind != shimast.KindCallExpression {
|
|
657
|
+
return false
|
|
658
|
+
}
|
|
659
|
+
call := object.Parent.AsCallExpression()
|
|
660
|
+
if call == nil {
|
|
661
|
+
return false
|
|
662
|
+
}
|
|
663
|
+
name := callTanstackName(call, imports)
|
|
664
|
+
return isQueryHook(name) || name == "queryOptions" || name == "infiniteQueryOptions"
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
func functionReturnsOnlyVoid(node *shimast.Node) bool {
|
|
668
|
+
if node == nil {
|
|
669
|
+
return false
|
|
670
|
+
}
|
|
671
|
+
var body *shimast.Node
|
|
672
|
+
switch node.Kind {
|
|
673
|
+
case shimast.KindArrowFunction:
|
|
674
|
+
arrow := node.AsArrowFunction()
|
|
675
|
+
if arrow == nil {
|
|
676
|
+
return false
|
|
677
|
+
}
|
|
678
|
+
body = arrow.Body
|
|
679
|
+
case shimast.KindFunctionExpression:
|
|
680
|
+
body = node.Body()
|
|
681
|
+
default:
|
|
682
|
+
return false
|
|
683
|
+
}
|
|
684
|
+
body = stripParens(body)
|
|
685
|
+
if body == nil {
|
|
686
|
+
return false
|
|
687
|
+
}
|
|
688
|
+
if body.Kind != shimast.KindBlock {
|
|
689
|
+
return isUndefinedLike(body)
|
|
690
|
+
}
|
|
691
|
+
hasReturn := false
|
|
692
|
+
returnsValue := false
|
|
693
|
+
walkDescendants(body, func(child *shimast.Node) {
|
|
694
|
+
if child == body || child.Kind != shimast.KindReturnStatement {
|
|
695
|
+
return
|
|
696
|
+
}
|
|
697
|
+
if nearestFunction(child) != node {
|
|
698
|
+
return
|
|
699
|
+
}
|
|
700
|
+
hasReturn = true
|
|
701
|
+
ret := child.AsReturnStatement()
|
|
702
|
+
if ret != nil && ret.Expression != nil && !isUndefinedLike(stripParens(ret.Expression)) {
|
|
703
|
+
returnsValue = true
|
|
704
|
+
}
|
|
705
|
+
})
|
|
706
|
+
return !hasReturn || !returnsValue
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
func isUndefinedLike(node *shimast.Node) bool {
|
|
710
|
+
if node == nil {
|
|
711
|
+
return true
|
|
712
|
+
}
|
|
713
|
+
if identifierText(node) == "undefined" {
|
|
714
|
+
return true
|
|
715
|
+
}
|
|
716
|
+
return node.Kind == shimast.KindVoidExpression
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
func runPreferQueryOptions(ctx *Context, root *shimast.Node) {
|
|
720
|
+
imports := collectTanstackImports(root)
|
|
721
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
722
|
+
if node.Kind != shimast.KindCallExpression {
|
|
723
|
+
return
|
|
724
|
+
}
|
|
725
|
+
call := node.AsCallExpression()
|
|
726
|
+
name := callTanstackName(call, imports)
|
|
727
|
+
if name == "" || call.Arguments == nil || len(call.Arguments.Nodes) == 0 {
|
|
728
|
+
return
|
|
729
|
+
}
|
|
730
|
+
if isQueryHook(name) {
|
|
731
|
+
object := firstArgumentObject(call)
|
|
732
|
+
if object != nil && (objectHasProperty(ctx.File, object, "queryKey") || objectHasProperty(ctx.File, object, "queryFn")) {
|
|
733
|
+
ctx.Report(object, "Prefer extracting TanStack Query options with queryOptions().")
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
})
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
func runExhaustiveDeps(ctx *Context, root *shimast.Node) {
|
|
740
|
+
imports := collectTanstackImports(root)
|
|
741
|
+
importNames := collectImportNames(root)
|
|
742
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
743
|
+
if node.Kind != shimast.KindObjectLiteralExpression {
|
|
744
|
+
return
|
|
745
|
+
}
|
|
746
|
+
object := node.AsObjectLiteralExpression()
|
|
747
|
+
if object == nil || !isTanstackOptionsArgument(node, imports) {
|
|
748
|
+
return
|
|
749
|
+
}
|
|
750
|
+
queryKey := objectPropertyInitializer(ctx.File, node, "queryKey")
|
|
751
|
+
queryFn := objectPropertyInitializer(ctx.File, node, "queryFn")
|
|
752
|
+
if queryKey == nil || queryKey.Kind != shimast.KindArrayLiteralExpression || queryFn == nil {
|
|
753
|
+
return
|
|
754
|
+
}
|
|
755
|
+
if queryFn.Kind != shimast.KindArrowFunction && queryFn.Kind != shimast.KindFunctionExpression {
|
|
756
|
+
return
|
|
757
|
+
}
|
|
758
|
+
keyDeps := map[string]bool{}
|
|
759
|
+
collectQueryKeyDeps(queryKey, keyDeps)
|
|
760
|
+
freeDeps := collectQueryFnFreeDeps(queryFn, importNames)
|
|
761
|
+
for dep, depNode := range freeDeps {
|
|
762
|
+
if keyDeps[dep] {
|
|
763
|
+
continue
|
|
764
|
+
}
|
|
765
|
+
ctx.Report(depNode, fmt.Sprintf("TanStack Query queryKey is missing dependency `%s` used by queryFn.", dep))
|
|
766
|
+
}
|
|
767
|
+
})
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
func collectQueryKeyDeps(node *shimast.Node, deps map[string]bool) {
|
|
771
|
+
walkDescendants(node, func(child *shimast.Node) {
|
|
772
|
+
if name := identifierText(child); name != "" {
|
|
773
|
+
deps[name] = true
|
|
774
|
+
}
|
|
775
|
+
})
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
func collectQueryFnFreeDeps(fn *shimast.Node, imports map[string]bool) map[string]*shimast.Node {
|
|
779
|
+
locals := map[string]bool{}
|
|
780
|
+
for _, paramNode := range fn.Parameters() {
|
|
781
|
+
if paramNode.Kind != shimast.KindParameter {
|
|
782
|
+
continue
|
|
783
|
+
}
|
|
784
|
+
param := paramNode.AsParameterDeclaration()
|
|
785
|
+
if param != nil {
|
|
786
|
+
collectBindingIdentifierNames(param.Name(), locals, true)
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
walkDescendants(fn.Body(), func(child *shimast.Node) {
|
|
790
|
+
if child == nil || child == fn {
|
|
791
|
+
return
|
|
792
|
+
}
|
|
793
|
+
if child.Kind == shimast.KindVariableDeclaration {
|
|
794
|
+
decl := child.AsVariableDeclaration()
|
|
795
|
+
collectBindingIdentifierNames(decl.Name(), locals, true)
|
|
796
|
+
}
|
|
797
|
+
if child.Kind == shimast.KindFunctionDeclaration {
|
|
798
|
+
decl := child.AsFunctionDeclaration()
|
|
799
|
+
if name := identifierText(decl.Name()); name != "" {
|
|
800
|
+
locals[name] = true
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
})
|
|
804
|
+
|
|
805
|
+
deps := map[string]*shimast.Node{}
|
|
806
|
+
walkDescendants(fn.Body(), func(child *shimast.Node) {
|
|
807
|
+
name := identifierText(child)
|
|
808
|
+
if name == "" || locals[name] || imports[name] || isKnownStableIdentifier(name) {
|
|
809
|
+
return
|
|
810
|
+
}
|
|
811
|
+
if isPropertyAccessName(child) {
|
|
812
|
+
return
|
|
813
|
+
}
|
|
814
|
+
deps[name] = child
|
|
815
|
+
})
|
|
816
|
+
return deps
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
func isPropertyAccessName(node *shimast.Node) bool {
|
|
820
|
+
if node == nil || node.Parent == nil || node.Parent.Kind != shimast.KindPropertyAccessExpression {
|
|
821
|
+
return false
|
|
822
|
+
}
|
|
823
|
+
access := node.Parent.AsPropertyAccessExpression()
|
|
824
|
+
return access != nil && access.Name() == node
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
func isKnownStableIdentifier(name string) bool {
|
|
828
|
+
switch name {
|
|
829
|
+
case "undefined", "null", "true", "false", "Promise", "JSON", "Math", "Date", "console", "window", "document":
|
|
830
|
+
return true
|
|
831
|
+
}
|
|
832
|
+
return false
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
func init() {
|
|
836
|
+
Register(tanstackQueryRule{name: "exhaustive-deps", run: runExhaustiveDeps})
|
|
837
|
+
Register(tanstackQueryRule{name: "stable-query-client", run: runStableQueryClient})
|
|
838
|
+
Register(tanstackQueryRule{name: "no-rest-destructuring", run: runNoRestDestructuring})
|
|
839
|
+
Register(tanstackQueryRule{name: "no-unstable-deps", run: runNoUnstableDeps})
|
|
840
|
+
Register(tanstackQueryRule{name: "infinite-query-property-order", run: runInfiniteQueryPropertyOrder})
|
|
841
|
+
Register(tanstackQueryRule{name: "mutation-property-order", run: runMutationPropertyOrder})
|
|
842
|
+
Register(tanstackQueryRule{name: "no-void-query-fn", run: runNoVoidQueryFn})
|
|
843
|
+
Register(tanstackQueryRule{name: "prefer-query-options", run: runPreferQueryOptions})
|
|
844
|
+
}
|