@ttsc/lint 0.13.0 → 0.14.0-dev.20260528
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 +60 -37
- 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/compile.go +33 -2
- 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 +160 -40
- package/linthost/fix.go +2 -2
- package/linthost/flags_gen.go +17 -15
- package/linthost/host.go +40 -3
- 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 +10 -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 +65 -43
- 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,788 @@
|
|
|
1
|
+
package linthost
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"fmt"
|
|
5
|
+
"strings"
|
|
6
|
+
|
|
7
|
+
shimast "github.com/microsoft/typescript-go/shim/ast"
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
type playwrightRule struct {
|
|
11
|
+
name string
|
|
12
|
+
run func(*Context, *shimast.Node)
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
func (r playwrightRule) Name() string { return "playwright/" + r.name }
|
|
16
|
+
func (r playwrightRule) Visits() []shimast.Kind { return []shimast.Kind{shimast.KindSourceFile} }
|
|
17
|
+
func (r playwrightRule) Check(ctx *Context, node *shimast.Node) {
|
|
18
|
+
if r.run != nil {
|
|
19
|
+
r.run(ctx, node)
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
func playwrightCallChain(node *shimast.Node) []string {
|
|
24
|
+
node = stripParens(node)
|
|
25
|
+
if node == nil {
|
|
26
|
+
return nil
|
|
27
|
+
}
|
|
28
|
+
if name := identifierText(node); name != "" {
|
|
29
|
+
return []string{name}
|
|
30
|
+
}
|
|
31
|
+
switch node.Kind {
|
|
32
|
+
case shimast.KindPropertyAccessExpression:
|
|
33
|
+
access := node.AsPropertyAccessExpression()
|
|
34
|
+
if access == nil {
|
|
35
|
+
return nil
|
|
36
|
+
}
|
|
37
|
+
chain := playwrightCallChain(access.Expression)
|
|
38
|
+
if len(chain) == 0 {
|
|
39
|
+
return nil
|
|
40
|
+
}
|
|
41
|
+
return append(chain, identifierText(access.Name()))
|
|
42
|
+
case shimast.KindCallExpression:
|
|
43
|
+
call := node.AsCallExpression()
|
|
44
|
+
if call == nil {
|
|
45
|
+
return nil
|
|
46
|
+
}
|
|
47
|
+
return playwrightCallChain(call.Expression)
|
|
48
|
+
}
|
|
49
|
+
return nil
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
func playwrightCalledName(call *shimast.CallExpression) string {
|
|
53
|
+
chain := playwrightCallChain(call.Expression)
|
|
54
|
+
if len(chain) == 0 {
|
|
55
|
+
return ""
|
|
56
|
+
}
|
|
57
|
+
return chain[len(chain)-1]
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
func playwrightChainText(chain []string) string {
|
|
61
|
+
return strings.Join(chain, ".")
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
func isPlaywrightTestCall(chain []string) bool {
|
|
65
|
+
if len(chain) == 0 || chain[0] != "test" {
|
|
66
|
+
return false
|
|
67
|
+
}
|
|
68
|
+
last := chain[len(chain)-1]
|
|
69
|
+
switch last {
|
|
70
|
+
case "test", "only", "skip", "fixme", "fail", "slow":
|
|
71
|
+
return true
|
|
72
|
+
}
|
|
73
|
+
return len(chain) == 1
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
func isPlaywrightDescribeCall(chain []string) bool {
|
|
77
|
+
return len(chain) >= 2 && chain[0] == "test" && chain[1] == "describe"
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
func isPlaywrightHookName(name string) bool {
|
|
81
|
+
switch name {
|
|
82
|
+
case "beforeEach", "afterEach", "beforeAll", "afterAll":
|
|
83
|
+
return true
|
|
84
|
+
}
|
|
85
|
+
return false
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
func isPlaywrightHookCall(chain []string) bool {
|
|
89
|
+
return len(chain) >= 2 && chain[0] == "test" && isPlaywrightHookName(chain[len(chain)-1])
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
func isExpectCallNode(node *shimast.Node) bool {
|
|
93
|
+
if node == nil || node.Kind != shimast.KindCallExpression {
|
|
94
|
+
return false
|
|
95
|
+
}
|
|
96
|
+
call := node.AsCallExpression()
|
|
97
|
+
return call != nil && playwrightCalledName(call) == "expect"
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
func callArgument(call *shimast.CallExpression, index int) *shimast.Node {
|
|
101
|
+
if call == nil || call.Arguments == nil || index < 0 || index >= len(call.Arguments.Nodes) {
|
|
102
|
+
return nil
|
|
103
|
+
}
|
|
104
|
+
return stripParens(call.Arguments.Nodes[index])
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
func objectPropertyNode(file *shimast.SourceFile, object *shimast.Node, key string) *shimast.Node {
|
|
108
|
+
if object == nil || object.Kind != shimast.KindObjectLiteralExpression {
|
|
109
|
+
return nil
|
|
110
|
+
}
|
|
111
|
+
obj := object.AsObjectLiteralExpression()
|
|
112
|
+
if obj == nil || obj.Properties == nil {
|
|
113
|
+
return nil
|
|
114
|
+
}
|
|
115
|
+
for _, prop := range obj.Properties.Nodes {
|
|
116
|
+
if propertyKey(file, prop) == key {
|
|
117
|
+
return prop
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return nil
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
func objectPropertyValue(file *shimast.SourceFile, object *shimast.Node, key string) *shimast.Node {
|
|
124
|
+
prop := objectPropertyNode(file, object, key)
|
|
125
|
+
if prop == nil || prop.Kind != shimast.KindPropertyAssignment {
|
|
126
|
+
return nil
|
|
127
|
+
}
|
|
128
|
+
assignment := prop.AsPropertyAssignment()
|
|
129
|
+
if assignment == nil {
|
|
130
|
+
return nil
|
|
131
|
+
}
|
|
132
|
+
return stripParens(assignment.Initializer)
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
func isPlaywrightTrueLiteral(node *shimast.Node) bool {
|
|
136
|
+
return node != nil && node.Kind == shimast.KindTrueKeyword
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
func isStringLiteralValue(node *shimast.Node, value string) bool {
|
|
140
|
+
return stringLiteralText(stripParens(node)) == value
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
func hasAncestorBeforeFunction(node *shimast.Node, kinds ...shimast.Kind) bool {
|
|
144
|
+
wanted := map[shimast.Kind]bool{}
|
|
145
|
+
for _, kind := range kinds {
|
|
146
|
+
wanted[kind] = true
|
|
147
|
+
}
|
|
148
|
+
for cur := node.Parent; cur != nil; cur = cur.Parent {
|
|
149
|
+
if isFunctionLikeKind(cur) {
|
|
150
|
+
return false
|
|
151
|
+
}
|
|
152
|
+
if wanted[cur.Kind] {
|
|
153
|
+
return true
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return false
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
func nearestCallAncestor(node *shimast.Node, predicate func([]string) bool) *shimast.Node {
|
|
160
|
+
for cur := node.Parent; cur != nil; cur = cur.Parent {
|
|
161
|
+
if cur.Kind != shimast.KindCallExpression {
|
|
162
|
+
continue
|
|
163
|
+
}
|
|
164
|
+
call := cur.AsCallExpression()
|
|
165
|
+
if call != nil && predicate(playwrightCallChain(call.Expression)) {
|
|
166
|
+
return cur
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
return nil
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
func nearestTestLikeCall(node *shimast.Node) *shimast.Node {
|
|
173
|
+
return nearestCallAncestor(node, func(chain []string) bool {
|
|
174
|
+
return isPlaywrightTestCall(chain) || isPlaywrightDescribeCall(chain)
|
|
175
|
+
})
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
func functionBodyContains(root *shimast.Node, predicate func(*shimast.Node) bool) bool {
|
|
179
|
+
found := false
|
|
180
|
+
walkDescendants(root, func(child *shimast.Node) {
|
|
181
|
+
if found || child == root {
|
|
182
|
+
return
|
|
183
|
+
}
|
|
184
|
+
if isFunctionLikeKind(child) {
|
|
185
|
+
return
|
|
186
|
+
}
|
|
187
|
+
if predicate(child) {
|
|
188
|
+
found = true
|
|
189
|
+
}
|
|
190
|
+
})
|
|
191
|
+
return found
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
func playwrightCallbackArg(call *shimast.CallExpression) *shimast.Node {
|
|
195
|
+
if call == nil || call.Arguments == nil {
|
|
196
|
+
return nil
|
|
197
|
+
}
|
|
198
|
+
for _, arg := range call.Arguments.Nodes {
|
|
199
|
+
arg = stripParens(arg)
|
|
200
|
+
if arg != nil && isFunctionLikeKind(arg) {
|
|
201
|
+
return arg
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
return nil
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
func runPlaywrightFocusedTest(ctx *Context, root *shimast.Node) {
|
|
208
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
209
|
+
if node.Kind != shimast.KindCallExpression {
|
|
210
|
+
return
|
|
211
|
+
}
|
|
212
|
+
call := node.AsCallExpression()
|
|
213
|
+
chain := playwrightCallChain(call.Expression)
|
|
214
|
+
if len(chain) > 1 && chain[len(chain)-1] == "only" && (isPlaywrightTestCall(chain) || isPlaywrightDescribeCall(chain)) {
|
|
215
|
+
ctx.Report(node, "Unexpected focused Playwright test.")
|
|
216
|
+
}
|
|
217
|
+
})
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
func runPlaywrightSkippedTest(ctx *Context, root *shimast.Node) {
|
|
221
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
222
|
+
if node.Kind != shimast.KindCallExpression {
|
|
223
|
+
return
|
|
224
|
+
}
|
|
225
|
+
call := node.AsCallExpression()
|
|
226
|
+
chain := playwrightCallChain(call.Expression)
|
|
227
|
+
if len(chain) > 1 && chain[len(chain)-1] == "skip" && (isPlaywrightTestCall(chain) || isPlaywrightDescribeCall(chain)) {
|
|
228
|
+
ctx.Report(node, "Unexpected skipped Playwright test.")
|
|
229
|
+
}
|
|
230
|
+
})
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
func runPlaywrightNoPagePause(ctx *Context, root *shimast.Node) {
|
|
234
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
235
|
+
return playwrightChainText(chain) == "page.pause"
|
|
236
|
+
}, "Unexpected page.pause().")
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
func runPlaywrightNoWaitForTimeout(ctx *Context, root *shimast.Node) {
|
|
240
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
241
|
+
return len(chain) >= 2 && chain[len(chain)-2] == "page" && chain[len(chain)-1] == "waitForTimeout"
|
|
242
|
+
}, "Unexpected page.waitForTimeout().")
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
func runPlaywrightNoWaitForNavigation(ctx *Context, root *shimast.Node) {
|
|
246
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
247
|
+
return len(chain) >= 2 && chain[len(chain)-2] == "page" && chain[len(chain)-1] == "waitForNavigation"
|
|
248
|
+
}, "Unexpected page.waitForNavigation().")
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
func runPlaywrightNoWaitForSelector(ctx *Context, root *shimast.Node) {
|
|
252
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
253
|
+
return len(chain) >= 2 && chain[len(chain)-2] == "page" && chain[len(chain)-1] == "waitForSelector"
|
|
254
|
+
}, "Unexpected page.waitForSelector(). Use locators instead.")
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
func runPlaywrightNoEval(ctx *Context, root *shimast.Node) {
|
|
258
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
259
|
+
if len(chain) < 2 || chain[len(chain)-2] != "page" {
|
|
260
|
+
return false
|
|
261
|
+
}
|
|
262
|
+
last := chain[len(chain)-1]
|
|
263
|
+
return last == "$eval" || last == "$$eval"
|
|
264
|
+
}, "Unexpected page eval helper.")
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
func runPlaywrightNoElementHandle(ctx *Context, root *shimast.Node) {
|
|
268
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
269
|
+
if len(chain) < 2 {
|
|
270
|
+
return false
|
|
271
|
+
}
|
|
272
|
+
text := playwrightChainText(chain)
|
|
273
|
+
return text == "page.$" || text == "page.$$" || strings.HasSuffix(text, ".elementHandle") || strings.HasSuffix(text, ".elementHandles")
|
|
274
|
+
}, "Unexpected ElementHandle usage. Prefer locators.")
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
func runPlaywrightNoGetByTitle(ctx *Context, root *shimast.Node) {
|
|
278
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
279
|
+
return len(chain) > 0 && chain[len(chain)-1] == "getByTitle"
|
|
280
|
+
}, "Unexpected getByTitle().")
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
func runPlaywrightNoNthMethods(ctx *Context, root *shimast.Node) {
|
|
284
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
285
|
+
if len(chain) == 0 {
|
|
286
|
+
return false
|
|
287
|
+
}
|
|
288
|
+
switch chain[len(chain)-1] {
|
|
289
|
+
case "first", "last", "nth":
|
|
290
|
+
return true
|
|
291
|
+
}
|
|
292
|
+
return false
|
|
293
|
+
}, "Unexpected positional locator method.")
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
func runPlaywrightNoHooks(ctx *Context, root *shimast.Node) {
|
|
297
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
298
|
+
return isPlaywrightHookCall(chain)
|
|
299
|
+
}, "Unexpected Playwright hook.")
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
func runPlaywrightNoSlowedTest(ctx *Context, root *shimast.Node) {
|
|
303
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
304
|
+
return len(chain) > 1 && chain[0] == "test" && chain[len(chain)-1] == "slow"
|
|
305
|
+
}, "Unexpected slowed Playwright test.")
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
func runPlaywrightNoForceOption(ctx *Context, root *shimast.Node) {
|
|
309
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
310
|
+
if node.Kind != shimast.KindCallExpression {
|
|
311
|
+
return
|
|
312
|
+
}
|
|
313
|
+
call := node.AsCallExpression()
|
|
314
|
+
if call == nil {
|
|
315
|
+
return
|
|
316
|
+
}
|
|
317
|
+
chain := playwrightCallChain(call.Expression)
|
|
318
|
+
if !isPlaywrightForceOptionMethod(chain) {
|
|
319
|
+
return
|
|
320
|
+
}
|
|
321
|
+
lastArg := -1
|
|
322
|
+
if call.Arguments != nil {
|
|
323
|
+
lastArg = len(call.Arguments.Nodes) - 1
|
|
324
|
+
}
|
|
325
|
+
options := callArgument(call, lastArg)
|
|
326
|
+
prop := objectPropertyNode(ctx.File, options, "force")
|
|
327
|
+
if prop != nil && isPlaywrightTrueLiteral(objectPropertyValue(ctx.File, options, "force")) {
|
|
328
|
+
ctx.Report(prop, "Unexpected Playwright force option.")
|
|
329
|
+
}
|
|
330
|
+
})
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
func isPlaywrightForceOptionMethod(chain []string) bool {
|
|
334
|
+
if len(chain) < 2 {
|
|
335
|
+
return false
|
|
336
|
+
}
|
|
337
|
+
switch chain[len(chain)-1] {
|
|
338
|
+
case "check", "clear", "click", "dblclick", "dragAndDrop", "dragTo", "fill", "hover", "selectOption", "selectText", "setChecked", "tap", "uncheck":
|
|
339
|
+
return true
|
|
340
|
+
}
|
|
341
|
+
return false
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
func runPlaywrightNoNetworkidle(ctx *Context, root *shimast.Node) {
|
|
345
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
346
|
+
if node.Kind != shimast.KindCallExpression {
|
|
347
|
+
return
|
|
348
|
+
}
|
|
349
|
+
call := node.AsCallExpression()
|
|
350
|
+
if call == nil {
|
|
351
|
+
return
|
|
352
|
+
}
|
|
353
|
+
chain := playwrightCallChain(call.Expression)
|
|
354
|
+
if !isPlaywrightNetworkidleMethod(chain) {
|
|
355
|
+
return
|
|
356
|
+
}
|
|
357
|
+
method := chain[len(chain)-1]
|
|
358
|
+
if method == "waitForLoadState" && isStringLiteralValue(callArgument(call, 0), "networkidle") {
|
|
359
|
+
ctx.Report(callArgument(call, 0), "Unexpected networkidle load state.")
|
|
360
|
+
return
|
|
361
|
+
}
|
|
362
|
+
options := playwrightWaitUntilOptionsArgument(call, method)
|
|
363
|
+
value := objectPropertyValue(ctx.File, options, "waitUntil")
|
|
364
|
+
if isStringLiteralValue(value, "networkidle") {
|
|
365
|
+
ctx.Report(value, "Unexpected networkidle waitUntil option.")
|
|
366
|
+
}
|
|
367
|
+
})
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
func isPlaywrightNetworkidleMethod(chain []string) bool {
|
|
371
|
+
if len(chain) < 2 {
|
|
372
|
+
return false
|
|
373
|
+
}
|
|
374
|
+
switch chain[len(chain)-1] {
|
|
375
|
+
case "goBack", "goForward", "goto", "reload", "setContent", "waitForLoadState", "waitForNavigation", "waitForURL":
|
|
376
|
+
return true
|
|
377
|
+
}
|
|
378
|
+
return false
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
func playwrightWaitUntilOptionsArgument(call *shimast.CallExpression, method string) *shimast.Node {
|
|
382
|
+
switch method {
|
|
383
|
+
case "goBack", "goForward", "reload", "waitForNavigation":
|
|
384
|
+
return callArgument(call, 0)
|
|
385
|
+
case "goto", "setContent", "waitForURL":
|
|
386
|
+
return callArgument(call, 1)
|
|
387
|
+
}
|
|
388
|
+
return nil
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
func runPlaywrightExpectExpect(ctx *Context, root *shimast.Node) {
|
|
392
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
393
|
+
if node.Kind != shimast.KindCallExpression {
|
|
394
|
+
return
|
|
395
|
+
}
|
|
396
|
+
call := node.AsCallExpression()
|
|
397
|
+
if !isPlaywrightTestCall(playwrightCallChain(call.Expression)) {
|
|
398
|
+
return
|
|
399
|
+
}
|
|
400
|
+
callback := playwrightCallbackArg(call)
|
|
401
|
+
if callback == nil {
|
|
402
|
+
return
|
|
403
|
+
}
|
|
404
|
+
body := callback.Body()
|
|
405
|
+
if body == nil {
|
|
406
|
+
return
|
|
407
|
+
}
|
|
408
|
+
if !functionBodyContains(body, isExpectCallNode) {
|
|
409
|
+
ctx.Report(node, "Playwright test has no assertion.")
|
|
410
|
+
}
|
|
411
|
+
})
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
func runPlaywrightNoConditionalExpect(ctx *Context, root *shimast.Node) {
|
|
415
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
416
|
+
if !isExpectCallNode(node) || nearestTestLikeCall(node) == nil {
|
|
417
|
+
return
|
|
418
|
+
}
|
|
419
|
+
if hasAncestorBeforeFunction(node, shimast.KindIfStatement, shimast.KindConditionalExpression, shimast.KindSwitchStatement) {
|
|
420
|
+
ctx.Report(node, "Avoid conditional Playwright expect calls.")
|
|
421
|
+
}
|
|
422
|
+
})
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
func runPlaywrightNoConditionalInTest(ctx *Context, root *shimast.Node) {
|
|
426
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
427
|
+
switch node.Kind {
|
|
428
|
+
case shimast.KindIfStatement, shimast.KindConditionalExpression, shimast.KindSwitchStatement:
|
|
429
|
+
default:
|
|
430
|
+
return
|
|
431
|
+
}
|
|
432
|
+
if nearestTestLikeCall(node) != nil {
|
|
433
|
+
ctx.Report(node, "Avoid conditional logic in Playwright tests.")
|
|
434
|
+
}
|
|
435
|
+
})
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
func runPlaywrightNoDuplicateHooks(ctx *Context, root *shimast.Node) {
|
|
439
|
+
seen := map[string]*shimast.Node{}
|
|
440
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
441
|
+
if node.Kind != shimast.KindCallExpression {
|
|
442
|
+
return
|
|
443
|
+
}
|
|
444
|
+
call := node.AsCallExpression()
|
|
445
|
+
chain := playwrightCallChain(call.Expression)
|
|
446
|
+
if !isPlaywrightHookCall(chain) {
|
|
447
|
+
return
|
|
448
|
+
}
|
|
449
|
+
name := chain[len(chain)-1]
|
|
450
|
+
if first := seen[name]; first != nil {
|
|
451
|
+
ctx.Report(node, "Duplicate Playwright "+name+" hook.")
|
|
452
|
+
} else {
|
|
453
|
+
seen[name] = node
|
|
454
|
+
}
|
|
455
|
+
})
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
func runPlaywrightNoDuplicateSlow(ctx *Context, root *shimast.Node) {
|
|
459
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
460
|
+
if node.Kind != shimast.KindCallExpression {
|
|
461
|
+
return
|
|
462
|
+
}
|
|
463
|
+
call := node.AsCallExpression()
|
|
464
|
+
if !isPlaywrightTestCall(playwrightCallChain(call.Expression)) {
|
|
465
|
+
return
|
|
466
|
+
}
|
|
467
|
+
callback := playwrightCallbackArg(call)
|
|
468
|
+
if callback == nil || callback.Body() == nil {
|
|
469
|
+
return
|
|
470
|
+
}
|
|
471
|
+
count := 0
|
|
472
|
+
walkDescendants(callback.Body(), func(child *shimast.Node) {
|
|
473
|
+
if child.Kind != shimast.KindCallExpression {
|
|
474
|
+
return
|
|
475
|
+
}
|
|
476
|
+
c := child.AsCallExpression()
|
|
477
|
+
if c == nil {
|
|
478
|
+
return
|
|
479
|
+
}
|
|
480
|
+
chain := playwrightCallChain(c.Expression)
|
|
481
|
+
if len(chain) > 1 && chain[0] == "test" && chain[len(chain)-1] == "slow" {
|
|
482
|
+
count++
|
|
483
|
+
if count > 1 {
|
|
484
|
+
ctx.Report(child, "Duplicate test.slow() call.")
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
})
|
|
488
|
+
})
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
func runPlaywrightNoNestedStep(ctx *Context, root *shimast.Node) {
|
|
492
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
493
|
+
if node.Kind != shimast.KindCallExpression {
|
|
494
|
+
return
|
|
495
|
+
}
|
|
496
|
+
call := node.AsCallExpression()
|
|
497
|
+
if call == nil || playwrightChainText(playwrightCallChain(call.Expression)) != "test.step" {
|
|
498
|
+
return
|
|
499
|
+
}
|
|
500
|
+
if nearestCallAncestor(node, func(chain []string) bool { return playwrightChainText(chain) == "test.step" }) != nil {
|
|
501
|
+
ctx.Report(node, "Unexpected nested test.step().")
|
|
502
|
+
}
|
|
503
|
+
})
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
func runPlaywrightNoStandaloneExpect(ctx *Context, root *shimast.Node) {
|
|
507
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
508
|
+
if isExpectCallNode(node) && nearestTestLikeCall(node) == nil {
|
|
509
|
+
ctx.Report(node, "Unexpected Playwright expect outside a test block.")
|
|
510
|
+
}
|
|
511
|
+
})
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
func runPlaywrightPreferLocator(ctx *Context, root *shimast.Node) {
|
|
515
|
+
methods := map[string]bool{
|
|
516
|
+
"click": true, "dblclick": true, "fill": true, "check": true, "uncheck": true,
|
|
517
|
+
"hover": true, "press": true, "selectOption": true, "setInputFiles": true,
|
|
518
|
+
"textContent": true, "innerText": true, "innerHTML": true, "isVisible": true,
|
|
519
|
+
}
|
|
520
|
+
reportMatchingCall(ctx, root, func(chain []string, _ *shimast.CallExpression) bool {
|
|
521
|
+
return len(chain) >= 2 && chain[len(chain)-2] == "page" && methods[chain[len(chain)-1]]
|
|
522
|
+
}, "Prefer locator-based Playwright APIs.")
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
func runPlaywrightPreferWebFirstAssertions(ctx *Context, root *shimast.Node) {
|
|
526
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
527
|
+
if node.Kind != shimast.KindCallExpression {
|
|
528
|
+
return
|
|
529
|
+
}
|
|
530
|
+
call := node.AsCallExpression()
|
|
531
|
+
if call == nil {
|
|
532
|
+
return
|
|
533
|
+
}
|
|
534
|
+
chain := playwrightCallChain(call.Expression)
|
|
535
|
+
if len(chain) == 0 {
|
|
536
|
+
return
|
|
537
|
+
}
|
|
538
|
+
matcher := chain[len(chain)-1]
|
|
539
|
+
if matcher != "toBe" && matcher != "toEqual" {
|
|
540
|
+
return
|
|
541
|
+
}
|
|
542
|
+
expectCall := expectCallFromMatcher(call.Expression)
|
|
543
|
+
if expectCall == nil {
|
|
544
|
+
return
|
|
545
|
+
}
|
|
546
|
+
arg := callArgument(expectCall, 0)
|
|
547
|
+
if arg == nil || arg.Kind != shimast.KindAwaitExpression {
|
|
548
|
+
return
|
|
549
|
+
}
|
|
550
|
+
awaited := arg.AsAwaitExpression()
|
|
551
|
+
if awaited == nil {
|
|
552
|
+
return
|
|
553
|
+
}
|
|
554
|
+
awaitedExpr := stripParens(awaited.Expression)
|
|
555
|
+
if awaitedExpr == nil || awaitedExpr.Kind != shimast.KindCallExpression {
|
|
556
|
+
return
|
|
557
|
+
}
|
|
558
|
+
awaitedCall := awaitedExpr.AsCallExpression()
|
|
559
|
+
if awaitedCall == nil {
|
|
560
|
+
return
|
|
561
|
+
}
|
|
562
|
+
awaitedChain := playwrightCallChain(awaitedCall.Expression)
|
|
563
|
+
if len(awaitedChain) == 0 {
|
|
564
|
+
return
|
|
565
|
+
}
|
|
566
|
+
switch awaitedChain[len(awaitedChain)-1] {
|
|
567
|
+
case "isVisible", "isHidden", "isEnabled", "isDisabled", "isChecked", "textContent", "innerText":
|
|
568
|
+
ctx.Report(node, "Prefer Playwright web-first assertions.")
|
|
569
|
+
}
|
|
570
|
+
})
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
func expectCallFromMatcher(expr *shimast.Node) *shimast.CallExpression {
|
|
574
|
+
expr = stripParens(expr)
|
|
575
|
+
if expr == nil || expr.Kind != shimast.KindPropertyAccessExpression {
|
|
576
|
+
return nil
|
|
577
|
+
}
|
|
578
|
+
access := expr.AsPropertyAccessExpression()
|
|
579
|
+
if access == nil {
|
|
580
|
+
return nil
|
|
581
|
+
}
|
|
582
|
+
receiver := stripParens(access.Expression)
|
|
583
|
+
if receiver == nil || receiver.Kind != shimast.KindCallExpression {
|
|
584
|
+
return nil
|
|
585
|
+
}
|
|
586
|
+
call := receiver.AsCallExpression()
|
|
587
|
+
if call != nil && playwrightCalledName(call) == "expect" {
|
|
588
|
+
return call
|
|
589
|
+
}
|
|
590
|
+
return nil
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
func runPlaywrightPreferToHaveCount(ctx *Context, root *shimast.Node) {
|
|
594
|
+
runExpectAwaitedMethodMatcher(ctx, root, "count", "toBe", "Prefer toHaveCount().")
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
func runPlaywrightPreferToHaveLength(ctx *Context, root *shimast.Node) {
|
|
598
|
+
runExpectAwaitedMethodMatcher(ctx, root, "length", "toBe", "Prefer toHaveLength().")
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
func runExpectAwaitedMethodMatcher(ctx *Context, root *shimast.Node, method, matcher, message string) {
|
|
602
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
603
|
+
if node.Kind != shimast.KindCallExpression {
|
|
604
|
+
return
|
|
605
|
+
}
|
|
606
|
+
call := node.AsCallExpression()
|
|
607
|
+
if call == nil {
|
|
608
|
+
return
|
|
609
|
+
}
|
|
610
|
+
chain := playwrightCallChain(call.Expression)
|
|
611
|
+
if len(chain) == 0 || chain[len(chain)-1] != matcher {
|
|
612
|
+
return
|
|
613
|
+
}
|
|
614
|
+
expectCall := expectCallFromMatcher(call.Expression)
|
|
615
|
+
if expectCall == nil {
|
|
616
|
+
return
|
|
617
|
+
}
|
|
618
|
+
arg := callArgument(expectCall, 0)
|
|
619
|
+
if arg == nil || arg.Kind != shimast.KindAwaitExpression {
|
|
620
|
+
return
|
|
621
|
+
}
|
|
622
|
+
awaited := arg.AsAwaitExpression()
|
|
623
|
+
if awaited == nil {
|
|
624
|
+
return
|
|
625
|
+
}
|
|
626
|
+
awaitedExpr := stripParens(awaited.Expression)
|
|
627
|
+
if awaitedExpr == nil || awaitedExpr.Kind != shimast.KindCallExpression {
|
|
628
|
+
return
|
|
629
|
+
}
|
|
630
|
+
awaitedCall := awaitedExpr.AsCallExpression()
|
|
631
|
+
if awaitedCall == nil {
|
|
632
|
+
return
|
|
633
|
+
}
|
|
634
|
+
awaitedChain := playwrightCallChain(awaitedCall.Expression)
|
|
635
|
+
if len(awaitedChain) > 0 && awaitedChain[len(awaitedChain)-1] == method {
|
|
636
|
+
ctx.Report(node, message)
|
|
637
|
+
}
|
|
638
|
+
})
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
func runPlaywrightValidExpect(ctx *Context, root *shimast.Node) {
|
|
642
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
643
|
+
if node.Kind != shimast.KindCallExpression {
|
|
644
|
+
return
|
|
645
|
+
}
|
|
646
|
+
call := node.AsCallExpression()
|
|
647
|
+
if call == nil || playwrightCalledName(call) != "expect" {
|
|
648
|
+
return
|
|
649
|
+
}
|
|
650
|
+
argc := 0
|
|
651
|
+
if call.Arguments != nil {
|
|
652
|
+
argc = len(call.Arguments.Nodes)
|
|
653
|
+
}
|
|
654
|
+
if argc != 1 {
|
|
655
|
+
ctx.Report(node, "Expect must have exactly one argument.")
|
|
656
|
+
}
|
|
657
|
+
})
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
func runPlaywrightValidDescribeCallback(ctx *Context, root *shimast.Node) {
|
|
661
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
662
|
+
if node.Kind != shimast.KindCallExpression {
|
|
663
|
+
return
|
|
664
|
+
}
|
|
665
|
+
call := node.AsCallExpression()
|
|
666
|
+
if call == nil || !isPlaywrightDescribeCall(playwrightCallChain(call.Expression)) {
|
|
667
|
+
return
|
|
668
|
+
}
|
|
669
|
+
callback := playwrightCallbackArg(call)
|
|
670
|
+
if callback == nil {
|
|
671
|
+
ctx.Report(node, "Playwright describe must have a callback.")
|
|
672
|
+
return
|
|
673
|
+
}
|
|
674
|
+
if hasAsyncModifier(callback) {
|
|
675
|
+
ctx.Report(callback, "Playwright describe callback must not be async.")
|
|
676
|
+
}
|
|
677
|
+
})
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
func runPlaywrightValidTitle(ctx *Context, root *shimast.Node) {
|
|
681
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
682
|
+
if node.Kind != shimast.KindCallExpression {
|
|
683
|
+
return
|
|
684
|
+
}
|
|
685
|
+
call := node.AsCallExpression()
|
|
686
|
+
if call == nil {
|
|
687
|
+
return
|
|
688
|
+
}
|
|
689
|
+
chain := playwrightCallChain(call.Expression)
|
|
690
|
+
if !isPlaywrightTestCall(chain) && !isPlaywrightDescribeCall(chain) {
|
|
691
|
+
return
|
|
692
|
+
}
|
|
693
|
+
title := callArgument(call, 0)
|
|
694
|
+
if title == nil || stringLiteralText(title) == "" {
|
|
695
|
+
ctx.Report(node, "Playwright test title must be a non-empty string.")
|
|
696
|
+
}
|
|
697
|
+
})
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
func runPlaywrightRequireToThrowMessage(ctx *Context, root *shimast.Node) {
|
|
701
|
+
reportMatchingCall(ctx, root, func(chain []string, call *shimast.CallExpression) bool {
|
|
702
|
+
if len(chain) == 0 || chain[len(chain)-1] != "toThrow" {
|
|
703
|
+
return false
|
|
704
|
+
}
|
|
705
|
+
return call.Arguments == nil || len(call.Arguments.Nodes) == 0
|
|
706
|
+
}, "Add an expected message to toThrow().")
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
func runPlaywrightRequireToPassTimeout(ctx *Context, root *shimast.Node) {
|
|
710
|
+
reportMatchingCall(ctx, root, func(chain []string, call *shimast.CallExpression) bool {
|
|
711
|
+
if len(chain) == 0 || chain[len(chain)-1] != "toPass" {
|
|
712
|
+
return false
|
|
713
|
+
}
|
|
714
|
+
options := callArgument(call, 0)
|
|
715
|
+
return objectPropertyValue(ctx.File, options, "timeout") == nil
|
|
716
|
+
}, "Add a timeout option to toPass().")
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
func reportMatchingCall(ctx *Context, root *shimast.Node, match func([]string, *shimast.CallExpression) bool, message string) {
|
|
720
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
721
|
+
if node.Kind != shimast.KindCallExpression {
|
|
722
|
+
return
|
|
723
|
+
}
|
|
724
|
+
call := node.AsCallExpression()
|
|
725
|
+
if call != nil && match(playwrightCallChain(call.Expression), call) {
|
|
726
|
+
ctx.Report(node, message)
|
|
727
|
+
}
|
|
728
|
+
})
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
func runPlaywrightMaxExpects(ctx *Context, root *shimast.Node) {
|
|
732
|
+
walkDescendants(root, func(node *shimast.Node) {
|
|
733
|
+
if node.Kind != shimast.KindCallExpression {
|
|
734
|
+
return
|
|
735
|
+
}
|
|
736
|
+
call := node.AsCallExpression()
|
|
737
|
+
if call == nil || !isPlaywrightTestCall(playwrightCallChain(call.Expression)) {
|
|
738
|
+
return
|
|
739
|
+
}
|
|
740
|
+
callback := playwrightCallbackArg(call)
|
|
741
|
+
if callback == nil || callback.Body() == nil {
|
|
742
|
+
return
|
|
743
|
+
}
|
|
744
|
+
count := 0
|
|
745
|
+
walkDescendants(callback.Body(), func(child *shimast.Node) {
|
|
746
|
+
if isExpectCallNode(child) {
|
|
747
|
+
count++
|
|
748
|
+
}
|
|
749
|
+
})
|
|
750
|
+
if count > 5 {
|
|
751
|
+
ctx.Report(node, fmt.Sprintf("Playwright test has too many assertions (%d > 5).", count))
|
|
752
|
+
}
|
|
753
|
+
})
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
func init() {
|
|
757
|
+
Register(playwrightRule{name: "expect-expect", run: runPlaywrightExpectExpect})
|
|
758
|
+
Register(playwrightRule{name: "max-expects", run: runPlaywrightMaxExpects})
|
|
759
|
+
Register(playwrightRule{name: "no-conditional-expect", run: runPlaywrightNoConditionalExpect})
|
|
760
|
+
Register(playwrightRule{name: "no-conditional-in-test", run: runPlaywrightNoConditionalInTest})
|
|
761
|
+
Register(playwrightRule{name: "no-duplicate-hooks", run: runPlaywrightNoDuplicateHooks})
|
|
762
|
+
Register(playwrightRule{name: "no-duplicate-slow", run: runPlaywrightNoDuplicateSlow})
|
|
763
|
+
Register(playwrightRule{name: "no-element-handle", run: runPlaywrightNoElementHandle})
|
|
764
|
+
Register(playwrightRule{name: "no-eval", run: runPlaywrightNoEval})
|
|
765
|
+
Register(playwrightRule{name: "no-focused-test", run: runPlaywrightFocusedTest})
|
|
766
|
+
Register(playwrightRule{name: "no-force-option", run: runPlaywrightNoForceOption})
|
|
767
|
+
Register(playwrightRule{name: "no-get-by-title", run: runPlaywrightNoGetByTitle})
|
|
768
|
+
Register(playwrightRule{name: "no-hooks", run: runPlaywrightNoHooks})
|
|
769
|
+
Register(playwrightRule{name: "no-nested-step", run: runPlaywrightNoNestedStep})
|
|
770
|
+
Register(playwrightRule{name: "no-networkidle", run: runPlaywrightNoNetworkidle})
|
|
771
|
+
Register(playwrightRule{name: "no-nth-methods", run: runPlaywrightNoNthMethods})
|
|
772
|
+
Register(playwrightRule{name: "no-page-pause", run: runPlaywrightNoPagePause})
|
|
773
|
+
Register(playwrightRule{name: "no-skipped-test", run: runPlaywrightSkippedTest})
|
|
774
|
+
Register(playwrightRule{name: "no-slowed-test", run: runPlaywrightNoSlowedTest})
|
|
775
|
+
Register(playwrightRule{name: "no-standalone-expect", run: runPlaywrightNoStandaloneExpect})
|
|
776
|
+
Register(playwrightRule{name: "no-wait-for-navigation", run: runPlaywrightNoWaitForNavigation})
|
|
777
|
+
Register(playwrightRule{name: "no-wait-for-selector", run: runPlaywrightNoWaitForSelector})
|
|
778
|
+
Register(playwrightRule{name: "no-wait-for-timeout", run: runPlaywrightNoWaitForTimeout})
|
|
779
|
+
Register(playwrightRule{name: "prefer-locator", run: runPlaywrightPreferLocator})
|
|
780
|
+
Register(playwrightRule{name: "prefer-to-have-count", run: runPlaywrightPreferToHaveCount})
|
|
781
|
+
Register(playwrightRule{name: "prefer-to-have-length", run: runPlaywrightPreferToHaveLength})
|
|
782
|
+
Register(playwrightRule{name: "prefer-web-first-assertions", run: runPlaywrightPreferWebFirstAssertions})
|
|
783
|
+
Register(playwrightRule{name: "require-to-pass-timeout", run: runPlaywrightRequireToPassTimeout})
|
|
784
|
+
Register(playwrightRule{name: "require-to-throw-message", run: runPlaywrightRequireToThrowMessage})
|
|
785
|
+
Register(playwrightRule{name: "valid-describe-callback", run: runPlaywrightValidDescribeCallback})
|
|
786
|
+
Register(playwrightRule{name: "valid-expect", run: runPlaywrightValidExpect})
|
|
787
|
+
Register(playwrightRule{name: "valid-title", run: runPlaywrightValidTitle})
|
|
788
|
+
}
|