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
 
| 
         @@ -0,0 +1,11 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Configuration for InternalAffairs cops. This file will be
         
     | 
| 
      
 2 
     | 
    
         
            +
            # automatically loaded when `rubocop/cop/internal_affairs` is required.
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Only do this when developing custom cops or a RuboCop extension.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            InternalAffairs/CopDescription:
         
     | 
| 
      
 6 
     | 
    
         
            +
              Include:
         
     | 
| 
      
 7 
     | 
    
         
            +
                - 'lib/rubocop/cop/**/*.rb'
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            InternalAffairs/UselessMessageAssertion:
         
     | 
| 
      
 10 
     | 
    
         
            +
              Include:
         
     | 
| 
      
 11 
     | 
    
         
            +
                - '**/*_spec.rb'
         
     | 
    
        data/config/obsoletion.yml
    CHANGED
    
    | 
         @@ -224,6 +224,11 @@ changed_parameters: 
     | 
|
| 
       224 
224 
     | 
    
         
             
                  - AllowedMethods
         
     | 
| 
       225 
225 
     | 
    
         
             
                  - AllowedPatterns
         
     | 
| 
       226 
226 
     | 
    
         
             
                severity: warning
         
     | 
| 
      
 227 
     | 
    
         
            +
              - cops: Style/ArgumentsForwarding
         
     | 
| 
      
 228 
     | 
    
         
            +
                parameters: AllowOnlyRestArgument
         
     | 
| 
      
 229 
     | 
    
         
            +
                reason: "`AllowOnlyRestArgument` has no effect with TargetRubyVersion >= 3.2."
         
     | 
| 
      
 230 
     | 
    
         
            +
                severity: warning
         
     | 
| 
      
 231 
     | 
    
         
            +
                minimum_ruby_version: 3.2
         
     | 
| 
       227 
232 
     | 
    
         | 
| 
       228 
233 
     | 
    
         
             
            # Enforced styles that have been removed or replaced
         
     | 
| 
       229 
234 
     | 
    
         
             
            changed_enforced_styles:
         
     | 
    
        data/exe/rubocop
    CHANGED
    
    | 
         @@ -11,13 +11,14 @@ exit exit_status if server_cli.exit? 
     | 
|
| 
       11 
11 
     | 
    
         
             
            if RuboCop::Server.running?
         
     | 
| 
       12 
12 
     | 
    
         
             
              exit_status = RuboCop::Server::ClientCommand::Exec.new.run
         
     | 
| 
       13 
13 
     | 
    
         
             
            else
         
     | 
| 
       14 
     | 
    
         
            -
              require 'benchmark'
         
     | 
| 
       15 
14 
     | 
    
         
             
              require 'rubocop'
         
     | 
| 
       16 
15 
     | 
    
         | 
| 
       17 
16 
     | 
    
         
             
              cli = RuboCop::CLI.new
         
     | 
| 
       18 
17 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
               
     | 
| 
      
 18 
     | 
    
         
            +
              time_start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
         
     | 
| 
      
 19 
     | 
    
         
            +
              exit_status = cli.run
         
     | 
| 
      
 20 
     | 
    
         
            +
              elapsed_time = Process.clock_gettime(Process::CLOCK_MONOTONIC) - time_start
         
     | 
| 
       20 
21 
     | 
    
         | 
| 
       21 
     | 
    
         
            -
              puts "Finished in #{ 
     | 
| 
      
 22 
     | 
    
         
            +
              puts "Finished in #{elapsed_time} seconds" if cli.options[:debug] || cli.options[:display_time]
         
     | 
| 
       22 
23 
     | 
    
         
             
            end
         
     | 
| 
       23 
24 
     | 
    
         
             
            exit exit_status
         
     | 
    
        data/lib/rubocop/cached_data.rb
    CHANGED
    
    | 
         @@ -45,14 +45,30 @@ module RuboCop 
     | 
|
| 
       45 
45 
     | 
    
         | 
| 
       46 
46 
     | 
    
         
             
                # Restore an offense object loaded from a JSON file.
         
     | 
| 
       47 
47 
     | 
    
         
             
                def deserialize_offenses(offenses)
         
     | 
| 
       48 
     | 
    
         
            -
                  source_buffer = Parser::Source::Buffer.new(@filename)
         
     | 
| 
       49 
     | 
    
         
            -
                  source_buffer.source = File.read(@filename, encoding: Encoding::UTF_8)
         
     | 
| 
       50 
48 
     | 
    
         
             
                  offenses.map! do |o|
         
     | 
| 
       51 
     | 
    
         
            -
                    location =  
     | 
| 
       52 
     | 
    
         
            -
                                                         o['location']['begin_pos'],
         
     | 
| 
       53 
     | 
    
         
            -
                                                         o['location']['end_pos'])
         
     | 
| 
      
 49 
     | 
    
         
            +
                    location = location_from_source_buffer(o)
         
     | 
| 
       54 
50 
     | 
    
         
             
                    Cop::Offense.new(o['severity'], location, o['message'], o['cop_name'], o['status'].to_sym)
         
     | 
| 
       55 
51 
     | 
    
         
             
                  end
         
     | 
| 
       56 
52 
     | 
    
         
             
                end
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                def location_from_source_buffer(offense)
         
     | 
| 
      
 55 
     | 
    
         
            +
                  begin_pos = offense['location']['begin_pos']
         
     | 
| 
      
 56 
     | 
    
         
            +
                  end_pos = offense['location']['end_pos']
         
     | 
| 
      
 57 
     | 
    
         
            +
                  if begin_pos.zero? && end_pos.zero?
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Cop::Offense::NO_LOCATION
         
     | 
| 
      
 59 
     | 
    
         
            +
                  else
         
     | 
| 
      
 60 
     | 
    
         
            +
                    Parser::Source::Range.new(source_buffer, begin_pos, end_pos)
         
     | 
| 
      
 61 
     | 
    
         
            +
                  end
         
     | 
| 
      
 62 
     | 
    
         
            +
                end
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                # Delay creation until needed. Some type of offenses will have no buffer associated with them
         
     | 
| 
      
 65 
     | 
    
         
            +
                # and be global only. For these, trying to create the buffer will likely fail, for example
         
     | 
| 
      
 66 
     | 
    
         
            +
                # because of unknown encoding comments.
         
     | 
| 
      
 67 
     | 
    
         
            +
                def source_buffer
         
     | 
| 
      
 68 
     | 
    
         
            +
                  @source_buffer ||= begin
         
     | 
| 
      
 69 
     | 
    
         
            +
                    source = File.read(@filename, encoding: Encoding::UTF_8)
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Parser::Source::Buffer.new(@filename, source: source)
         
     | 
| 
      
 71 
     | 
    
         
            +
                  end
         
     | 
| 
      
 72 
     | 
    
         
            +
                end
         
     | 
| 
       57 
73 
     | 
    
         
             
              end
         
     | 
| 
       58 
74 
     | 
    
         
             
            end
         
     | 
| 
         @@ -10,13 +10,17 @@ module RuboCop 
     | 
|
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
                    AUTO_GENERATED_FILE = '.rubocop_todo.yml'
         
     | 
| 
       12 
12 
     | 
    
         
             
                    YAML_OPTIONAL_DOC_START = /\A---(\s+#|\s*\z)/.freeze
         
     | 
| 
      
 13 
     | 
    
         
            +
                    PLACEHOLDER = '###rubocop:inherit_here'
         
     | 
| 
       13 
14 
     | 
    
         | 
| 
       14 
15 
     | 
    
         
             
                    PHASE_1 = 'Phase 1 of 2: run Layout/LineLength cop'
         
     | 
| 
       15 
16 
     | 
    
         
             
                    PHASE_2 = 'Phase 2 of 2: run all cops'
         
     | 
| 
       16 
17 
     | 
    
         | 
| 
       17 
18 
     | 
    
         
             
                    PHASE_1_OVERRIDDEN = '(skipped because the default Layout/LineLength:Max is overridden)'
         
     | 
| 
       18 
19 
     | 
    
         
             
                    PHASE_1_DISABLED = '(skipped because Layout/LineLength is disabled)'
         
     | 
| 
       19 
     | 
    
         
            -
                     
     | 
| 
      
 20 
     | 
    
         
            +
                    PHASE_1_SKIPPED_ONLY_COPS =
         
     | 
| 
      
 21 
     | 
    
         
            +
                      '(skipped because a list of cops is passed to the `--only` flag)'
         
     | 
| 
      
 22 
     | 
    
         
            +
                    PHASE_1_SKIPPED_ONLY_EXCLUDE =
         
     | 
| 
      
 23 
     | 
    
         
            +
                      '(skipped because only excludes will be generated due to `--auto-gen-only-exclude` flag)'
         
     | 
| 
       20 
24 
     | 
    
         | 
| 
       21 
25 
     | 
    
         
             
                    def run
         
     | 
| 
       22 
26 
     | 
    
         
             
                      add_formatter
         
     | 
| 
         @@ -28,12 +32,14 @@ module RuboCop 
     | 
|
| 
       28 
32 
     | 
    
         
             
                    private
         
     | 
| 
       29 
33 
     | 
    
         | 
| 
       30 
34 
     | 
    
         
             
                    def maybe_run_line_length_cop
         
     | 
| 
       31 
     | 
    
         
            -
                      if  
     | 
| 
      
 35 
     | 
    
         
            +
                      if only_exclude?
         
     | 
| 
      
 36 
     | 
    
         
            +
                        skip_line_length_cop(PHASE_1_SKIPPED_ONLY_EXCLUDE)
         
     | 
| 
      
 37 
     | 
    
         
            +
                      elsif !line_length_enabled?(@config_store.for_pwd)
         
     | 
| 
       32 
38 
     | 
    
         
             
                        skip_line_length_cop(PHASE_1_DISABLED)
         
     | 
| 
       33 
39 
     | 
    
         
             
                      elsif !same_max_line_length?(@config_store.for_pwd, ConfigLoader.default_configuration)
         
     | 
| 
       34 
40 
     | 
    
         
             
                        skip_line_length_cop(PHASE_1_OVERRIDDEN)
         
     | 
| 
       35 
41 
     | 
    
         
             
                      elsif options_has_only_flag?
         
     | 
| 
       36 
     | 
    
         
            -
                        skip_line_length_cop( 
     | 
| 
      
 42 
     | 
    
         
            +
                        skip_line_length_cop(PHASE_1_SKIPPED_ONLY_COPS)
         
     | 
| 
       37 
43 
     | 
    
         
             
                      else
         
     | 
| 
       38 
44 
     | 
    
         
             
                        run_line_length_cop
         
     | 
| 
       39 
45 
     | 
    
         
             
                      end
         
     | 
| 
         @@ -64,6 +70,10 @@ module RuboCop 
     | 
|
| 
       64 
70 
     | 
    
         
             
                      @options[:only]
         
     | 
| 
       65 
71 
     | 
    
         
             
                    end
         
     | 
| 
       66 
72 
     | 
    
         | 
| 
      
 73 
     | 
    
         
            +
                    def only_exclude?
         
     | 
| 
      
 74 
     | 
    
         
            +
                      @options[:auto_gen_only_exclude]
         
     | 
| 
      
 75 
     | 
    
         
            +
                    end
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
       67 
77 
     | 
    
         
             
                    # Do an initial run with only Layout/LineLength so that cops that
         
     | 
| 
       68 
78 
     | 
    
         
             
                    # depend on Layout/LineLength:Max get the correct value for that
         
     | 
| 
       69 
79 
     | 
    
         
             
                    # parameter.
         
     | 
| 
         @@ -125,28 +135,31 @@ module RuboCop 
     | 
|
| 
       125 
135 
     | 
    
         | 
| 
       126 
136 
     | 
    
         
             
                    def existing_configuration(config_file)
         
     | 
| 
       127 
137 
     | 
    
         
             
                      File.read(config_file, encoding: Encoding::UTF_8)
         
     | 
| 
       128 
     | 
    
         
            -
                          .sub(/^inherit_from: *[^\n]+/,  
     | 
| 
       129 
     | 
    
         
            -
                          .sub(/^inherit_from: *(\n *- *[^\n]+)+/,  
     | 
| 
      
 138 
     | 
    
         
            +
                          .sub(/^inherit_from: *[^\n]+/, PLACEHOLDER)
         
     | 
| 
      
 139 
     | 
    
         
            +
                          .sub(/^inherit_from: *(\n *- *[^\n]+)+/, PLACEHOLDER)
         
     | 
| 
       130 
140 
     | 
    
         
             
                    end
         
     | 
| 
       131 
141 
     | 
    
         | 
| 
       132 
142 
     | 
    
         
             
                    def write_config_file(file_name, file_string, rubocop_yml_contents)
         
     | 
| 
       133 
143 
     | 
    
         
             
                      lines = /\S/.match?(rubocop_yml_contents) ? rubocop_yml_contents.split("\n", -1) : []
         
     | 
| 
       134 
     | 
    
         
            -
                       
     | 
| 
       135 
     | 
    
         
            -
             
     | 
| 
       136 
     | 
    
         
            -
             
     | 
| 
      
 144 
     | 
    
         
            +
                      unless rubocop_yml_contents&.include?(PLACEHOLDER)
         
     | 
| 
      
 145 
     | 
    
         
            +
                        doc_start_index = lines.index { |line| YAML_OPTIONAL_DOC_START.match?(line) } || -1
         
     | 
| 
      
 146 
     | 
    
         
            +
                        lines.insert(doc_start_index + 1, PLACEHOLDER)
         
     | 
| 
      
 147 
     | 
    
         
            +
                      end
         
     | 
| 
      
 148 
     | 
    
         
            +
                      File.write(file_name, lines.join("\n")
         
     | 
| 
      
 149 
     | 
    
         
            +
                                                 .sub(/#{PLACEHOLDER}\n*/o, "inherit_from:#{file_string}\n\n")
         
     | 
| 
      
 150 
     | 
    
         
            +
                                                 .sub(/\n\n+\Z/, "\n"))
         
     | 
| 
       137 
151 
     | 
    
         
             
                    end
         
     | 
| 
       138 
152 
     | 
    
         | 
| 
       139 
153 
     | 
    
         
             
                    def relative_path_to_todo_from_options_config
         
     | 
| 
       140 
     | 
    
         
            -
                      return AUTO_GENERATED_FILE  
     | 
| 
      
 154 
     | 
    
         
            +
                      return AUTO_GENERATED_FILE unless @options[:config]
         
     | 
| 
       141 
155 
     | 
    
         | 
| 
       142 
     | 
    
         
            -
                      base = Pathname.new( 
     | 
| 
       143 
     | 
    
         
            -
                      config_dir = Pathname.new( 
     | 
| 
      
 156 
     | 
    
         
            +
                      base = Pathname.new(Dir.pwd)
         
     | 
| 
      
 157 
     | 
    
         
            +
                      config_dir = Pathname.new(@options[:config]).realpath.dirname
         
     | 
| 
       144 
158 
     | 
    
         | 
| 
       145 
     | 
    
         
            -
                       
     | 
| 
       146 
     | 
    
         
            -
             
     | 
| 
      
 159 
     | 
    
         
            +
                      # Don't have the path start with `/`
         
     | 
| 
      
 160 
     | 
    
         
            +
                      return AUTO_GENERATED_FILE if config_dir == base
         
     | 
| 
       147 
161 
     | 
    
         | 
| 
       148 
     | 
    
         
            -
             
     | 
| 
       149 
     | 
    
         
            -
                      File.dirname(@options[:config]) == '.'
         
     | 
| 
      
 162 
     | 
    
         
            +
                      "#{base.relative_path_from(config_dir)}/#{AUTO_GENERATED_FILE}"
         
     | 
| 
       150 
163 
     | 
    
         
             
                    end
         
     | 
| 
       151 
164 
     | 
    
         
             
                  end
         
     | 
| 
       152 
165 
     | 
    
         
             
                end
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module RuboCop
         
     | 
| 
      
 4 
     | 
    
         
            +
              class CLI
         
     | 
| 
      
 5 
     | 
    
         
            +
                module Command
         
     | 
| 
      
 6 
     | 
    
         
            +
                  # Start Language Server Protocol of RuboCop.
         
     | 
| 
      
 7 
     | 
    
         
            +
                  # @api private
         
     | 
| 
      
 8 
     | 
    
         
            +
                  class LSP < Base
         
     | 
| 
      
 9 
     | 
    
         
            +
                    self.command_name = :lsp
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                    def run
         
     | 
| 
      
 12 
     | 
    
         
            +
                      # Load on demand, `languge-server-protocol` is heavy to require.
         
     | 
| 
      
 13 
     | 
    
         
            +
                      require_relative '../../lsp/server'
         
     | 
| 
      
 14 
     | 
    
         
            +
                      RuboCop::LSP::Server.new(@config_store).start
         
     | 
| 
      
 15 
     | 
    
         
            +
                    end
         
     | 
| 
      
 16 
     | 
    
         
            +
                  end
         
     | 
| 
      
 17 
     | 
    
         
            +
                end
         
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -26,10 +26,10 @@ module RuboCop 
     | 
|
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
                      cops_array.each do |cop_name|
         
     | 
| 
       28 
28 
     | 
    
         
             
                        cop = registry_hash[cop_name]
         
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
29 
     | 
    
         
             
                        next if cop.empty?
         
     | 
| 
       31 
30 
     | 
    
         | 
| 
       32 
     | 
    
         
            -
                         
     | 
| 
      
 31 
     | 
    
         
            +
                        url = Cop::Documentation.url_for(cop.first, @config)
         
     | 
| 
      
 32 
     | 
    
         
            +
                        puts url if url
         
     | 
| 
       33 
33 
     | 
    
         
             
                      end
         
     | 
| 
       34 
34 
     | 
    
         | 
| 
       35 
35 
     | 
    
         
             
                      puts
         
     | 
| 
         @@ -9,8 +9,8 @@ module RuboCop 
     | 
|
| 
       9 
9 
     | 
    
         
             
                    self.command_name = :version
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
                    def run
         
     | 
| 
       12 
     | 
    
         
            -
                      puts RuboCop::Version 
     | 
| 
       13 
     | 
    
         
            -
                      puts RuboCop::Version. 
     | 
| 
      
 12 
     | 
    
         
            +
                      puts RuboCop::Version::STRING if @options[:version]
         
     | 
| 
      
 13 
     | 
    
         
            +
                      puts RuboCop::Version.verbose(env: env) if @options[:verbose_version]
         
     | 
| 
       14 
14 
     | 
    
         
             
                    end
         
     | 
| 
       15 
15 
     | 
    
         
             
                  end
         
     | 
| 
       16 
16 
     | 
    
         
             
                end
         
     | 
    
        data/lib/rubocop/cli.rb
    CHANGED
    
    | 
         @@ -11,8 +11,8 @@ module RuboCop 
     | 
|
| 
       11 
11 
     | 
    
         
             
                STATUS_ERROR       = 2
         
     | 
| 
       12 
12 
     | 
    
         
             
                STATUS_INTERRUPTED = Signal.list['INT'] + 128
         
     | 
| 
       13 
13 
     | 
    
         
             
                DEFAULT_PARALLEL_OPTIONS = %i[
         
     | 
| 
       14 
     | 
    
         
            -
                  color debug display_style_guide display_time display_only_fail_level_offenses
         
     | 
| 
       15 
     | 
    
         
            -
                  display_only_failed except extra_details fail_level fix_layout format
         
     | 
| 
      
 14 
     | 
    
         
            +
                  color config debug display_style_guide display_time display_only_fail_level_offenses
         
     | 
| 
      
 15 
     | 
    
         
            +
                  display_only_failed editor_mode except extra_details fail_level fix_layout format
         
     | 
| 
       16 
16 
     | 
    
         
             
                  ignore_disable_comments lint only only_guide_cops require safe
         
     | 
| 
       17 
17 
     | 
    
         
             
                  autocorrect safe_autocorrect autocorrect_all
         
     | 
| 
       18 
18 
     | 
    
         
             
                ].freeze
         
     | 
| 
         @@ -57,6 +57,10 @@ module RuboCop 
     | 
|
| 
       57 
57 
     | 
    
         
             
                rescue RuboCop::Error => e
         
     | 
| 
       58 
58 
     | 
    
         
             
                  warn Rainbow("Error: #{e.message}").red
         
     | 
| 
       59 
59 
     | 
    
         
             
                  STATUS_ERROR
         
     | 
| 
      
 60 
     | 
    
         
            +
                rescue Interrupt
         
     | 
| 
      
 61 
     | 
    
         
            +
                  warn ''
         
     | 
| 
      
 62 
     | 
    
         
            +
                  warn 'Exiting...'
         
     | 
| 
      
 63 
     | 
    
         
            +
                  STATUS_INTERRUPTED
         
     | 
| 
       60 
64 
     | 
    
         
             
                rescue Finished
         
     | 
| 
       61 
65 
     | 
    
         
             
                  STATUS_SUCCESS
         
     | 
| 
       62 
66 
     | 
    
         
             
                rescue OptionParser::InvalidOption => e
         
     | 
| 
         @@ -151,6 +155,7 @@ module RuboCop 
     | 
|
| 
       151 
155 
     | 
    
         | 
| 
       152 
156 
     | 
    
         
             
                def act_on_options
         
     | 
| 
       153 
157 
     | 
    
         
             
                  set_options_to_config_loader
         
     | 
| 
      
 158 
     | 
    
         
            +
                  handle_editor_mode
         
     | 
| 
       154 
159 
     | 
    
         | 
| 
       155 
160 
     | 
    
         
             
                  @config_store.options_config = @options[:config] if @options[:config]
         
     | 
| 
       156 
161 
     | 
    
         
             
                  @config_store.force_default_config! if @options[:force_default_config]
         
     | 
| 
         @@ -174,14 +179,21 @@ module RuboCop 
     | 
|
| 
       174 
179 
     | 
    
         
             
                  ConfigLoader.ignore_unrecognized_cops = @options[:ignore_unrecognized_cops]
         
     | 
| 
       175 
180 
     | 
    
         
             
                end
         
     | 
| 
       176 
181 
     | 
    
         | 
| 
      
 182 
     | 
    
         
            +
                def handle_editor_mode
         
     | 
| 
      
 183 
     | 
    
         
            +
                  RuboCop::LSP.enable if @options[:editor_mode]
         
     | 
| 
      
 184 
     | 
    
         
            +
                end
         
     | 
| 
      
 185 
     | 
    
         
            +
             
     | 
| 
      
 186 
     | 
    
         
            +
                # rubocop:disable Metrics/CyclomaticComplexity
         
     | 
| 
       177 
187 
     | 
    
         
             
                def handle_exiting_options
         
     | 
| 
       178 
188 
     | 
    
         
             
                  return unless Options::EXITING_OPTIONS.any? { |o| @options.key? o }
         
     | 
| 
       179 
189 
     | 
    
         | 
| 
       180 
190 
     | 
    
         
             
                  run_command(:version) if @options[:version] || @options[:verbose_version]
         
     | 
| 
       181 
191 
     | 
    
         
             
                  run_command(:show_cops) if @options[:show_cops]
         
     | 
| 
       182 
192 
     | 
    
         
             
                  run_command(:show_docs_url) if @options[:show_docs_url]
         
     | 
| 
      
 193 
     | 
    
         
            +
                  run_command(:lsp) if @options[:lsp]
         
     | 
| 
       183 
194 
     | 
    
         
             
                  raise Finished
         
     | 
| 
       184 
195 
     | 
    
         
             
                end
         
     | 
| 
      
 196 
     | 
    
         
            +
                # rubocop:enable Metrics/CyclomaticComplexity
         
     | 
| 
       185 
197 
     | 
    
         | 
| 
       186 
198 
     | 
    
         
             
                def apply_default_formatter
         
     | 
| 
       187 
199 
     | 
    
         
             
                  # This must be done after the options have already been processed,
         
     | 
| 
         @@ -4,7 +4,7 @@ module RuboCop 
     | 
|
| 
       4 
4 
     | 
    
         
             
              # This class parses the special `rubocop:disable` comments in a source
         
     | 
| 
       5 
5 
     | 
    
         
             
              # and provides a way to check if each cop is enabled at arbitrary line.
         
     | 
| 
       6 
6 
     | 
    
         
             
              class CommentConfig
         
     | 
| 
       7 
     | 
    
         
            -
                extend  
     | 
| 
      
 7 
     | 
    
         
            +
                extend SimpleForwardable
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
                CONFIG_DISABLED_LINE_RANGE_MIN = -Float::INFINITY
         
     | 
| 
       10 
10 
     | 
    
         | 
    
        data/lib/rubocop/config.rb
    CHANGED
    
    | 
         @@ -1,7 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # frozen_string_literal: true
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
            require 'pathname'
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
3 
     | 
    
         
             
            # FIXME: Moving Rails department code to RuboCop Rails will remove
         
     | 
| 
       6 
4 
     | 
    
         
             
            # the following rubocop:disable comment.
         
     | 
| 
       7 
5 
     | 
    
         
             
            # rubocop:disable Metrics/ClassLength
         
     | 
| 
         @@ -14,7 +12,7 @@ module RuboCop 
     | 
|
| 
       14 
12 
     | 
    
         
             
              class Config
         
     | 
| 
       15 
13 
     | 
    
         
             
                include PathUtil
         
     | 
| 
       16 
14 
     | 
    
         
             
                include FileFinder
         
     | 
| 
       17 
     | 
    
         
            -
                extend  
     | 
| 
      
 15 
     | 
    
         
            +
                extend SimpleForwardable
         
     | 
| 
       18 
16 
     | 
    
         | 
| 
       19 
17 
     | 
    
         
             
                CopConfig = Struct.new(:name, :metadata)
         
     | 
| 
       20 
18 
     | 
    
         | 
| 
         @@ -173,6 +171,10 @@ module RuboCop 
     | 
|
| 
       173 
171 
     | 
    
         
             
                  for_all_cops['ActiveSupportExtensionsEnabled']
         
     | 
| 
       174 
172 
     | 
    
         
             
                end
         
     | 
| 
       175 
173 
     | 
    
         | 
| 
      
 174 
     | 
    
         
            +
                def string_literals_frozen_by_default?
         
     | 
| 
      
 175 
     | 
    
         
            +
                  for_all_cops['StringLiteralsFrozenByDefault']
         
     | 
| 
      
 176 
     | 
    
         
            +
                end
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
       176 
178 
     | 
    
         
             
                def file_to_include?(file)
         
     | 
| 
       177 
179 
     | 
    
         
             
                  relative_file_path = path_relative_to_config(file)
         
     | 
| 
       178 
180 
     | 
    
         | 
| 
         @@ -246,6 +248,10 @@ module RuboCop 
     | 
|
| 
       246 
248 
     | 
    
         
             
                    end
         
     | 
| 
       247 
249 
     | 
    
         
             
                end
         
     | 
| 
       248 
250 
     | 
    
         | 
| 
      
 251 
     | 
    
         
            +
                def parser_engine
         
     | 
| 
      
 252 
     | 
    
         
            +
                  @parser_engine ||= for_all_cops.fetch('ParserEngine', :parser_whitequark).to_sym
         
     | 
| 
      
 253 
     | 
    
         
            +
                end
         
     | 
| 
      
 254 
     | 
    
         
            +
             
     | 
| 
       249 
255 
     | 
    
         
             
                def target_rails_version
         
     | 
| 
       250 
256 
     | 
    
         
             
                  @target_rails_version ||=
         
     | 
| 
       251 
257 
     | 
    
         
             
                    if for_all_cops['TargetRailsVersion']
         
     | 
| 
         @@ -261,6 +267,7 @@ module RuboCop 
     | 
|
| 
       261 
267 
     | 
    
         
             
                  PathUtil.smart_path(@loaded_path)
         
     | 
| 
       262 
268 
     | 
    
         
             
                end
         
     | 
| 
       263 
269 
     | 
    
         | 
| 
      
 270 
     | 
    
         
            +
                # @return [String, nil]
         
     | 
| 
       264 
271 
     | 
    
         
             
                def bundler_lock_file_path
         
     | 
| 
       265 
272 
     | 
    
         
             
                  return nil unless loaded_path
         
     | 
| 
       266 
273 
     | 
    
         | 
| 
         @@ -284,23 +291,48 @@ module RuboCop 
     | 
|
| 
       284 
291 
     | 
    
         
             
                  end
         
     | 
| 
       285 
292 
     | 
    
         
             
                end
         
     | 
| 
       286 
293 
     | 
    
         | 
| 
      
 294 
     | 
    
         
            +
                # Returns target's locked gem versions (i.e. from Gemfile.lock or gems.locked)
         
     | 
| 
      
 295 
     | 
    
         
            +
                # @returns [Hash{String => Gem::Version}] The locked gem versions, keyed by the gems' names.
         
     | 
| 
      
 296 
     | 
    
         
            +
                def gem_versions_in_target
         
     | 
| 
      
 297 
     | 
    
         
            +
                  @gem_versions_in_target ||= read_gem_versions_from_target_lockfile
         
     | 
| 
      
 298 
     | 
    
         
            +
                end
         
     | 
| 
      
 299 
     | 
    
         
            +
             
     | 
| 
      
 300 
     | 
    
         
            +
                def inspect # :nodoc:
         
     | 
| 
      
 301 
     | 
    
         
            +
                  "#<#{self.class.name}:#{object_id} @loaded_path=#{loaded_path}>"
         
     | 
| 
      
 302 
     | 
    
         
            +
                end
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
       287 
304 
     | 
    
         
             
                private
         
     | 
| 
       288 
305 
     | 
    
         | 
| 
      
 306 
     | 
    
         
            +
                # @return [Float, nil] The Rails version as a `major.minor` Float.
         
     | 
| 
       289 
307 
     | 
    
         
             
                def target_rails_version_from_bundler_lock_file
         
     | 
| 
       290 
308 
     | 
    
         
             
                  @target_rails_version_from_bundler_lock_file ||= read_rails_version_from_bundler_lock_file
         
     | 
| 
       291 
309 
     | 
    
         
             
                end
         
     | 
| 
       292 
310 
     | 
    
         | 
| 
      
 311 
     | 
    
         
            +
                # @return [Float, nil] The Rails version as a `major.minor` Float.
         
     | 
| 
       293 
312 
     | 
    
         
             
                def read_rails_version_from_bundler_lock_file
         
     | 
| 
       294 
     | 
    
         
            -
                   
     | 
| 
       295 
     | 
    
         
            -
             
     | 
| 
       296 
     | 
    
         
            -
             
     | 
| 
       297 
     | 
    
         
            -
                   
     | 
| 
       298 
     | 
    
         
            -
             
     | 
| 
       299 
     | 
    
         
            -
             
     | 
| 
       300 
     | 
    
         
            -
             
     | 
| 
       301 
     | 
    
         
            -
             
     | 
| 
       302 
     | 
    
         
            -
             
     | 
| 
       303 
     | 
    
         
            -
             
     | 
| 
      
 313 
     | 
    
         
            +
                  return nil unless gem_versions_in_target
         
     | 
| 
      
 314 
     | 
    
         
            +
             
     | 
| 
      
 315 
     | 
    
         
            +
                  # Look for `railties` instead of `rails`, to support apps that only use a subset of `rails`
         
     | 
| 
      
 316 
     | 
    
         
            +
                  # See https://github.com/rubocop/rubocop/pull/11289
         
     | 
| 
      
 317 
     | 
    
         
            +
                  rails_version_in_target = gem_versions_in_target['railties']
         
     | 
| 
      
 318 
     | 
    
         
            +
                  return nil unless rails_version_in_target
         
     | 
| 
      
 319 
     | 
    
         
            +
             
     | 
| 
      
 320 
     | 
    
         
            +
                  gem_version_to_major_minor_float(rails_version_in_target)
         
     | 
| 
      
 321 
     | 
    
         
            +
                end
         
     | 
| 
      
 322 
     | 
    
         
            +
             
     | 
| 
      
 323 
     | 
    
         
            +
                # @param [Gem::Version] gem_version an object like `Gem::Version.new("7.1.2.3")`
         
     | 
| 
      
 324 
     | 
    
         
            +
                # @return [Float] The major and minor version, like `7.1`
         
     | 
| 
      
 325 
     | 
    
         
            +
                def gem_version_to_major_minor_float(gem_version)
         
     | 
| 
      
 326 
     | 
    
         
            +
                  segments = gem_version.segments
         
     | 
| 
      
 327 
     | 
    
         
            +
                  Float("#{segments[0]}.#{segments[1]}")
         
     | 
| 
      
 328 
     | 
    
         
            +
                end
         
     | 
| 
      
 329 
     | 
    
         
            +
             
     | 
| 
      
 330 
     | 
    
         
            +
                # @returns [Hash{String => Gem::Version}] The locked gem versions, keyed by the gems' names.
         
     | 
| 
      
 331 
     | 
    
         
            +
                def read_gem_versions_from_target_lockfile
         
     | 
| 
      
 332 
     | 
    
         
            +
                  lockfile_path = bundler_lock_file_path
         
     | 
| 
      
 333 
     | 
    
         
            +
                  return nil unless lockfile_path
         
     | 
| 
      
 334 
     | 
    
         
            +
             
     | 
| 
      
 335 
     | 
    
         
            +
                  Lockfile.new(lockfile_path).gem_versions
         
     | 
| 
       304 
336 
     | 
    
         
             
                end
         
     | 
| 
       305 
337 
     | 
    
         | 
| 
       306 
338 
     | 
    
         
             
                def enable_cop?(qualified_cop_name, cop_options)
         
     | 
| 
         @@ -17,8 +17,8 @@ module RuboCop 
     | 
|
| 
       17 
17 
     | 
    
         
             
                  attr_writer :project_root
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
                  def find_config_path(target_dir)
         
     | 
| 
       20 
     | 
    
         
            -
                    find_project_dotfile(target_dir) ||  
     | 
| 
       21 
     | 
    
         
            -
                      DEFAULT_FILE
         
     | 
| 
      
 20 
     | 
    
         
            +
                    find_project_dotfile(target_dir) || find_project_root_dot_config ||
         
     | 
| 
      
 21 
     | 
    
         
            +
                      find_user_dotfile || find_user_xdg_config || DEFAULT_FILE
         
     | 
| 
       22 
22 
     | 
    
         
             
                  end
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Returns the path RuboCop inferred as the root of the project. No file
         
     | 
| 
         @@ -41,19 +41,29 @@ module RuboCop 
     | 
|
| 
       41 
41 
     | 
    
         
             
                    find_file_upwards(DOTFILE, target_dir, project_root)
         
     | 
| 
       42 
42 
     | 
    
         
             
                  end
         
     | 
| 
       43 
43 
     | 
    
         | 
| 
      
 44 
     | 
    
         
            +
                  def find_project_root_dot_config
         
     | 
| 
      
 45 
     | 
    
         
            +
                    return unless project_root
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                    dotfile = File.join(project_root, '.config', DOTFILE)
         
     | 
| 
      
 48 
     | 
    
         
            +
                    return dotfile if File.exist?(dotfile)
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                    xdg_config = File.join(project_root, '.config', 'rubocop', XDG_CONFIG)
         
     | 
| 
      
 51 
     | 
    
         
            +
                    xdg_config if File.exist?(xdg_config)
         
     | 
| 
      
 52 
     | 
    
         
            +
                  end
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
       44 
54 
     | 
    
         
             
                  def find_user_dotfile
         
     | 
| 
       45 
55 
     | 
    
         
             
                    return unless ENV.key?('HOME')
         
     | 
| 
       46 
56 
     | 
    
         | 
| 
       47 
57 
     | 
    
         
             
                    file = File.join(Dir.home, DOTFILE)
         
     | 
| 
       48 
58 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
                     
     | 
| 
      
 59 
     | 
    
         
            +
                    file if File.exist?(file)
         
     | 
| 
       50 
60 
     | 
    
         
             
                  end
         
     | 
| 
       51 
61 
     | 
    
         | 
| 
       52 
62 
     | 
    
         
             
                  def find_user_xdg_config
         
     | 
| 
       53 
63 
     | 
    
         
             
                    xdg_config_home = expand_path(ENV.fetch('XDG_CONFIG_HOME', '~/.config'))
         
     | 
| 
       54 
64 
     | 
    
         
             
                    xdg_config = File.join(xdg_config_home, 'rubocop', XDG_CONFIG)
         
     | 
| 
       55 
65 
     | 
    
         | 
| 
       56 
     | 
    
         
            -
                     
     | 
| 
      
 66 
     | 
    
         
            +
                    xdg_config if File.exist?(xdg_config)
         
     | 
| 
       57 
67 
     | 
    
         
             
                  end
         
     | 
| 
       58 
68 
     | 
    
         | 
| 
       59 
69 
     | 
    
         
             
                  def expand_path(path)
         
     | 
| 
         @@ -1,7 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # frozen_string_literal: true
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            require 'erb'
         
     | 
| 
       4 
     | 
    
         
            -
            require 'pathname'
         
     | 
| 
       5 
4 
     | 
    
         
             
            require 'yaml'
         
     | 
| 
       6 
5 
     | 
    
         
             
            require_relative 'config_finder'
         
     | 
| 
       7 
6 
     | 
    
         | 
| 
         @@ -68,8 +67,8 @@ module RuboCop 
     | 
|
| 
       68 
67 
     | 
    
         
             
                  def load_yaml_configuration(absolute_path)
         
     | 
| 
       69 
68 
     | 
    
         
             
                    file_contents = read_file(absolute_path)
         
     | 
| 
       70 
69 
     | 
    
         
             
                    yaml_code = Dir.chdir(File.dirname(absolute_path)) { ERB.new(file_contents).result }
         
     | 
| 
       71 
     | 
    
         
            -
                    check_duplication(yaml_code, absolute_path)
         
     | 
| 
       72 
     | 
    
         
            -
                    hash =  
     | 
| 
      
 70 
     | 
    
         
            +
                    yaml_tree = check_duplication(yaml_code, absolute_path)
         
     | 
| 
      
 71 
     | 
    
         
            +
                    hash = yaml_tree_to_hash(yaml_tree) || {}
         
     | 
| 
       73 
72 
     | 
    
         | 
| 
       74 
73 
     | 
    
         
             
                    puts "configuration from #{absolute_path}" if debug?
         
     | 
| 
       75 
74 
     | 
    
         | 
| 
         @@ -165,7 +164,7 @@ module RuboCop 
     | 
|
| 
       165 
164 
     | 
    
         
             
                  # searches will go past this directory.
         
     | 
| 
       166 
165 
     | 
    
         
             
                  # @deprecated Use `RuboCop::ConfigFinder.project_root` instead.
         
     | 
| 
       167 
166 
     | 
    
         
             
                  def project_root
         
     | 
| 
       168 
     | 
    
         
            -
                    warn Rainbow(<<~WARNING).yellow
         
     | 
| 
      
 167 
     | 
    
         
            +
                    warn Rainbow(<<~WARNING).yellow, uplevel: 1
         
     | 
| 
       169 
168 
     | 
    
         
             
                      `RuboCop::ConfigLoader.project_root` is deprecated and will be removed in RuboCop 2.0. \
         
     | 
| 
       170 
169 
     | 
    
         
             
                      Use `RuboCop::ConfigFinder.project_root` instead.
         
     | 
| 
       171 
170 
     | 
    
         
             
                    WARNING
         
     | 
| 
         @@ -236,8 +235,8 @@ module RuboCop 
     | 
|
| 
       236 
235 
     | 
    
         
             
                    raise ConfigNotFoundError, "Configuration file not found: #{absolute_path}"
         
     | 
| 
       237 
236 
     | 
    
         
             
                  end
         
     | 
| 
       238 
237 
     | 
    
         | 
| 
       239 
     | 
    
         
            -
                  def  
     | 
| 
       240 
     | 
    
         
            -
                     
     | 
| 
      
 238 
     | 
    
         
            +
                  def yaml_tree_to_hash(yaml_tree)
         
     | 
| 
      
 239 
     | 
    
         
            +
                    yaml_tree_to_hash!(yaml_tree)
         
     | 
| 
       241 
240 
     | 
    
         
             
                  rescue ::StandardError
         
     | 
| 
       242 
241 
     | 
    
         
             
                    if defined?(::SafeYAML)
         
     | 
| 
       243 
242 
     | 
    
         
             
                      raise 'SafeYAML is unmaintained, no longer needed and should be removed'
         
     | 
| 
         @@ -246,10 +245,16 @@ module RuboCop 
     | 
|
| 
       246 
245 
     | 
    
         
             
                    raise
         
     | 
| 
       247 
246 
     | 
    
         
             
                  end
         
     | 
| 
       248 
247 
     | 
    
         | 
| 
       249 
     | 
    
         
            -
                  def  
     | 
| 
       250 
     | 
    
         
            -
                     
     | 
| 
       251 
     | 
    
         
            -
             
     | 
| 
       252 
     | 
    
         
            -
                     
     | 
| 
      
 248 
     | 
    
         
            +
                  def yaml_tree_to_hash!(yaml_tree)
         
     | 
| 
      
 249 
     | 
    
         
            +
                    return nil unless yaml_tree
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
                    # Optimization: Because we checked for duplicate keys, we already have the
         
     | 
| 
      
 252 
     | 
    
         
            +
                    # yaml tree and don't need to parse it again.
         
     | 
| 
      
 253 
     | 
    
         
            +
                    # Also see https://github.com/ruby/psych/blob/v5.1.2/lib/psych.rb#L322-L336
         
     | 
| 
      
 254 
     | 
    
         
            +
                    class_loader = YAML::ClassLoader::Restricted.new(%w[Regexp Symbol], [])
         
     | 
| 
      
 255 
     | 
    
         
            +
                    scanner = YAML::ScalarScanner.new(class_loader)
         
     | 
| 
      
 256 
     | 
    
         
            +
                    visitor = YAML::Visitors::ToRuby.new(scanner, class_loader)
         
     | 
| 
      
 257 
     | 
    
         
            +
                    visitor.accept(yaml_tree)
         
     | 
| 
       253 
258 
     | 
    
         
             
                  end
         
     | 
| 
       254 
259 
     | 
    
         
             
                end
         
     | 
| 
       255 
260 
     | 
    
         | 
| 
         @@ -6,7 +6,7 @@ require 'yaml' 
     | 
|
| 
       6 
6 
     | 
    
         
             
            module RuboCop
         
     | 
| 
       7 
7 
     | 
    
         
             
              # A help class for ConfigLoader that handles configuration resolution.
         
     | 
| 
       8 
8 
     | 
    
         
             
              # @api private
         
     | 
| 
       9 
     | 
    
         
            -
              class ConfigLoaderResolver
         
     | 
| 
      
 9 
     | 
    
         
            +
              class ConfigLoaderResolver # rubocop:disable Metrics/ClassLength
         
     | 
| 
       10 
10 
     | 
    
         
             
                def resolve_requires(path, hash)
         
     | 
| 
       11 
11 
     | 
    
         
             
                  config_dir = File.dirname(path)
         
     | 
| 
       12 
12 
     | 
    
         
             
                  hash.delete('require').tap do |loaded_features|
         
     | 
| 
         @@ -33,7 +33,7 @@ module RuboCop 
     | 
|
| 
       33 
33 
     | 
    
         
             
                                  inherit_mode: determine_inherit_mode(hash, k))
         
     | 
| 
       34 
34 
     | 
    
         
             
                      end
         
     | 
| 
       35 
35 
     | 
    
         
             
                      hash[k] = v
         
     | 
| 
       36 
     | 
    
         
            -
                      fix_include_paths(base_config.loaded_path, hash, k, v) if v.key?('Include')
         
     | 
| 
      
 36 
     | 
    
         
            +
                      fix_include_paths(base_config.loaded_path, hash, path, k, v) if v.key?('Include')
         
     | 
| 
       37 
37 
     | 
    
         
             
                    end
         
     | 
| 
       38 
38 
     | 
    
         
             
                  end
         
     | 
| 
       39 
39 
     | 
    
         
             
                end
         
     | 
| 
         @@ -42,12 +42,13 @@ module RuboCop 
     | 
|
| 
       42 
42 
     | 
    
         
             
                # base configuration are relative to the directory where the base configuration file is. For the
         
     | 
| 
       43 
43 
     | 
    
         
             
                # derived configuration, we need to make those paths relative to where the derived configuration
         
     | 
| 
       44 
44 
     | 
    
         
             
                # file is.
         
     | 
| 
       45 
     | 
    
         
            -
                def fix_include_paths(base_config_path, hash, key, value)
         
     | 
| 
      
 45 
     | 
    
         
            +
                def fix_include_paths(base_config_path, hash, path, key, value)
         
     | 
| 
       46 
46 
     | 
    
         
             
                  return unless File.basename(base_config_path).start_with?('.rubocop')
         
     | 
| 
       47 
47 
     | 
    
         | 
| 
       48 
48 
     | 
    
         
             
                  base_dir = File.dirname(base_config_path)
         
     | 
| 
      
 49 
     | 
    
         
            +
                  derived_dir = File.dirname(path)
         
     | 
| 
       49 
50 
     | 
    
         
             
                  hash[key]['Include'] = value['Include'].map do |include_path|
         
     | 
| 
       50 
     | 
    
         
            -
                    PathUtil.relative_path(File.join(base_dir, include_path),  
     | 
| 
      
 51 
     | 
    
         
            +
                    PathUtil.relative_path(File.join(base_dir, include_path), derived_dir)
         
     | 
| 
       51 
52 
     | 
    
         
             
                  end
         
     | 
| 
       52 
53 
     | 
    
         
             
                end
         
     | 
| 
       53 
54 
     | 
    
         | 
| 
         @@ -165,7 +166,7 @@ module RuboCop 
     | 
|
| 
       165 
166 
     | 
    
         
             
                  return unless duplicate_setting?(base_hash, derived_hash, key, opts[:inherited_file])
         
     | 
| 
       166 
167 
     | 
    
         | 
| 
       167 
168 
     | 
    
         
             
                  inherit_mode = opts[:inherit_mode]['merge'] || opts[:inherit_mode]['override']
         
     | 
| 
       168 
     | 
    
         
            -
                  return if base_hash[key].is_a?(Array) && inherit_mode 
     | 
| 
      
 169 
     | 
    
         
            +
                  return if base_hash[key].is_a?(Array) && inherit_mode&.include?(key)
         
     | 
| 
       169 
170 
     | 
    
         | 
| 
       170 
171 
     | 
    
         
             
                  puts "#{PathUtil.smart_path(opts[:file])}: " \
         
     | 
| 
       171 
172 
     | 
    
         
             
                       "#{opts[:cop_name]}:#{key} overrides " \
         
     | 
| 
         @@ -193,11 +194,11 @@ module RuboCop 
     | 
|
| 
       193 
194 
     | 
    
         
             
                end
         
     | 
| 
       194 
195 
     | 
    
         | 
| 
       195 
196 
     | 
    
         
             
                def should_merge?(mode, key)
         
     | 
| 
       196 
     | 
    
         
            -
                  mode && mode['merge'] 
     | 
| 
      
 197 
     | 
    
         
            +
                  mode && mode['merge']&.include?(key)
         
     | 
| 
       197 
198 
     | 
    
         
             
                end
         
     | 
| 
       198 
199 
     | 
    
         | 
| 
       199 
200 
     | 
    
         
             
                def should_override?(mode, key)
         
     | 
| 
       200 
     | 
    
         
            -
                  mode && mode['override'] 
     | 
| 
      
 201 
     | 
    
         
            +
                  mode && mode['override']&.include?(key)
         
     | 
| 
       201 
202 
     | 
    
         
             
                end
         
     | 
| 
       202 
203 
     | 
    
         | 
| 
       203 
204 
     | 
    
         
             
                def merge_hashes?(base_hash, derived_hash, key)
         
     | 
| 
         @@ -238,8 +239,7 @@ module RuboCop 
     | 
|
| 
       238 
239 
     | 
    
         
             
                end
         
     | 
| 
       239 
240 
     | 
    
         | 
| 
       240 
241 
     | 
    
         
             
                def remote_file?(uri)
         
     | 
| 
       241 
     | 
    
         
            -
                   
     | 
| 
       242 
     | 
    
         
            -
                  /\A#{regex}\z/.match?(uri)
         
     | 
| 
      
 242 
     | 
    
         
            +
                  uri.start_with?('http://', 'https://')
         
     | 
| 
       243 
243 
     | 
    
         
             
                end
         
     | 
| 
       244 
244 
     | 
    
         | 
| 
       245 
245 
     | 
    
         
             
                def handle_disabled_by_default(config, new_default_configuration)
         
     | 
| 
         @@ -266,8 +266,14 @@ module RuboCop 
     | 
|
| 
       266 
266 
     | 
    
         | 
| 
       267 
267 
     | 
    
         
             
                def gem_config_path(gem_name, relative_config_path)
         
     | 
| 
       268 
268 
     | 
    
         
             
                  if defined?(Bundler)
         
     | 
| 
       269 
     | 
    
         
            -
                     
     | 
| 
       270 
     | 
    
         
            -
             
     | 
| 
      
 269 
     | 
    
         
            +
                    begin
         
     | 
| 
      
 270 
     | 
    
         
            +
                      gem = Bundler.load.specs[gem_name].first
         
     | 
| 
      
 271 
     | 
    
         
            +
                      gem_path = gem.full_gem_path if gem
         
     | 
| 
      
 272 
     | 
    
         
            +
                    rescue Bundler::GemfileNotFound
         
     | 
| 
      
 273 
     | 
    
         
            +
                      # No Gemfile found. Bundler may be loaded manually
         
     | 
| 
      
 274 
     | 
    
         
            +
                    rescue Bundler::GitError
         
     | 
| 
      
 275 
     | 
    
         
            +
                      # The Gemfile exists but contains an uninstalled git source
         
     | 
| 
      
 276 
     | 
    
         
            +
                    end
         
     | 
| 
       271 
277 
     | 
    
         
             
                  end
         
     | 
| 
       272 
278 
     | 
    
         | 
| 
       273 
279 
     | 
    
         
             
                  gem_path ||= Gem::Specification.find_by_name(gem_name).gem_dir
         
     | 
| 
         @@ -19,7 +19,7 @@ module RuboCop 
     | 
|
| 
       19 
19 
     | 
    
         
             
                  end
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  def violated?
         
     | 
| 
       22 
     | 
    
         
            -
                    config[cop]&.key?(parameter)
         
     | 
| 
      
 22 
     | 
    
         
            +
                    applies_to_current_ruby_version? && config[cop]&.key?(parameter)
         
     | 
| 
       23 
23 
     | 
    
         
             
                  end
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
25 
     | 
    
         
             
                  def warning?
         
     | 
| 
         @@ -28,6 +28,14 @@ module RuboCop 
     | 
|
| 
       28 
28 
     | 
    
         | 
| 
       29 
29 
     | 
    
         
             
                  private
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
      
 31 
     | 
    
         
            +
                  def applies_to_current_ruby_version?
         
     | 
| 
      
 32 
     | 
    
         
            +
                    minimum_ruby_version = metadata['minimum_ruby_version']
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                    return true unless minimum_ruby_version
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                    config.target_ruby_version >= minimum_ruby_version
         
     | 
| 
      
 37 
     | 
    
         
            +
                  end
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
       31 
39 
     | 
    
         
             
                  def alternative
         
     | 
| 
       32 
40 
     | 
    
         
             
                    metadata['alternative']
         
     | 
| 
       33 
41 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -15,6 +15,8 @@ module RuboCop 
     | 
|
| 
       15 
15 
     | 
    
         
             
                  'changed_parameters' => ChangedParameter,
         
     | 
| 
       16 
16 
     | 
    
         
             
                  'changed_enforced_styles' => ChangedEnforcedStyles
         
     | 
| 
       17 
17 
     | 
    
         
             
                }.freeze
         
     | 
| 
      
 18 
     | 
    
         
            +
                LOAD_RULES_CACHE = {} # rubocop:disable Style/MutableConstant
         
     | 
| 
      
 19 
     | 
    
         
            +
                private_constant :LOAD_RULES_CACHE
         
     | 
| 
       18 
20 
     | 
    
         | 
| 
       19 
21 
     | 
    
         
             
                attr_reader :rules, :warnings
         
     | 
| 
       20 
22 
     | 
    
         | 
| 
         @@ -48,16 +50,17 @@ module RuboCop 
     | 
|
| 
       48 
50 
     | 
    
         
             
                # Default rules for obsoletions are in config/obsoletion.yml
         
     | 
| 
       49 
51 
     | 
    
         
             
                # Additional rules files can be added with `RuboCop::ConfigObsoletion.files << filename`
         
     | 
| 
       50 
52 
     | 
    
         
             
                def load_rules # rubocop:disable Metrics/AbcSize
         
     | 
| 
       51 
     | 
    
         
            -
                  rules = self.class.files 
     | 
| 
       52 
     | 
    
         
            -
                     
     | 
| 
       53 
     | 
    
         
            -
                       
     | 
| 
       54 
     | 
    
         
            -
             
     | 
| 
       55 
     | 
    
         
            -
                         
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
                         
     | 
| 
      
 53 
     | 
    
         
            +
                  rules = LOAD_RULES_CACHE[self.class.files] ||=
         
     | 
| 
      
 54 
     | 
    
         
            +
                    self.class.files.each_with_object({}) do |filename, hash|
         
     | 
| 
      
 55 
     | 
    
         
            +
                      hash.merge!(YAML.safe_load(File.read(filename)) || {}) do |_key, first, second|
         
     | 
| 
      
 56 
     | 
    
         
            +
                        case first
         
     | 
| 
      
 57 
     | 
    
         
            +
                        when Hash
         
     | 
| 
      
 58 
     | 
    
         
            +
                          first.merge(second)
         
     | 
| 
      
 59 
     | 
    
         
            +
                        when Array
         
     | 
| 
      
 60 
     | 
    
         
            +
                          first.concat(second)
         
     | 
| 
      
 61 
     | 
    
         
            +
                        end
         
     | 
| 
       58 
62 
     | 
    
         
             
                      end
         
     | 
| 
       59 
63 
     | 
    
         
             
                    end
         
     | 
| 
       60 
     | 
    
         
            -
                  end
         
     | 
| 
       61 
64 
     | 
    
         | 
| 
       62 
65 
     | 
    
         
             
                  cop_rules = rules.slice(*COP_RULE_CLASSES.keys)
         
     | 
| 
       63 
66 
     | 
    
         
             
                  parameter_rules = rules.slice(*PARAMETER_RULE_CLASSES.keys)
         
     | 
| 
         @@ -68,11 +71,11 @@ module RuboCop 
     | 
|
| 
       68 
71 
     | 
    
         
             
                # Cop rules are keyed by the name of the original cop
         
     | 
| 
       69 
72 
     | 
    
         
             
                def load_cop_rules(rules)
         
     | 
| 
       70 
73 
     | 
    
         
             
                  rules.flat_map do |rule_type, data|
         
     | 
| 
       71 
     | 
    
         
            -
                    data. 
     | 
| 
      
 74 
     | 
    
         
            +
                    data.filter_map do |cop_name, configuration|
         
     | 
| 
       72 
75 
     | 
    
         
             
                      next unless configuration # allow configurations to be disabled with `CopName: ~`
         
     | 
| 
       73 
76 
     | 
    
         | 
| 
       74 
77 
     | 
    
         
             
                      COP_RULE_CLASSES[rule_type].new(@config, cop_name, configuration)
         
     | 
| 
       75 
     | 
    
         
            -
                    end 
     | 
| 
      
 78 
     | 
    
         
            +
                    end
         
     | 
| 
       76 
79 
     | 
    
         
             
                  end
         
     | 
| 
       77 
80 
     | 
    
         
             
                end
         
     | 
| 
       78 
81 
     | 
    
         |