rubocop 1.50.2 → 1.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/LICENSE.txt +1 -1
 - data/README.md +73 -72
 - data/assets/output.css.erb +159 -0
 - data/assets/output.html.erb +1 -160
 - data/config/default.yml +316 -38
 - data/config/internal_affairs.yml +11 -0
 - data/config/obsoletion.yml +5 -0
 - data/exe/rubocop +4 -3
 - data/lib/rubocop/cached_data.rb +21 -5
 - data/lib/rubocop/cli/command/auto_generate_config.rb +28 -15
 - data/lib/rubocop/cli/command/execute_runner.rb +1 -1
 - data/lib/rubocop/cli/command/lsp.rb +19 -0
 - data/lib/rubocop/cli/command/show_docs_url.rb +2 -2
 - data/lib/rubocop/cli/command/version.rb +2 -2
 - data/lib/rubocop/cli.rb +14 -2
 - data/lib/rubocop/comment_config.rb +1 -1
 - data/lib/rubocop/config.rb +45 -13
 - data/lib/rubocop/config_finder.rb +14 -4
 - data/lib/rubocop/config_loader.rb +15 -10
 - data/lib/rubocop/config_loader_resolver.rb +17 -11
 - data/lib/rubocop/config_obsoletion/parameter_rule.rb +9 -1
 - data/lib/rubocop/config_obsoletion.rb +13 -10
 - data/lib/rubocop/config_validator.rb +17 -9
 - data/lib/rubocop/cop/autocorrect_logic.rb +30 -3
 - data/lib/rubocop/cop/base.rb +78 -19
 - data/lib/rubocop/cop/bundler/duplicated_gem.rb +1 -0
 - data/lib/rubocop/cop/bundler/duplicated_group.rb +127 -0
 - data/lib/rubocop/cop/bundler/gem_comment.rb +3 -3
 - data/lib/rubocop/cop/bundler/gem_version.rb +6 -7
 - data/lib/rubocop/cop/bundler/ordered_gems.rb +9 -1
 - data/lib/rubocop/cop/cop.rb +30 -4
 - data/lib/rubocop/cop/correctors/alignment_corrector.rb +2 -13
 - data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +4 -8
 - data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +5 -13
 - data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +7 -4
 - data/lib/rubocop/cop/correctors/line_break_corrector.rb +2 -0
 - data/lib/rubocop/cop/correctors/parentheses_corrector.rb +1 -1
 - data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +10 -0
 - data/lib/rubocop/cop/documentation.rb +32 -5
 - data/lib/rubocop/cop/exclude_limit.rb +1 -1
 - data/lib/rubocop/cop/force.rb +12 -0
 - data/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +38 -0
 - data/lib/rubocop/cop/gemspec/dependency_version.rb +5 -7
 - data/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +2 -2
 - data/lib/rubocop/cop/gemspec/development_dependencies.rb +1 -1
 - data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +2 -2
 - data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +9 -1
 - data/lib/rubocop/cop/gemspec/required_ruby_version.rb +5 -1
 - data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +3 -3
 - data/lib/rubocop/cop/generator/require_file_injector.rb +1 -1
 - data/lib/rubocop/cop/internal_affairs/cop_description.rb +32 -12
 - data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +2 -1
 - data/lib/rubocop/cop/internal_affairs/example_description.rb +46 -24
 - data/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +3 -1
 - data/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +8 -6
 - data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +19 -20
 - data/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +53 -0
 - data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +128 -34
 - data/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +34 -0
 - data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +6 -21
 - data/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +11 -2
 - data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +8 -1
 - data/lib/rubocop/cop/internal_affairs/undefined_config.rb +11 -1
 - data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +2 -5
 - data/lib/rubocop/cop/internal_affairs.rb +18 -0
 - data/lib/rubocop/cop/layout/access_modifier_indentation.rb +5 -1
 - data/lib/rubocop/cop/layout/argument_alignment.rb +1 -1
 - data/lib/rubocop/cop/layout/assignment_indentation.rb +3 -2
 - data/lib/rubocop/cop/layout/block_alignment.rb +30 -12
 - data/lib/rubocop/cop/layout/case_indentation.rb +1 -1
 - data/lib/rubocop/cop/layout/class_structure.rb +7 -0
 - data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +1 -2
 - data/lib/rubocop/cop/layout/comment_indentation.rb +1 -1
 - data/lib/rubocop/cop/layout/condition_position.rb +0 -4
 - data/lib/rubocop/cop/layout/def_end_alignment.rb +1 -1
 - data/lib/rubocop/cop/layout/dot_position.rb +1 -5
 - data/lib/rubocop/cop/layout/empty_comment.rb +3 -1
 - data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +43 -10
 - data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +14 -7
 - data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +1 -1
 - data/lib/rubocop/cop/layout/empty_line_between_defs.rb +29 -5
 - data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +10 -3
 - data/lib/rubocop/cop/layout/end_alignment.rb +15 -3
 - data/lib/rubocop/cop/layout/extra_spacing.rb +4 -10
 - data/lib/rubocop/cop/layout/first_argument_indentation.rb +2 -2
 - data/lib/rubocop/cop/layout/first_array_element_indentation.rb +24 -10
 - data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +8 -0
 - data/lib/rubocop/cop/layout/first_parameter_indentation.rb +1 -1
 - data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +4 -4
 - data/lib/rubocop/cop/layout/heredoc_indentation.rb +5 -2
 - data/lib/rubocop/cop/layout/indentation_style.rb +1 -1
 - data/lib/rubocop/cop/layout/indentation_width.rb +8 -9
 - data/lib/rubocop/cop/layout/leading_comment_space.rb +57 -2
 - data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +17 -9
 - data/lib/rubocop/cop/layout/line_continuation_spacing.rb +1 -1
 - data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +2 -0
 - data/lib/rubocop/cop/layout/line_length.rb +20 -20
 - data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +18 -3
 - data/lib/rubocop/cop/layout/redundant_line_break.rb +30 -7
 - data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +4 -4
 - data/lib/rubocop/cop/layout/single_line_block_chain.rb +5 -0
 - data/lib/rubocop/cop/layout/space_after_comma.rb +9 -1
 - data/lib/rubocop/cop/layout/space_after_not.rb +1 -1
 - data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +2 -2
 - data/lib/rubocop/cop/layout/space_around_operators.rb +56 -21
 - data/lib/rubocop/cop/layout/space_before_block_braces.rb +19 -10
 - data/lib/rubocop/cop/layout/space_before_brackets.rb +5 -5
 - data/lib/rubocop/cop/layout/space_inside_block_braces.rb +6 -0
 - data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +1 -1
 - data/lib/rubocop/cop/layout/space_inside_parens.rb +1 -1
 - data/lib/rubocop/cop/layout/space_inside_range_literal.rb +1 -1
 - data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +3 -4
 - data/lib/rubocop/cop/layout/trailing_empty_lines.rb +5 -0
 - data/lib/rubocop/cop/legacy/corrector.rb +12 -2
 - data/lib/rubocop/cop/lint/ambiguous_block_association.rb +13 -3
 - data/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -2
 - data/lib/rubocop/cop/lint/ambiguous_range.rb +4 -1
 - data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -2
 - data/lib/rubocop/cop/lint/assignment_in_condition.rb +6 -6
 - data/lib/rubocop/cop/lint/big_decimal_new.rb +4 -7
 - data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +2 -2
 - data/lib/rubocop/cop/lint/boolean_symbol.rb +1 -3
 - data/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -13
 - data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +1 -1
 - data/lib/rubocop/cop/lint/debugger.rb +45 -10
 - data/lib/rubocop/cop/lint/deprecated_class_methods.rb +1 -1
 - data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -10
 - data/lib/rubocop/cop/lint/duplicate_branch.rb +39 -4
 - data/lib/rubocop/cop/lint/duplicate_case_condition.rb +1 -5
 - data/lib/rubocop/cop/lint/duplicate_hash_key.rb +2 -5
 - data/lib/rubocop/cop/lint/duplicate_methods.rb +1 -11
 - data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +46 -19
 - data/lib/rubocop/cop/lint/duplicate_set_element.rb +74 -0
 - data/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -4
 - data/lib/rubocop/cop/lint/else_layout.rb +0 -2
 - data/lib/rubocop/cop/lint/empty_block.rb +1 -1
 - data/lib/rubocop/cop/lint/empty_conditional_body.rb +29 -8
 - data/lib/rubocop/cop/lint/empty_ensure.rb +1 -11
 - data/lib/rubocop/cop/lint/empty_interpolation.rb +0 -4
 - data/lib/rubocop/cop/lint/empty_when.rb +1 -3
 - data/lib/rubocop/cop/lint/ensure_return.rb +1 -9
 - data/lib/rubocop/cop/lint/erb_new_arguments.rb +27 -21
 - data/lib/rubocop/cop/lint/float_comparison.rb +10 -0
 - data/lib/rubocop/cop/lint/float_out_of_range.rb +0 -4
 - data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -10
 - data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +2 -1
 - data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +1 -1
 - data/lib/rubocop/cop/lint/identity_comparison.rb +0 -1
 - data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +23 -12
 - data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +5 -3
 - data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -7
 - data/lib/rubocop/cop/lint/inherit_exception.rb +9 -0
 - data/lib/rubocop/cop/lint/interpolation_check.rb +0 -4
 - data/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +47 -0
 - data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +1 -1
 - data/lib/rubocop/cop/lint/literal_as_condition.rb +1 -1
 - data/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +85 -0
 - data/lib/rubocop/cop/lint/literal_in_interpolation.rb +26 -7
 - data/lib/rubocop/cop/lint/loop.rb +6 -12
 - data/lib/rubocop/cop/lint/missing_super.rb +34 -5
 - data/lib/rubocop/cop/lint/mixed_case_range.rb +116 -0
 - data/lib/rubocop/cop/lint/nested_method_definition.rb +1 -7
 - data/lib/rubocop/cop/lint/next_without_accumulator.rb +6 -25
 - data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -5
 - data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +17 -7
 - data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +3 -5
 - data/lib/rubocop/cop/lint/number_conversion.rb +14 -4
 - data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +2 -2
 - data/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -1
 - data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +2 -2
 - data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +5 -6
 - data/lib/rubocop/cop/lint/percent_string_array.rb +0 -4
 - data/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -4
 - data/lib/rubocop/cop/lint/rand_one.rb +0 -4
 - data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +3 -1
 - data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +130 -0
 - data/lib/rubocop/cop/lint/redundant_require_statement.rb +12 -3
 - data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +72 -8
 - data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +1 -1
 - data/lib/rubocop/cop/lint/redundant_string_coercion.rb +1 -5
 - data/lib/rubocop/cop/lint/redundant_with_index.rb +6 -2
 - data/lib/rubocop/cop/lint/redundant_with_object.rb +2 -2
 - data/lib/rubocop/cop/lint/require_parentheses.rb +0 -4
 - data/lib/rubocop/cop/lint/rescue_exception.rb +0 -4
 - data/lib/rubocop/cop/lint/rescue_type.rb +1 -3
 - data/lib/rubocop/cop/lint/return_in_void_context.rb +0 -2
 - data/lib/rubocop/cop/lint/safe_navigation_chain.rb +23 -12
 - data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +107 -41
 - data/lib/rubocop/cop/lint/script_permission.rb +3 -3
 - data/lib/rubocop/cop/lint/self_assignment.rb +38 -0
 - data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +1 -2
 - data/lib/rubocop/cop/lint/shadowed_argument.rb +1 -0
 - data/lib/rubocop/cop/lint/shadowed_exception.rb +5 -11
 - data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +13 -11
 - data/lib/rubocop/cop/lint/struct_new_override.rb +12 -12
 - data/lib/rubocop/cop/lint/suppressed_exception.rb +2 -2
 - data/lib/rubocop/cop/lint/symbol_conversion.rb +9 -4
 - data/lib/rubocop/cop/lint/syntax.rb +6 -3
 - data/lib/rubocop/cop/lint/to_enum_arguments.rb +6 -6
 - data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +23 -9
 - data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +1 -1
 - data/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +88 -0
 - data/lib/rubocop/cop/lint/unified_integer.rb +0 -4
 - data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +3 -2
 - data/lib/rubocop/cop/lint/unreachable_code.rb +4 -7
 - data/lib/rubocop/cop/lint/unreachable_loop.rb +8 -2
 - data/lib/rubocop/cop/lint/uri_regexp.rb +25 -7
 - data/lib/rubocop/cop/lint/useless_access_modifier.rb +2 -2
 - data/lib/rubocop/cop/lint/useless_assignment.rb +102 -15
 - data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -4
 - data/lib/rubocop/cop/lint/useless_numeric_operation.rb +77 -0
 - data/lib/rubocop/cop/lint/useless_setter_call.rb +0 -4
 - data/lib/rubocop/cop/lint/useless_times.rb +2 -2
 - data/lib/rubocop/cop/lint/void.rb +128 -15
 - data/lib/rubocop/cop/metrics/abc_size.rb +3 -3
 - data/lib/rubocop/cop/metrics/block_length.rb +7 -6
 - data/lib/rubocop/cop/metrics/block_nesting.rb +19 -7
 - data/lib/rubocop/cop/metrics/class_length.rb +14 -8
 - data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +4 -1
 - data/lib/rubocop/cop/metrics/method_length.rb +7 -6
 - data/lib/rubocop/cop/metrics/module_length.rb +6 -5
 - data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +1 -2
 - data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +37 -9
 - data/lib/rubocop/cop/migration/department_name.rb +2 -2
 - data/lib/rubocop/cop/mixin/alignment.rb +5 -1
 - data/lib/rubocop/cop/mixin/allowed_methods.rb +7 -1
 - data/lib/rubocop/cop/mixin/allowed_pattern.rb +15 -3
 - data/lib/rubocop/cop/mixin/allowed_receivers.rb +34 -0
 - data/lib/rubocop/cop/mixin/annotation_comment.rb +0 -2
 - data/lib/rubocop/cop/mixin/check_line_breakable.rb +11 -1
 - data/lib/rubocop/cop/mixin/code_length.rb +12 -1
 - data/lib/rubocop/cop/mixin/comments_help.rb +19 -11
 - data/lib/rubocop/cop/mixin/configurable_formatting.rb +1 -0
 - data/lib/rubocop/cop/mixin/configurable_max.rb +5 -1
 - data/lib/rubocop/cop/mixin/def_node.rb +1 -1
 - data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -1
 - data/lib/rubocop/cop/mixin/endless_method_rewriter.rb +24 -0
 - data/lib/rubocop/cop/mixin/frozen_string_literal.rb +22 -10
 - data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +23 -13
 - data/lib/rubocop/cop/mixin/heredoc.rb +6 -2
 - data/lib/rubocop/cop/mixin/line_length_help.rb +7 -2
 - data/lib/rubocop/cop/mixin/method_complexity.rb +15 -6
 - data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +4 -3
 - data/lib/rubocop/cop/mixin/percent_array.rb +1 -1
 - data/lib/rubocop/cop/mixin/percent_literal.rb +1 -1
 - data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +6 -8
 - data/lib/rubocop/cop/mixin/rescue_node.rb +4 -0
 - data/lib/rubocop/cop/mixin/safe_assignment.rb +1 -1
 - data/lib/rubocop/cop/mixin/space_after_punctuation.rb +1 -1
 - data/lib/rubocop/cop/mixin/space_before_punctuation.rb +1 -1
 - data/lib/rubocop/cop/mixin/statement_modifier.rb +3 -2
 - data/lib/rubocop/cop/mixin/string_help.rb +4 -2
 - data/lib/rubocop/cop/mixin/string_literals_help.rb +12 -0
 - data/lib/rubocop/cop/mixin/trailing_comma.rb +1 -1
 - data/lib/rubocop/cop/naming/accessor_method_name.rb +5 -0
 - data/lib/rubocop/cop/naming/block_forwarding.rb +35 -8
 - data/lib/rubocop/cop/naming/constant_name.rb +2 -3
 - data/lib/rubocop/cop/naming/file_name.rb +3 -3
 - data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +3 -1
 - data/lib/rubocop/cop/naming/inclusive_language.rb +13 -5
 - data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +26 -11
 - data/lib/rubocop/cop/naming/predicate_name.rb +55 -29
 - data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +21 -4
 - data/lib/rubocop/cop/naming/variable_name.rb +6 -1
 - data/lib/rubocop/cop/offense.rb +4 -5
 - data/lib/rubocop/cop/registry.rb +1 -1
 - data/lib/rubocop/cop/security/compound_hash.rb +2 -2
 - data/lib/rubocop/cop/security/open.rb +2 -2
 - data/lib/rubocop/cop/style/access_modifier_declarations.rb +63 -3
 - data/lib/rubocop/cop/style/accessor_grouping.rb +14 -2
 - data/lib/rubocop/cop/style/alias.rb +11 -9
 - data/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +79 -0
 - data/lib/rubocop/cop/style/arguments_forwarding.rb +459 -63
 - data/lib/rubocop/cop/style/array_first_last.rb +64 -0
 - data/lib/rubocop/cop/style/array_intersect.rb +13 -5
 - data/lib/rubocop/cop/style/attr.rb +11 -1
 - data/lib/rubocop/cop/style/auto_resource_cleanup.rb +21 -14
 - data/lib/rubocop/cop/style/begin_block.rb +1 -2
 - data/lib/rubocop/cop/style/bisected_attr_accessor.rb +2 -2
 - data/lib/rubocop/cop/style/bitwise_predicate.rb +100 -0
 - data/lib/rubocop/cop/style/block_comments.rb +1 -1
 - data/lib/rubocop/cop/style/block_delimiters.rb +36 -7
 - data/lib/rubocop/cop/style/case_like_if.rb +5 -5
 - data/lib/rubocop/cop/style/class_and_module_children.rb +1 -1
 - data/lib/rubocop/cop/style/class_check.rb +1 -0
 - data/lib/rubocop/cop/style/class_equality_comparison.rb +24 -39
 - data/lib/rubocop/cop/style/class_vars.rb +3 -3
 - data/lib/rubocop/cop/style/collection_compact.rb +31 -11
 - data/lib/rubocop/cop/style/collection_methods.rb +2 -0
 - data/lib/rubocop/cop/style/colon_method_call.rb +2 -2
 - data/lib/rubocop/cop/style/combinable_defined.rb +115 -0
 - data/lib/rubocop/cop/style/combinable_loops.rb +43 -8
 - data/lib/rubocop/cop/style/commented_keyword.rb +12 -3
 - data/lib/rubocop/cop/style/concat_array_literals.rb +2 -1
 - data/lib/rubocop/cop/style/conditional_assignment.rb +13 -12
 - data/lib/rubocop/cop/style/copyright.rb +36 -23
 - data/lib/rubocop/cop/style/data_inheritance.rb +1 -1
 - data/lib/rubocop/cop/style/date_time.rb +5 -4
 - data/lib/rubocop/cop/style/def_with_parentheses.rb +0 -2
 - data/lib/rubocop/cop/style/dir.rb +1 -1
 - data/lib/rubocop/cop/style/dir_empty.rb +8 -14
 - data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +1 -1
 - data/lib/rubocop/cop/style/documentation.rb +25 -25
 - data/lib/rubocop/cop/style/documentation_method.rb +20 -0
 - data/lib/rubocop/cop/style/each_for_simple_loop.rb +7 -8
 - data/lib/rubocop/cop/style/each_with_object.rb +2 -2
 - data/lib/rubocop/cop/style/empty_case_condition.rb +6 -1
 - data/lib/rubocop/cop/style/empty_else.rb +6 -5
 - data/lib/rubocop/cop/style/empty_heredoc.rb +1 -14
 - data/lib/rubocop/cop/style/empty_literal.rb +32 -23
 - data/lib/rubocop/cop/style/endless_method.rb +1 -14
 - data/lib/rubocop/cop/style/eval_with_location.rb +24 -32
 - data/lib/rubocop/cop/style/exact_regexp_match.rb +70 -0
 - data/lib/rubocop/cop/style/explicit_block_argument.rb +2 -2
 - data/lib/rubocop/cop/style/file_read.rb +4 -7
 - data/lib/rubocop/cop/style/file_write.rb +2 -5
 - data/lib/rubocop/cop/style/for.rb +3 -1
 - data/lib/rubocop/cop/style/format_string.rb +33 -12
 - data/lib/rubocop/cop/style/format_string_token.rb +2 -2
 - data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +3 -1
 - data/lib/rubocop/cop/style/global_std_stream.rb +7 -1
 - data/lib/rubocop/cop/style/guard_clause.rb +45 -2
 - data/lib/rubocop/cop/style/hash_conversion.rb +10 -0
 - data/lib/rubocop/cop/style/hash_each_methods.rb +112 -33
 - data/lib/rubocop/cop/style/hash_except.rb +29 -14
 - data/lib/rubocop/cop/style/hash_syntax.rb +26 -4
 - data/lib/rubocop/cop/style/hash_transform_keys.rb +2 -2
 - data/lib/rubocop/cop/style/hash_transform_values.rb +2 -2
 - data/lib/rubocop/cop/style/identical_conditional_branches.rb +34 -5
 - data/lib/rubocop/cop/style/if_inside_else.rb +7 -1
 - data/lib/rubocop/cop/style/if_unless_modifier.rb +3 -0
 - data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +5 -4
 - data/lib/rubocop/cop/style/if_with_semicolon.rb +51 -8
 - data/lib/rubocop/cop/style/in_pattern_then.rb +6 -2
 - data/lib/rubocop/cop/style/inverse_methods.rb +14 -13
 - data/lib/rubocop/cop/style/invertible_unless_condition.rb +56 -10
 - data/lib/rubocop/cop/style/keyword_arguments_merging.rb +67 -0
 - data/lib/rubocop/cop/style/lambda.rb +4 -4
 - data/lib/rubocop/cop/style/lambda_call.rb +5 -0
 - data/lib/rubocop/cop/style/magic_comment_format.rb +1 -1
 - data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +82 -50
 - data/lib/rubocop/cop/style/map_into_array.rb +233 -0
 - data/lib/rubocop/cop/style/map_to_hash.rb +18 -8
 - data/lib/rubocop/cop/style/map_to_set.rb +1 -1
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +40 -15
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +3 -5
 - data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +22 -2
 - data/lib/rubocop/cop/style/method_def_parentheses.rb +1 -1
 - data/lib/rubocop/cop/style/missing_else.rb +0 -4
 - data/lib/rubocop/cop/style/missing_respond_to_missing.rb +2 -2
 - data/lib/rubocop/cop/style/mixin_grouping.rb +1 -1
 - data/lib/rubocop/cop/style/multiline_block_chain.rb +1 -1
 - data/lib/rubocop/cop/style/multiline_memoization.rb +1 -1
 - data/lib/rubocop/cop/style/multiline_method_signature.rb +10 -1
 - data/lib/rubocop/cop/style/multiline_ternary_operator.rb +6 -4
 - data/lib/rubocop/cop/style/multiline_when_then.rb +0 -4
 - data/lib/rubocop/cop/style/multiple_comparison.rb +41 -46
 - data/lib/rubocop/cop/style/nested_modifier.rb +1 -1
 - data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +1 -1
 - data/lib/rubocop/cop/style/nested_ternary_operator.rb +3 -11
 - data/lib/rubocop/cop/style/next.rb +1 -1
 - data/lib/rubocop/cop/style/nil_comparison.rb +2 -0
 - data/lib/rubocop/cop/style/numeric_literal_prefix.rb +1 -1
 - data/lib/rubocop/cop/style/numeric_literals.rb +1 -1
 - data/lib/rubocop/cop/style/numeric_predicate.rb +12 -4
 - data/lib/rubocop/cop/style/object_then.rb +5 -3
 - data/lib/rubocop/cop/style/one_line_conditional.rb +6 -2
 - data/lib/rubocop/cop/style/open_struct_use.rb +1 -1
 - data/lib/rubocop/cop/style/operator_method_call.rb +32 -7
 - data/lib/rubocop/cop/style/parallel_assignment.rb +8 -9
 - data/lib/rubocop/cop/style/parentheses_around_condition.rb +8 -0
 - data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
 - data/lib/rubocop/cop/style/preferred_hash_methods.rb +1 -1
 - data/lib/rubocop/cop/style/quoted_symbols.rb +1 -3
 - data/lib/rubocop/cop/style/raise_args.rb +4 -1
 - data/lib/rubocop/cop/style/redundant_argument.rb +33 -4
 - data/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
 - data/lib/rubocop/cop/style/redundant_assignment.rb +10 -2
 - data/lib/rubocop/cop/style/redundant_begin.rb +15 -3
 - data/lib/rubocop/cop/style/redundant_condition.rb +4 -4
 - data/lib/rubocop/cop/style/redundant_conditional.rb +2 -10
 - data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +39 -0
 - data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +93 -5
 - data/lib/rubocop/cop/style/redundant_each.rb +7 -4
 - data/lib/rubocop/cop/style/redundant_exception.rb +32 -12
 - data/lib/rubocop/cop/style/redundant_fetch_block.rb +3 -3
 - data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_filter_chain.rb +118 -0
 - data/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +46 -0
 - data/lib/rubocop/cop/style/redundant_line_continuation.rb +48 -9
 - data/lib/rubocop/cop/style/redundant_parentheses.rb +80 -33
 - data/lib/rubocop/cop/style/redundant_percent_q.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_regexp_argument.rb +103 -0
 - data/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
 - data/lib/rubocop/cop/style/redundant_regexp_escape.rb +9 -24
 - data/lib/rubocop/cop/style/redundant_return.rb +14 -3
 - data/lib/rubocop/cop/style/redundant_self.rb +17 -2
 - data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +8 -1
 - data/lib/rubocop/cop/style/redundant_sort.rb +10 -9
 - data/lib/rubocop/cop/style/redundant_sort_by.rb +2 -2
 - data/lib/rubocop/cop/style/redundant_string_escape.rb +3 -1
 - data/lib/rubocop/cop/style/regexp_literal.rb +11 -2
 - data/lib/rubocop/cop/style/require_order.rb +13 -7
 - data/lib/rubocop/cop/style/rescue_modifier.rb +14 -4
 - data/lib/rubocop/cop/style/return_nil.rb +6 -2
 - data/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +137 -0
 - data/lib/rubocop/cop/style/safe_navigation.rb +106 -52
 - data/lib/rubocop/cop/style/safe_navigation_chain_length.rb +52 -0
 - data/lib/rubocop/cop/style/sample.rb +3 -4
 - data/lib/rubocop/cop/style/select_by_regexp.rb +29 -15
 - data/lib/rubocop/cop/style/self_assignment.rb +1 -1
 - data/lib/rubocop/cop/style/semicolon.rb +21 -5
 - data/lib/rubocop/cop/style/send.rb +4 -4
 - data/lib/rubocop/cop/style/send_with_literal_method_name.rb +104 -0
 - data/lib/rubocop/cop/style/signal_exception.rb +1 -1
 - data/lib/rubocop/cop/style/single_argument_dig.rb +7 -3
 - data/lib/rubocop/cop/style/single_line_do_end_block.rb +67 -0
 - data/lib/rubocop/cop/style/single_line_methods.rb +1 -1
 - data/lib/rubocop/cop/style/slicing_with_range.rb +76 -10
 - data/lib/rubocop/cop/style/sole_nested_conditional.rb +27 -4
 - data/lib/rubocop/cop/style/special_global_vars.rb +4 -6
 - data/lib/rubocop/cop/style/string_chars.rb +1 -0
 - data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +30 -5
 - data/lib/rubocop/cop/style/strip.rb +7 -4
 - data/lib/rubocop/cop/style/struct_inheritance.rb +1 -1
 - data/lib/rubocop/cop/style/super_arguments.rb +174 -0
 - data/lib/rubocop/cop/style/super_with_args_parentheses.rb +35 -0
 - data/lib/rubocop/cop/style/symbol_array.rb +35 -15
 - data/lib/rubocop/cop/style/symbol_proc.rb +75 -5
 - data/lib/rubocop/cop/style/ternary_parentheses.rb +26 -5
 - data/lib/rubocop/cop/style/top_level_method_definition.rb +1 -1
 - data/lib/rubocop/cop/style/trivial_accessors.rb +1 -1
 - data/lib/rubocop/cop/style/unpack_first.rb +11 -14
 - data/lib/rubocop/cop/style/while_until_do.rb +0 -2
 - data/lib/rubocop/cop/style/while_until_modifier.rb +0 -1
 - data/lib/rubocop/cop/style/yaml_file_read.rb +66 -0
 - data/lib/rubocop/cop/style/yoda_condition.rb +4 -2
 - data/lib/rubocop/cop/style/yoda_expression.rb +8 -7
 - data/lib/rubocop/cop/style/zero_length_predicate.rb +32 -24
 - data/lib/rubocop/cop/team.rb +27 -3
 - data/lib/rubocop/cop/util.rb +9 -3
 - data/lib/rubocop/cop/utils/regexp_ranges.rb +113 -0
 - data/lib/rubocop/cop/variable_force/assignment.rb +62 -6
 - data/lib/rubocop/cop/variable_force/branch.rb +1 -1
 - data/lib/rubocop/cop/variable_force/variable.rb +5 -1
 - data/lib/rubocop/cop/variable_force/variable_table.rb +4 -4
 - data/lib/rubocop/cop/variable_force.rb +14 -1
 - data/lib/rubocop/cops_documentation_generator.rb +97 -44
 - data/lib/rubocop/core_ext/string.rb +2 -6
 - data/lib/rubocop/directive_comment.rb +10 -8
 - data/lib/rubocop/ext/regexp_node.rb +18 -35
 - data/lib/rubocop/ext/regexp_parser.rb +7 -21
 - data/lib/rubocop/file_finder.rb +11 -9
 - data/lib/rubocop/formatter/clang_style_formatter.rb +3 -7
 - data/lib/rubocop/formatter/disabled_config_formatter.rb +24 -9
 - data/lib/rubocop/formatter/formatter_set.rb +7 -1
 - data/lib/rubocop/formatter/html_formatter.rb +37 -14
 - data/lib/rubocop/formatter/json_formatter.rb +0 -1
 - data/lib/rubocop/formatter/junit_formatter.rb +71 -24
 - data/lib/rubocop/formatter/offense_count_formatter.rb +12 -2
 - data/lib/rubocop/formatter/tap_formatter.rb +3 -7
 - data/lib/rubocop/formatter.rb +1 -1
 - data/lib/rubocop/lockfile.rb +58 -7
 - data/lib/rubocop/lsp/logger.rb +22 -0
 - data/lib/rubocop/lsp/routes.rb +243 -0
 - data/lib/rubocop/lsp/runtime.rb +101 -0
 - data/lib/rubocop/lsp/server.rb +72 -0
 - data/lib/rubocop/lsp/severity.rb +27 -0
 - data/lib/rubocop/lsp.rb +36 -0
 - data/lib/rubocop/magic_comment.rb +13 -11
 - data/lib/rubocop/options.rb +28 -13
 - data/lib/rubocop/path_util.rb +6 -2
 - data/lib/rubocop/rake_task.rb +1 -1
 - data/lib/rubocop/remote_config.rb +5 -1
 - data/lib/rubocop/result_cache.rb +7 -10
 - data/lib/rubocop/rspec/cop_helper.rb +8 -2
 - data/lib/rubocop/rspec/expect_offense.rb +17 -8
 - data/lib/rubocop/rspec/shared_contexts.rb +77 -21
 - data/lib/rubocop/rspec/support.rb +3 -0
 - data/lib/rubocop/runner.rb +36 -12
 - data/lib/rubocop/server/cache.rb +16 -1
 - data/lib/rubocop/server/client_command/exec.rb +5 -5
 - data/lib/rubocop/server/client_command/start.rb +1 -1
 - data/lib/rubocop/server/core.rb +5 -0
 - data/lib/rubocop/server/server_command/exec.rb +0 -1
 - data/lib/rubocop/string_interpreter.rb +3 -3
 - data/lib/rubocop/target_finder.rb +91 -81
 - data/lib/rubocop/target_ruby.rb +90 -79
 - data/lib/rubocop/version.rb +53 -13
 - data/lib/rubocop/yaml_duplication_checker.rb +20 -26
 - data/lib/rubocop.rb +40 -1
 - metadata +73 -36
 - /data/lib/rubocop/formatter/{git_hub_actions_formatter.rb → github_actions_formatter.rb} +0 -0
 
| 
         @@ -136,7 +136,7 @@ module RuboCop 
     | 
|
| 
       136 
136 
     | 
    
         | 
| 
       137 
137 
     | 
    
         
             
                    private
         
     | 
| 
       138 
138 
     | 
    
         | 
| 
       139 
     | 
    
         
            -
                    # rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
      
 139 
     | 
    
         
            +
                    # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
       140 
140 
     | 
    
         
             
                    def check_branches(node, branches)
         
     | 
| 
       141 
141 
     | 
    
         
             
                      # return if any branch is empty. An empty branch can be an `if`
         
     | 
| 
       142 
142 
     | 
    
         
             
                      # without an `else` or a branch that contains only comments.
         
     | 
| 
         @@ -149,22 +149,50 @@ module RuboCop 
     | 
|
| 
       149 
149 
     | 
    
         
             
                                branches.any? { |branch| single_child_branch?(branch) }
         
     | 
| 
       150 
150 
     | 
    
         | 
| 
       151 
151 
     | 
    
         
             
                      heads = branches.map { |branch| head(branch) }
         
     | 
| 
       152 
     | 
    
         
            -
             
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
                      return unless duplicated_expressions?(node, heads)
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
                      condition_variable = assignable_condition_value(node)
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
                      head = heads.first
         
     | 
| 
      
 158 
     | 
    
         
            +
                      if head.respond_to?(:assignment?) && head.assignment?
         
     | 
| 
      
 159 
     | 
    
         
            +
                        # The `send` node is used instead of the `indexasgn` node, so `name` cannot be used.
         
     | 
| 
      
 160 
     | 
    
         
            +
                        # https://github.com/rubocop/rubocop-ast/blob/v1.29.0/lib/rubocop/ast/node/indexasgn_node.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
                        #
         
     | 
| 
      
 162 
     | 
    
         
            +
                        # FIXME: It would be better to update `RuboCop::AST::OpAsgnNode` or its subclasses to
         
     | 
| 
      
 163 
     | 
    
         
            +
                        # handle `self.foo ||= value` as a solution, instead of using `head.node_parts[0].to_s`.
         
     | 
| 
      
 164 
     | 
    
         
            +
                        assigned_value = head.send_type? ? head.receiver.source : head.node_parts[0].to_s
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
                        return if condition_variable == assigned_value
         
     | 
| 
      
 167 
     | 
    
         
            +
                      end
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
                      check_expressions(node, heads, :before_condition)
         
     | 
| 
       153 
170 
     | 
    
         
             
                    end
         
     | 
| 
       154 
     | 
    
         
            -
                    # rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
      
 171 
     | 
    
         
            +
                    # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
       155 
172 
     | 
    
         | 
| 
       156 
173 
     | 
    
         
             
                    def duplicated_expressions?(node, expressions)
         
     | 
| 
       157 
174 
     | 
    
         
             
                      unique_expressions = expressions.uniq
         
     | 
| 
       158 
175 
     | 
    
         
             
                      return false unless expressions.size >= 1 && unique_expressions.one?
         
     | 
| 
       159 
176 
     | 
    
         | 
| 
       160 
177 
     | 
    
         
             
                      unique_expression = unique_expressions.first
         
     | 
| 
       161 
     | 
    
         
            -
                      return true unless unique_expression 
     | 
| 
      
 178 
     | 
    
         
            +
                      return true unless unique_expression&.assignment?
         
     | 
| 
       162 
179 
     | 
    
         | 
| 
       163 
180 
     | 
    
         
             
                      lhs = unique_expression.child_nodes.first
         
     | 
| 
       164 
181 
     | 
    
         
             
                      node.condition.child_nodes.none? { |n| n.source == lhs.source if n.variable? }
         
     | 
| 
       165 
182 
     | 
    
         
             
                    end
         
     | 
| 
       166 
183 
     | 
    
         | 
| 
       167 
     | 
    
         
            -
                    def  
     | 
| 
      
 184 
     | 
    
         
            +
                    def assignable_condition_value(node)
         
     | 
| 
      
 185 
     | 
    
         
            +
                      if node.condition.call_type?
         
     | 
| 
      
 186 
     | 
    
         
            +
                        (receiver = node.condition.receiver) ? receiver.source : node.condition.source
         
     | 
| 
      
 187 
     | 
    
         
            +
                      elsif node.condition.variable?
         
     | 
| 
      
 188 
     | 
    
         
            +
                        node.condition.source
         
     | 
| 
      
 189 
     | 
    
         
            +
                      end
         
     | 
| 
      
 190 
     | 
    
         
            +
                    end
         
     | 
| 
      
 191 
     | 
    
         
            +
             
     | 
| 
      
 192 
     | 
    
         
            +
                    # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
         
     | 
| 
      
 193 
     | 
    
         
            +
                    def check_expressions(node, expressions, insert_position)
         
     | 
| 
      
 194 
     | 
    
         
            +
                      return if expressions.any?(&:nil?)
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
       168 
196 
     | 
    
         
             
                      inserted_expression = false
         
     | 
| 
       169 
197 
     | 
    
         | 
| 
       170 
198 
     | 
    
         
             
                      expressions.each do |expression|
         
     | 
| 
         @@ -184,6 +212,7 @@ module RuboCop 
     | 
|
| 
       184 
212 
     | 
    
         
             
                        end
         
     | 
| 
       185 
213 
     | 
    
         
             
                      end
         
     | 
| 
       186 
214 
     | 
    
         
             
                    end
         
     | 
| 
      
 215 
     | 
    
         
            +
                    # rubocop:enable Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
         
     | 
| 
       187 
216 
     | 
    
         | 
| 
       188 
217 
     | 
    
         
             
                    def last_child_of_parent?(node)
         
     | 
| 
       189 
218 
     | 
    
         
             
                      return true unless (parent = node.parent)
         
     | 
| 
         @@ -59,23 +59,29 @@ module RuboCop 
     | 
|
| 
       59 
59 
     | 
    
         
             
                  #   end
         
     | 
| 
       60 
60 
     | 
    
         
             
                  #
         
     | 
| 
       61 
61 
     | 
    
         
             
                  class IfInsideElse < Base
         
     | 
| 
      
 62 
     | 
    
         
            +
                    include IgnoredNode
         
     | 
| 
       62 
63 
     | 
    
         
             
                    include RangeHelp
         
     | 
| 
       63 
64 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       64 
65 
     | 
    
         | 
| 
       65 
66 
     | 
    
         
             
                    MSG = 'Convert `if` nested inside `else` to `elsif`.'
         
     | 
| 
       66 
67 
     | 
    
         | 
| 
      
 68 
     | 
    
         
            +
                    # rubocop:disable Metrics/CyclomaticComplexity
         
     | 
| 
       67 
69 
     | 
    
         
             
                    def on_if(node)
         
     | 
| 
       68 
70 
     | 
    
         
             
                      return if node.ternary? || node.unless?
         
     | 
| 
       69 
71 
     | 
    
         | 
| 
       70 
72 
     | 
    
         
             
                      else_branch = node.else_branch
         
     | 
| 
       71 
73 
     | 
    
         | 
| 
       72 
     | 
    
         
            -
                      return unless else_branch&.if_type? && else_branch 
     | 
| 
      
 74 
     | 
    
         
            +
                      return unless else_branch&.if_type? && else_branch.if?
         
     | 
| 
       73 
75 
     | 
    
         
             
                      return if allow_if_modifier_in_else_branch?(else_branch)
         
     | 
| 
       74 
76 
     | 
    
         | 
| 
       75 
77 
     | 
    
         
             
                      add_offense(else_branch.loc.keyword) do |corrector|
         
     | 
| 
      
 78 
     | 
    
         
            +
                        next if part_of_ignored_node?(node)
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
       76 
80 
     | 
    
         
             
                        autocorrect(corrector, else_branch)
         
     | 
| 
      
 81 
     | 
    
         
            +
                        ignore_node(node)
         
     | 
| 
       77 
82 
     | 
    
         
             
                      end
         
     | 
| 
       78 
83 
     | 
    
         
             
                    end
         
     | 
| 
      
 84 
     | 
    
         
            +
                    # rubocop:enable Metrics/CyclomaticComplexity
         
     | 
| 
       79 
85 
     | 
    
         | 
| 
       80 
86 
     | 
    
         
             
                    private
         
     | 
| 
       81 
87 
     | 
    
         | 
| 
         @@ -84,7 +84,10 @@ module RuboCop 
     | 
|
| 
       84 
84 
     | 
    
         
             
                      return unless (msg = message(node))
         
     | 
| 
       85 
85 
     | 
    
         | 
| 
       86 
86 
     | 
    
         
             
                      add_offense(node.loc.keyword, message: format(msg, keyword: node.keyword)) do |corrector|
         
     | 
| 
      
 87 
     | 
    
         
            +
                        next if part_of_ignored_node?(node)
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
       87 
89 
     | 
    
         
             
                        autocorrect(corrector, node)
         
     | 
| 
      
 90 
     | 
    
         
            +
                        ignore_node(node)
         
     | 
| 
       88 
91 
     | 
    
         
             
                      end
         
     | 
| 
       89 
92 
     | 
    
         
             
                    end
         
     | 
| 
       90 
93 
     | 
    
         | 
| 
         @@ -44,7 +44,6 @@ module RuboCop 
     | 
|
| 
       44 
44 
     | 
    
         
             
                  #   # good
         
     | 
| 
       45 
45 
     | 
    
         
             
                  #   foo == bar
         
     | 
| 
       46 
46 
     | 
    
         
             
                  #
         
     | 
| 
       47 
     | 
    
         
            -
                  # @example
         
     | 
| 
       48 
47 
     | 
    
         
             
                  #   # bad
         
     | 
| 
       49 
48 
     | 
    
         
             
                  #   if foo.do_something?
         
     | 
| 
       50 
49 
     | 
    
         
             
                  #     true
         
     | 
| 
         @@ -112,9 +111,11 @@ module RuboCop 
     | 
|
| 
       112 
111 
     | 
    
         
             
                    end
         
     | 
| 
       113 
112 
     | 
    
         | 
| 
       114 
113 
     | 
    
         
             
                    def message(node, keyword)
         
     | 
| 
       115 
     | 
    
         
            -
                       
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
       117 
     | 
    
         
            -
                       
     | 
| 
      
 114 
     | 
    
         
            +
                      if node.elsif?
         
     | 
| 
      
 115 
     | 
    
         
            +
                        MSG_FOR_ELSIF
         
     | 
| 
      
 116 
     | 
    
         
            +
                      else
         
     | 
| 
      
 117 
     | 
    
         
            +
                        format(MSG, keyword: keyword)
         
     | 
| 
      
 118 
     | 
    
         
            +
                      end
         
     | 
| 
       118 
119 
     | 
    
         
             
                    end
         
     | 
| 
       119 
120 
     | 
    
         | 
| 
       120 
121 
     | 
    
         
             
                    def return_boolean_value?(condition)
         
     | 
| 
         @@ -18,6 +18,7 @@ module RuboCop 
     | 
|
| 
       18 
18 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
                    MSG_IF_ELSE = 'Do not use `if %<expr>s;` - use `if/else` instead.'
         
     | 
| 
      
 21 
     | 
    
         
            +
                    MSG_NEWLINE = 'Do not use `if %<expr>s;` - use a newline instead.'
         
     | 
| 
       21 
22 
     | 
    
         
             
                    MSG_TERNARY = 'Do not use `if %<expr>s;` - use a ternary operator instead.'
         
     | 
| 
       22 
23 
     | 
    
         | 
| 
       23 
24 
     | 
    
         
             
                    def on_normal_if_unless(node)
         
     | 
| 
         @@ -26,20 +27,47 @@ module RuboCop 
     | 
|
| 
       26 
27 
     | 
    
         
             
                      beginning = node.loc.begin
         
     | 
| 
       27 
28 
     | 
    
         
             
                      return unless beginning&.is?(';')
         
     | 
| 
       28 
29 
     | 
    
         | 
| 
       29 
     | 
    
         
            -
                      message = node 
     | 
| 
      
 30 
     | 
    
         
            +
                      message = message(node)
         
     | 
| 
       30 
31 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
                      add_offense(node, message:  
     | 
| 
       32 
     | 
    
         
            -
                        corrector 
     | 
| 
      
 32 
     | 
    
         
            +
                      add_offense(node, message: message) do |corrector|
         
     | 
| 
      
 33 
     | 
    
         
            +
                        autocorrect(corrector, node)
         
     | 
| 
       33 
34 
     | 
    
         
             
                      end
         
     | 
| 
       34 
35 
     | 
    
         
             
                    end
         
     | 
| 
       35 
36 
     | 
    
         | 
| 
       36 
37 
     | 
    
         
             
                    private
         
     | 
| 
       37 
38 
     | 
    
         | 
| 
       38 
     | 
    
         
            -
                     
     | 
| 
      
 39 
     | 
    
         
            +
                    # rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
      
 40 
     | 
    
         
            +
                    def message(node)
         
     | 
| 
      
 41 
     | 
    
         
            +
                      template = if node.if_branch&.begin_type?
         
     | 
| 
      
 42 
     | 
    
         
            +
                                   MSG_NEWLINE
         
     | 
| 
      
 43 
     | 
    
         
            +
                                 elsif node.else_branch&.if_type? || node.else_branch&.begin_type? ||
         
     | 
| 
      
 44 
     | 
    
         
            +
                                       use_block_in_branches?(node)
         
     | 
| 
      
 45 
     | 
    
         
            +
                                   MSG_IF_ELSE
         
     | 
| 
      
 46 
     | 
    
         
            +
                                 else
         
     | 
| 
      
 47 
     | 
    
         
            +
                                   MSG_TERNARY
         
     | 
| 
      
 48 
     | 
    
         
            +
                                 end
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                      format(template, expr: node.condition.source)
         
     | 
| 
      
 51 
     | 
    
         
            +
                    end
         
     | 
| 
      
 52 
     | 
    
         
            +
                    # rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                    def autocorrect(corrector, node)
         
     | 
| 
      
 55 
     | 
    
         
            +
                      if node.branches.compact.any?(&:begin_type?) || use_block_in_branches?(node)
         
     | 
| 
      
 56 
     | 
    
         
            +
                        corrector.replace(node.loc.begin, "\n")
         
     | 
| 
      
 57 
     | 
    
         
            +
                      else
         
     | 
| 
      
 58 
     | 
    
         
            +
                        corrector.replace(node, replacement(node))
         
     | 
| 
      
 59 
     | 
    
         
            +
                      end
         
     | 
| 
      
 60 
     | 
    
         
            +
                    end
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                    def use_block_in_branches?(node)
         
     | 
| 
      
 63 
     | 
    
         
            +
                      node.branches.compact.any? { |branch| branch.block_type? || branch.numblock_type? }
         
     | 
| 
      
 64 
     | 
    
         
            +
                    end
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                    def replacement(node)
         
     | 
| 
       39 
67 
     | 
    
         
             
                      return correct_elsif(node) if node.else_branch&.if_type?
         
     | 
| 
       40 
68 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
                      then_code = node.if_branch ? node.if_branch 
     | 
| 
       42 
     | 
    
         
            -
                      else_code = node.else_branch ? node.else_branch 
     | 
| 
      
 69 
     | 
    
         
            +
                      then_code = node.if_branch ? build_expression(node.if_branch) : 'nil'
         
     | 
| 
      
 70 
     | 
    
         
            +
                      else_code = node.else_branch ? build_expression(node.else_branch) : 'nil'
         
     | 
| 
       43 
71 
     | 
    
         | 
| 
       44 
72 
     | 
    
         
             
                      "#{node.condition.source} ? #{then_code} : #{else_code}"
         
     | 
| 
       45 
73 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -47,16 +75,25 @@ module RuboCop 
     | 
|
| 
       47 
75 
     | 
    
         
             
                    def correct_elsif(node)
         
     | 
| 
       48 
76 
     | 
    
         
             
                      <<~RUBY.chop
         
     | 
| 
       49 
77 
     | 
    
         
             
                        if #{node.condition.source}
         
     | 
| 
       50 
     | 
    
         
            -
                          #{node.if_branch 
     | 
| 
      
 78 
     | 
    
         
            +
                          #{node.if_branch&.source}
         
     | 
| 
       51 
79 
     | 
    
         
             
                        #{build_else_branch(node.else_branch).chop}
         
     | 
| 
       52 
80 
     | 
    
         
             
                        end
         
     | 
| 
       53 
81 
     | 
    
         
             
                      RUBY
         
     | 
| 
       54 
82 
     | 
    
         
             
                    end
         
     | 
| 
       55 
83 
     | 
    
         | 
| 
      
 84 
     | 
    
         
            +
                    def build_expression(expr)
         
     | 
| 
      
 85 
     | 
    
         
            +
                      return expr.source unless require_argument_parentheses?(expr)
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                      method = expr.source_range.begin.join(expr.loc.selector.end)
         
     | 
| 
      
 88 
     | 
    
         
            +
                      arguments = expr.first_argument.source_range.begin.join(expr.source_range.end)
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
                      "#{method.source}(#{arguments.source})"
         
     | 
| 
      
 91 
     | 
    
         
            +
                    end
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
       56 
93 
     | 
    
         
             
                    def build_else_branch(second_condition)
         
     | 
| 
       57 
94 
     | 
    
         
             
                      result = <<~RUBY
         
     | 
| 
       58 
95 
     | 
    
         
             
                        elsif #{second_condition.condition.source}
         
     | 
| 
       59 
     | 
    
         
            -
                          #{second_condition.if_branch 
     | 
| 
      
 96 
     | 
    
         
            +
                          #{second_condition.if_branch&.source}
         
     | 
| 
       60 
97 
     | 
    
         
             
                      RUBY
         
     | 
| 
       61 
98 
     | 
    
         | 
| 
       62 
99 
     | 
    
         
             
                      if second_condition.else_branch
         
     | 
| 
         @@ -72,6 +109,12 @@ module RuboCop 
     | 
|
| 
       72 
109 
     | 
    
         | 
| 
       73 
110 
     | 
    
         
             
                      result
         
     | 
| 
       74 
111 
     | 
    
         
             
                    end
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
                    def require_argument_parentheses?(node)
         
     | 
| 
      
 114 
     | 
    
         
            +
                      return false unless node.call_type?
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                      !node.parenthesized? && node.arguments.any? && !node.method?(:[]) && !node.method?(:[]=)
         
     | 
| 
      
 117 
     | 
    
         
            +
                    end
         
     | 
| 
       75 
118 
     | 
    
         
             
                  end
         
     | 
| 
       76 
119 
     | 
    
         
             
                end
         
     | 
| 
       77 
120 
     | 
    
         
             
              end
         
     | 
| 
         @@ -44,11 +44,15 @@ module RuboCop 
     | 
|
| 
       44 
44 
     | 
    
         
             
                    private
         
     | 
| 
       45 
45 
     | 
    
         | 
| 
       46 
46 
     | 
    
         
             
                    def alternative_pattern_source(pattern)
         
     | 
| 
      
 47 
     | 
    
         
            +
                      collect_alternative_patterns(pattern).join(' | ')
         
     | 
| 
      
 48 
     | 
    
         
            +
                    end
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                    def collect_alternative_patterns(pattern)
         
     | 
| 
       47 
51 
     | 
    
         
             
                      return pattern.children.map(&:source) unless pattern.children.first.match_alt_type?
         
     | 
| 
       48 
52 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
                      pattern_sources =  
     | 
| 
      
 53 
     | 
    
         
            +
                      pattern_sources = collect_alternative_patterns(pattern.children.first)
         
     | 
| 
       50 
54 
     | 
    
         | 
| 
       51 
     | 
    
         
            -
                       
     | 
| 
      
 55 
     | 
    
         
            +
                      pattern_sources << pattern.children[1].source
         
     | 
| 
       52 
56 
     | 
    
         
             
                    end
         
     | 
| 
       53 
57 
     | 
    
         
             
                  end
         
     | 
| 
       54 
58 
     | 
    
         
             
                end
         
     | 
| 
         @@ -60,25 +60,25 @@ module RuboCop 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    # @!method inverse_candidate?(node)
         
     | 
| 
       61 
61 
     | 
    
         
             
                    def_node_matcher :inverse_candidate?, <<~PATTERN
         
     | 
| 
       62 
62 
     | 
    
         
             
                      {
         
     | 
| 
       63 
     | 
    
         
            -
                        (send $( 
     | 
| 
       64 
     | 
    
         
            -
                        (send ({block numblock} $( 
     | 
| 
       65 
     | 
    
         
            -
                        (send (begin $( 
     | 
| 
      
 63 
     | 
    
         
            +
                        (send $(call $(...) $_ $...) :!)
         
     | 
| 
      
 64 
     | 
    
         
            +
                        (send ({block numblock} $(call $(...) $_) $...) :!)
         
     | 
| 
      
 65 
     | 
    
         
            +
                        (send (begin $(call $(...) $_ $...)) :!)
         
     | 
| 
       66 
66 
     | 
    
         
             
                      }
         
     | 
| 
       67 
67 
     | 
    
         
             
                    PATTERN
         
     | 
| 
       68 
68 
     | 
    
         | 
| 
       69 
69 
     | 
    
         
             
                    # @!method inverse_block?(node)
         
     | 
| 
       70 
70 
     | 
    
         
             
                    def_node_matcher :inverse_block?, <<~PATTERN
         
     | 
| 
       71 
     | 
    
         
            -
                      ({block numblock} $( 
     | 
| 
      
 71 
     | 
    
         
            +
                      ({block numblock} $(call (...) $_) ... { $(call ... :!)
         
     | 
| 
       72 
72 
     | 
    
         
             
                                                               $(send (...) {:!= :!~} ...)
         
     | 
| 
       73 
     | 
    
         
            -
                                                               (begin ... $( 
     | 
| 
      
 73 
     | 
    
         
            +
                                                               (begin ... $(call ... :!))
         
     | 
| 
       74 
74 
     | 
    
         
             
                                                               (begin ... $(send (...) {:!= :!~} ...))
         
     | 
| 
       75 
75 
     | 
    
         
             
                                                             })
         
     | 
| 
       76 
76 
     | 
    
         
             
                    PATTERN
         
     | 
| 
       77 
77 
     | 
    
         | 
| 
       78 
78 
     | 
    
         
             
                    def on_send(node)
         
     | 
| 
       79 
     | 
    
         
            -
                      inverse_candidate?(node) do | 
     | 
| 
      
 79 
     | 
    
         
            +
                      inverse_candidate?(node) do |method_call, lhs, method, rhs|
         
     | 
| 
       80 
80 
     | 
    
         
             
                        return unless inverse_methods.key?(method)
         
     | 
| 
       81 
     | 
    
         
            -
                        return if negated?(node)
         
     | 
| 
      
 81 
     | 
    
         
            +
                        return if negated?(node) || relational_comparison_with_safe_navigation?(method_call)
         
     | 
| 
       82 
82 
     | 
    
         
             
                        return if part_of_ignored_node?(node)
         
     | 
| 
       83 
83 
     | 
    
         
             
                        return if possible_class_hierarchy_check?(lhs, rhs, method)
         
     | 
| 
       84 
84 
     | 
    
         | 
| 
         @@ -87,6 +87,7 @@ module RuboCop 
     | 
|
| 
       87 
87 
     | 
    
         
             
                        end
         
     | 
| 
       88 
88 
     | 
    
         
             
                      end
         
     | 
| 
       89 
89 
     | 
    
         
             
                    end
         
     | 
| 
      
 90 
     | 
    
         
            +
                    alias on_csend on_send
         
     | 
| 
       90 
91 
     | 
    
         | 
| 
       91 
92 
     | 
    
         
             
                    def on_block(node)
         
     | 
| 
       92 
93 
     | 
    
         
             
                      inverse_block?(node) do |_method_call, method, block|
         
     | 
| 
         @@ -154,16 +155,16 @@ module RuboCop 
     | 
|
| 
       154 
155 
     | 
    
         
             
                      node.parent.respond_to?(:method?) && node.parent.method?(:!)
         
     | 
| 
       155 
156 
     | 
    
         
             
                    end
         
     | 
| 
       156 
157 
     | 
    
         | 
| 
      
 158 
     | 
    
         
            +
                    def relational_comparison_with_safe_navigation?(node)
         
     | 
| 
      
 159 
     | 
    
         
            +
                      node.csend_type? && CLASS_COMPARISON_METHODS.include?(node.method_name)
         
     | 
| 
      
 160 
     | 
    
         
            +
                    end
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
       157 
162 
     | 
    
         
             
                    def not_to_receiver(node, method_call)
         
     | 
| 
       158 
     | 
    
         
            -
                       
     | 
| 
       159 
     | 
    
         
            -
                                                node.loc.selector.begin_pos,
         
     | 
| 
       160 
     | 
    
         
            -
                                                method_call.source_range.begin_pos)
         
     | 
| 
      
 163 
     | 
    
         
            +
                      node.loc.selector.begin.join(method_call.source_range.begin)
         
     | 
| 
       161 
164 
     | 
    
         
             
                    end
         
     | 
| 
       162 
165 
     | 
    
         | 
| 
       163 
166 
     | 
    
         
             
                    def end_parentheses(node, method_call)
         
     | 
| 
       164 
     | 
    
         
            -
                       
     | 
| 
       165 
     | 
    
         
            -
                                                method_call.source_range.end_pos,
         
     | 
| 
       166 
     | 
    
         
            -
                                                node.source_range.end_pos)
         
     | 
| 
      
 167 
     | 
    
         
            +
                      method_call.source_range.end.join(node.source_range.end)
         
     | 
| 
       167 
168 
     | 
    
         
             
                    end
         
     | 
| 
       168 
169 
     | 
    
         | 
| 
       169 
170 
     | 
    
         
             
                    # When comparing classes, `!(Integer < Numeric)` is not the same as
         
     | 
| 
         @@ -10,12 +10,16 @@ module RuboCop 
     | 
|
| 
       10 
10 
     | 
    
         
             
                  # Methods that can be inverted should be defined in `InverseMethods`. Note that
         
     | 
| 
       11 
11 
     | 
    
         
             
                  # the relationship of inverse methods needs to be defined in both directions.
         
     | 
| 
       12 
12 
     | 
    
         
             
                  # For example,
         
     | 
| 
       13 
     | 
    
         
            -
                  #   InverseMethods:
         
     | 
| 
       14 
     | 
    
         
            -
                  #     :!=: :==
         
     | 
| 
       15 
     | 
    
         
            -
                  #     :even?: :odd?
         
     | 
| 
       16 
     | 
    
         
            -
                  #     :odd?: :even?
         
     | 
| 
       17 
13 
     | 
    
         
             
                  #
         
     | 
| 
       18 
     | 
    
         
            -
                  # 
     | 
| 
      
 14 
     | 
    
         
            +
                  # [source,yaml]
         
     | 
| 
      
 15 
     | 
    
         
            +
                  # ----
         
     | 
| 
      
 16 
     | 
    
         
            +
                  # InverseMethods:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  #   :!=: :==
         
     | 
| 
      
 18 
     | 
    
         
            +
                  #   :even?: :odd?
         
     | 
| 
      
 19 
     | 
    
         
            +
                  #   :odd?: :even?
         
     | 
| 
      
 20 
     | 
    
         
            +
                  # ----
         
     | 
| 
      
 21 
     | 
    
         
            +
                  #
         
     | 
| 
      
 22 
     | 
    
         
            +
                  # will suggest both `even?` and `odd?` to be inverted, but only `!=` (and not `==`).
         
     | 
| 
       19 
23 
     | 
    
         
             
                  #
         
     | 
| 
       20 
24 
     | 
    
         
             
                  # @safety
         
     | 
| 
       21 
25 
     | 
    
         
             
                  #   This cop is unsafe because it cannot be guaranteed that the method
         
     | 
| 
         @@ -28,12 +32,14 @@ module RuboCop 
     | 
|
| 
       28 
32 
     | 
    
         
             
                  #   foo unless x != y
         
     | 
| 
       29 
33 
     | 
    
         
             
                  #   foo unless x >= 10
         
     | 
| 
       30 
34 
     | 
    
         
             
                  #   foo unless x.even?
         
     | 
| 
      
 35 
     | 
    
         
            +
                  #   foo unless odd?
         
     | 
| 
       31 
36 
     | 
    
         
             
                  #
         
     | 
| 
       32 
37 
     | 
    
         
             
                  #   # good
         
     | 
| 
       33 
38 
     | 
    
         
             
                  #   foo if bar
         
     | 
| 
       34 
39 
     | 
    
         
             
                  #   foo if x == y
         
     | 
| 
       35 
40 
     | 
    
         
             
                  #   foo if x < 10
         
     | 
| 
       36 
41 
     | 
    
         
             
                  #   foo if x.odd?
         
     | 
| 
      
 42 
     | 
    
         
            +
                  #   foo if even?
         
     | 
| 
       37 
43 
     | 
    
         
             
                  #
         
     | 
| 
       38 
44 
     | 
    
         
             
                  #   # bad (complex condition)
         
     | 
| 
       39 
45 
     | 
    
         
             
                  #   foo unless x != y || x.even?
         
     | 
| 
         @@ -47,7 +53,7 @@ module RuboCop 
     | 
|
| 
       47 
53 
     | 
    
         
             
                  class InvertibleUnlessCondition < Base
         
     | 
| 
       48 
54 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       49 
55 
     | 
    
         | 
| 
       50 
     | 
    
         
            -
                    MSG = ' 
     | 
| 
      
 56 
     | 
    
         
            +
                    MSG = 'Prefer `%<prefer>s` over `%<current>s`.'
         
     | 
| 
       51 
57 
     | 
    
         | 
| 
       52 
58 
     | 
    
         
             
                    def on_if(node)
         
     | 
| 
       53 
59 
     | 
    
         
             
                      return unless node.unless?
         
     | 
| 
         @@ -55,7 +61,10 @@ module RuboCop 
     | 
|
| 
       55 
61 
     | 
    
         
             
                      condition = node.condition
         
     | 
| 
       56 
62 
     | 
    
         
             
                      return unless invertible?(condition)
         
     | 
| 
       57 
63 
     | 
    
         | 
| 
       58 
     | 
    
         
            -
                       
     | 
| 
      
 64 
     | 
    
         
            +
                      message = format(MSG, prefer: "#{node.inverse_keyword} #{preferred_condition(condition)}",
         
     | 
| 
      
 65 
     | 
    
         
            +
                                            current: "#{node.keyword} #{condition.source}")
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                      add_offense(node, message: message) do |corrector|
         
     | 
| 
       59 
68 
     | 
    
         
             
                        corrector.replace(node.loc.keyword, node.inverse_keyword)
         
     | 
| 
       60 
69 
     | 
    
         
             
                        autocorrect(corrector, condition)
         
     | 
| 
       61 
70 
     | 
    
         
             
                      end
         
     | 
| 
         @@ -63,12 +72,12 @@ module RuboCop 
     | 
|
| 
       63 
72 
     | 
    
         | 
| 
       64 
73 
     | 
    
         
             
                    private
         
     | 
| 
       65 
74 
     | 
    
         | 
| 
       66 
     | 
    
         
            -
                    def invertible?(node)
         
     | 
| 
       67 
     | 
    
         
            -
                      case node 
     | 
| 
      
 75 
     | 
    
         
            +
                    def invertible?(node) # rubocop:disable Metrics/CyclomaticComplexity
         
     | 
| 
      
 76 
     | 
    
         
            +
                      case node&.type
         
     | 
| 
       68 
77 
     | 
    
         
             
                      when :begin
         
     | 
| 
       69 
78 
     | 
    
         
             
                        invertible?(node.children.first)
         
     | 
| 
       70 
79 
     | 
    
         
             
                      when :send
         
     | 
| 
       71 
     | 
    
         
            -
                        return if inheritance_check?(node)
         
     | 
| 
      
 80 
     | 
    
         
            +
                        return false if inheritance_check?(node)
         
     | 
| 
       72 
81 
     | 
    
         | 
| 
       73 
82 
     | 
    
         
             
                        node.method?(:!) || inverse_methods.key?(node.method_name)
         
     | 
| 
       74 
83 
     | 
    
         
             
                      when :or, :and
         
     | 
| 
         @@ -84,6 +93,43 @@ module RuboCop 
     | 
|
| 
       84 
93 
     | 
    
         
             
                        (argument.const_type? && argument.short_name.to_s.upcase != argument.short_name.to_s)
         
     | 
| 
       85 
94 
     | 
    
         
             
                    end
         
     | 
| 
       86 
95 
     | 
    
         | 
| 
      
 96 
     | 
    
         
            +
                    def preferred_condition(node)
         
     | 
| 
      
 97 
     | 
    
         
            +
                      case node.type
         
     | 
| 
      
 98 
     | 
    
         
            +
                      when :begin    then "(#{preferred_condition(node.children.first)})"
         
     | 
| 
      
 99 
     | 
    
         
            +
                      when :send     then preferred_send_condition(node)
         
     | 
| 
      
 100 
     | 
    
         
            +
                      when :or, :and then preferred_logical_condition(node)
         
     | 
| 
      
 101 
     | 
    
         
            +
                      end
         
     | 
| 
      
 102 
     | 
    
         
            +
                    end
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
                    def preferred_send_condition(node) # rubocop:disable Metrics/CyclomaticComplexity
         
     | 
| 
      
 105 
     | 
    
         
            +
                      receiver_source = node.receiver&.source
         
     | 
| 
      
 106 
     | 
    
         
            +
                      return receiver_source if node.method?(:!)
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
                      # receiver may be implicit (self)
         
     | 
| 
      
 109 
     | 
    
         
            +
                      dotted_receiver_source = receiver_source ? "#{receiver_source}." : ''
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                      inverse_method_name = inverse_methods[node.method_name]
         
     | 
| 
      
 112 
     | 
    
         
            +
                      return "#{dotted_receiver_source}#{inverse_method_name}" unless node.arguments?
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
                      argument_list = node.arguments.map(&:source).join(', ')
         
     | 
| 
      
 115 
     | 
    
         
            +
                      if node.operator_method?
         
     | 
| 
      
 116 
     | 
    
         
            +
                        return "#{receiver_source} #{inverse_method_name} #{argument_list}"
         
     | 
| 
      
 117 
     | 
    
         
            +
                      end
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
                      if node.parenthesized?
         
     | 
| 
      
 120 
     | 
    
         
            +
                        return "#{dotted_receiver_source}#{inverse_method_name}(#{argument_list})"
         
     | 
| 
      
 121 
     | 
    
         
            +
                      end
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
                      "#{dotted_receiver_source}#{inverse_method_name} #{argument_list}"
         
     | 
| 
      
 124 
     | 
    
         
            +
                    end
         
     | 
| 
      
 125 
     | 
    
         
            +
             
     | 
| 
      
 126 
     | 
    
         
            +
                    def preferred_logical_condition(node)
         
     | 
| 
      
 127 
     | 
    
         
            +
                      preferred_lhs = preferred_condition(node.lhs)
         
     | 
| 
      
 128 
     | 
    
         
            +
                      preferred_rhs = preferred_condition(node.rhs)
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
                      "#{preferred_lhs} #{node.inverse_operator} #{preferred_rhs}"
         
     | 
| 
      
 131 
     | 
    
         
            +
                    end
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
       87 
133 
     | 
    
         
             
                    def autocorrect(corrector, node)
         
     | 
| 
       88 
134 
     | 
    
         
             
                      case node.type
         
     | 
| 
       89 
135 
     | 
    
         
             
                      when :begin
         
     | 
| 
         @@ -0,0 +1,67 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module RuboCop
         
     | 
| 
      
 4 
     | 
    
         
            +
              module Cop
         
     | 
| 
      
 5 
     | 
    
         
            +
                module Style
         
     | 
| 
      
 6 
     | 
    
         
            +
                  # When passing an existing hash as keyword arguments, provide additional arguments
         
     | 
| 
      
 7 
     | 
    
         
            +
                  # directly rather than using `merge`.
         
     | 
| 
      
 8 
     | 
    
         
            +
                  #
         
     | 
| 
      
 9 
     | 
    
         
            +
                  # Providing arguments directly is more performant, than using `merge`, and
         
     | 
| 
      
 10 
     | 
    
         
            +
                  # also leads to a shorter and simpler code.
         
     | 
| 
      
 11 
     | 
    
         
            +
                  #
         
     | 
| 
      
 12 
     | 
    
         
            +
                  # @example
         
     | 
| 
      
 13 
     | 
    
         
            +
                  #   # bad
         
     | 
| 
      
 14 
     | 
    
         
            +
                  #   some_method(**opts.merge(foo: true))
         
     | 
| 
      
 15 
     | 
    
         
            +
                  #   some_method(**opts.merge(other_opts))
         
     | 
| 
      
 16 
     | 
    
         
            +
                  #
         
     | 
| 
      
 17 
     | 
    
         
            +
                  #   # good
         
     | 
| 
      
 18 
     | 
    
         
            +
                  #   some_method(**opts, foo: true)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  #   some_method(**opts, **other_opts)
         
     | 
| 
      
 20 
     | 
    
         
            +
                  #
         
     | 
| 
      
 21 
     | 
    
         
            +
                  class KeywordArgumentsMerging < Base
         
     | 
| 
      
 22 
     | 
    
         
            +
                    extend AutoCorrector
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                    MSG = 'Provide additional arguments directly rather than using `merge`.'
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                    # @!method merge_kwargs?(node)
         
     | 
| 
      
 27 
     | 
    
         
            +
                    def_node_matcher :merge_kwargs?, <<~PATTERN
         
     | 
| 
      
 28 
     | 
    
         
            +
                      (send _ _
         
     | 
| 
      
 29 
     | 
    
         
            +
                        ...
         
     | 
| 
      
 30 
     | 
    
         
            +
                        (hash
         
     | 
| 
      
 31 
     | 
    
         
            +
                          (kwsplat
         
     | 
| 
      
 32 
     | 
    
         
            +
                            $(send $_ :merge $...))
         
     | 
| 
      
 33 
     | 
    
         
            +
                          ...))
         
     | 
| 
      
 34 
     | 
    
         
            +
                    PATTERN
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                    def on_kwsplat(node)
         
     | 
| 
      
 37 
     | 
    
         
            +
                      return unless (ancestor = node.parent&.parent)
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                      merge_kwargs?(ancestor) do |merge_node, hash_node, other_hash_node|
         
     | 
| 
      
 40 
     | 
    
         
            +
                        add_offense(merge_node) do |corrector|
         
     | 
| 
      
 41 
     | 
    
         
            +
                          autocorrect(corrector, node, hash_node, other_hash_node)
         
     | 
| 
      
 42 
     | 
    
         
            +
                        end
         
     | 
| 
      
 43 
     | 
    
         
            +
                      end
         
     | 
| 
      
 44 
     | 
    
         
            +
                    end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                    private
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                    def autocorrect(corrector, kwsplat_node, hash_node, other_hash_node)
         
     | 
| 
      
 49 
     | 
    
         
            +
                      other_hash_node_replacement =
         
     | 
| 
      
 50 
     | 
    
         
            +
                        other_hash_node.map do |node|
         
     | 
| 
      
 51 
     | 
    
         
            +
                          if node.hash_type?
         
     | 
| 
      
 52 
     | 
    
         
            +
                            if node.braces?
         
     | 
| 
      
 53 
     | 
    
         
            +
                              node.source[1...-1]
         
     | 
| 
      
 54 
     | 
    
         
            +
                            else
         
     | 
| 
      
 55 
     | 
    
         
            +
                              node.source
         
     | 
| 
      
 56 
     | 
    
         
            +
                            end
         
     | 
| 
      
 57 
     | 
    
         
            +
                          else
         
     | 
| 
      
 58 
     | 
    
         
            +
                            "**#{node.source}"
         
     | 
| 
      
 59 
     | 
    
         
            +
                          end
         
     | 
| 
      
 60 
     | 
    
         
            +
                        end.join(', ')
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                      corrector.replace(kwsplat_node, "**#{hash_node.source}, #{other_hash_node_replacement}")
         
     | 
| 
      
 63 
     | 
    
         
            +
                    end
         
     | 
| 
      
 64 
     | 
    
         
            +
                  end
         
     | 
| 
      
 65 
     | 
    
         
            +
                end
         
     | 
| 
      
 66 
     | 
    
         
            +
              end
         
     | 
| 
      
 67 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -68,11 +68,11 @@ module RuboCop 
     | 
|
| 
       68 
68 
     | 
    
         | 
| 
       69 
69 
     | 
    
         
             
                      return unless offending_selector?(node, selector)
         
     | 
| 
       70 
70 
     | 
    
         | 
| 
       71 
     | 
    
         
            -
                      add_offense(node.send_node 
     | 
| 
       72 
     | 
    
         
            -
                        if node.send_node. 
     | 
| 
       73 
     | 
    
         
            -
                          autocorrect_method_to_literal(corrector, node)
         
     | 
| 
       74 
     | 
    
         
            -
                        else
         
     | 
| 
      
 71 
     | 
    
         
            +
                      add_offense(node.send_node, message: message(node, selector)) do |corrector|
         
     | 
| 
      
 72 
     | 
    
         
            +
                        if node.send_node.lambda_literal?
         
     | 
| 
       75 
73 
     | 
    
         
             
                          LambdaLiteralToMethodCorrector.new(node).call(corrector)
         
     | 
| 
      
 74 
     | 
    
         
            +
                        else
         
     | 
| 
      
 75 
     | 
    
         
            +
                          autocorrect_method_to_literal(corrector, node)
         
     | 
| 
       76 
76 
     | 
    
         
             
                        end
         
     | 
| 
       77 
77 
     | 
    
         
             
                      end
         
     | 
| 
       78 
78 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -20,6 +20,7 @@ module RuboCop 
     | 
|
| 
       20 
20 
     | 
    
         
             
                  #  lambda.(x, y)
         
     | 
| 
       21 
21 
     | 
    
         
             
                  class LambdaCall < Base
         
     | 
| 
       22 
22 
     | 
    
         
             
                    include ConfigurableEnforcedStyle
         
     | 
| 
      
 23 
     | 
    
         
            +
                    include IgnoredNode
         
     | 
| 
       23 
24 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       24 
25 
     | 
    
         | 
| 
       25 
26 
     | 
    
         
             
                    MSG = 'Prefer the use of `%<prefer>s` over `%<current>s`.'
         
     | 
| 
         @@ -33,8 +34,12 @@ module RuboCop 
     | 
|
| 
       33 
34 
     | 
    
         
             
                        current = node.source
         
     | 
| 
       34 
35 
     | 
    
         | 
| 
       35 
36 
     | 
    
         
             
                        add_offense(node, message: format(MSG, prefer: prefer, current: current)) do |corrector|
         
     | 
| 
      
 37 
     | 
    
         
            +
                          next if part_of_ignored_node?(node)
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
       36 
39 
     | 
    
         
             
                          opposite_style_detected
         
     | 
| 
       37 
40 
     | 
    
         
             
                          corrector.replace(node, prefer)
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                          ignore_node(node)
         
     | 
| 
       38 
43 
     | 
    
         
             
                        end
         
     | 
| 
       39 
44 
     | 
    
         
             
                      else
         
     | 
| 
       40 
45 
     | 
    
         
             
                        correct_style_detected
         
     | 
| 
         @@ -105,7 +105,7 @@ module RuboCop 
     | 
|
| 
       105 
105 
     | 
    
         | 
| 
       106 
106 
     | 
    
         
             
                    # Value object to extract source ranges for the different parts of a magic comment
         
     | 
| 
       107 
107 
     | 
    
         
             
                    class CommentRange
         
     | 
| 
       108 
     | 
    
         
            -
                      extend  
     | 
| 
      
 108 
     | 
    
         
            +
                      extend SimpleForwardable
         
     | 
| 
       109 
109 
     | 
    
         | 
| 
       110 
110 
     | 
    
         
             
                      DIRECTIVE_REGEXP = Regexp.union(MagicComment::KEYWORDS.map do |_, v|
         
     | 
| 
       111 
111 
     | 
    
         
             
                        Regexp.new(v, Regexp::IGNORECASE)
         
     |