rubocop 1.57.2 → 1.62.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +4 -4
- data/assets/output.css.erb +159 -0
- data/assets/output.html.erb +1 -160
- data/config/default.yml +87 -15
- data/lib/rubocop/cli/command/auto_generate_config.rb +12 -3
- data/lib/rubocop/cli/command/lsp.rb +2 -2
- data/lib/rubocop/cli.rb +6 -1
- data/lib/rubocop/config.rb +4 -2
- data/lib/rubocop/config_finder.rb +12 -2
- data/lib/rubocop/config_loader.rb +0 -1
- data/lib/rubocop/config_obsoletion.rb +11 -8
- data/lib/rubocop/config_validator.rb +14 -7
- data/lib/rubocop/cop/autocorrect_logic.rb +6 -1
- data/lib/rubocop/cop/base.rb +17 -2
- data/lib/rubocop/cop/bundler/gem_comment.rb +2 -2
- 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/exclude_limit.rb +1 -1
- data/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +2 -2
- data/lib/rubocop/cop/gemspec/required_ruby_version.rb +5 -1
- data/lib/rubocop/cop/internal_affairs/example_description.rb +4 -4
- 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 +123 -29
- data/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +34 -0
- data/lib/rubocop/cop/internal_affairs.rb +2 -0
- data/lib/rubocop/cop/layout/argument_alignment.rb +1 -1
- data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +14 -7
- data/lib/rubocop/cop/layout/end_alignment.rb +8 -2
- data/lib/rubocop/cop/layout/extra_spacing.rb +4 -10
- data/lib/rubocop/cop/layout/first_array_element_indentation.rb +22 -7
- data/lib/rubocop/cop/layout/first_parameter_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2 -2
- data/lib/rubocop/cop/layout/heredoc_indentation.rb +1 -1
- data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +1 -1
- data/lib/rubocop/cop/layout/redundant_line_break.rb +16 -3
- 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_around_operators.rb +50 -20
- data/lib/rubocop/cop/layout/space_before_block_braces.rb +19 -10
- data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +1 -1
- data/lib/rubocop/cop/lint/assignment_in_condition.rb +4 -4
- data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +2 -2
- data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +1 -1
- data/lib/rubocop/cop/lint/debugger.rb +2 -1
- data/lib/rubocop/cop/lint/duplicate_methods.rb +1 -1
- data/lib/rubocop/cop/lint/empty_conditional_body.rb +1 -1
- data/lib/rubocop/cop/lint/erb_new_arguments.rb +3 -3
- data/lib/rubocop/cop/lint/float_comparison.rb +10 -0
- data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +2 -1
- data/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +56 -0
- data/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +85 -0
- data/lib/rubocop/cop/lint/next_without_accumulator.rb +6 -21
- data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +3 -5
- data/lib/rubocop/cop/lint/number_conversion.rb +9 -4
- data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +54 -6
- data/lib/rubocop/cop/lint/redundant_with_index.rb +3 -2
- data/lib/rubocop/cop/lint/redundant_with_object.rb +2 -2
- data/lib/rubocop/cop/lint/rescue_type.rb +1 -3
- data/lib/rubocop/cop/lint/safe_navigation_chain.rb +3 -4
- 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/shadowed_argument.rb +1 -0
- data/lib/rubocop/cop/lint/symbol_conversion.rb +7 -2
- data/lib/rubocop/cop/lint/syntax.rb +6 -3
- data/lib/rubocop/cop/lint/to_enum_arguments.rb +7 -2
- data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +1 -1
- data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +2 -2
- data/lib/rubocop/cop/lint/useless_access_modifier.rb +2 -2
- data/lib/rubocop/cop/lint/useless_times.rb +2 -2
- data/lib/rubocop/cop/lint/void.rb +20 -2
- data/lib/rubocop/cop/metrics/abc_size.rb +3 -3
- data/lib/rubocop/cop/mixin/check_line_breakable.rb +1 -1
- data/lib/rubocop/cop/mixin/configurable_formatting.rb +1 -0
- data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +1 -1
- data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +1 -1
- data/lib/rubocop/cop/mixin/space_before_punctuation.rb +1 -1
- data/lib/rubocop/cop/naming/block_forwarding.rb +12 -4
- data/lib/rubocop/cop/naming/constant_name.rb +1 -2
- data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +1 -1
- data/lib/rubocop/cop/naming/predicate_name.rb +2 -2
- data/lib/rubocop/cop/registry.rb +1 -1
- data/lib/rubocop/cop/security/open.rb +2 -2
- data/lib/rubocop/cop/style/access_modifier_declarations.rb +2 -2
- data/lib/rubocop/cop/style/accessor_grouping.rb +1 -1
- data/lib/rubocop/cop/style/arguments_forwarding.rb +152 -21
- data/lib/rubocop/cop/style/array_first_last.rb +64 -0
- data/lib/rubocop/cop/style/auto_resource_cleanup.rb +21 -14
- data/lib/rubocop/cop/style/bisected_attr_accessor.rb +2 -2
- data/lib/rubocop/cop/style/case_like_if.rb +5 -5
- data/lib/rubocop/cop/style/class_check.rb +1 -0
- data/lib/rubocop/cop/style/class_vars.rb +3 -3
- data/lib/rubocop/cop/style/collection_compact.rb +18 -8
- data/lib/rubocop/cop/style/combinable_loops.rb +13 -7
- data/lib/rubocop/cop/style/commented_keyword.rb +5 -2
- data/lib/rubocop/cop/style/concat_array_literals.rb +1 -0
- data/lib/rubocop/cop/style/conditional_assignment.rb +6 -7
- data/lib/rubocop/cop/style/date_time.rb +5 -4
- data/lib/rubocop/cop/style/each_for_simple_loop.rb +7 -7
- data/lib/rubocop/cop/style/each_with_object.rb +2 -2
- data/lib/rubocop/cop/style/empty_literal.rb +1 -1
- data/lib/rubocop/cop/style/eval_with_location.rb +3 -14
- data/lib/rubocop/cop/style/exact_regexp_match.rb +2 -1
- data/lib/rubocop/cop/style/explicit_block_argument.rb +2 -2
- data/lib/rubocop/cop/style/for.rb +2 -0
- data/lib/rubocop/cop/style/hash_each_methods.rb +105 -11
- data/lib/rubocop/cop/style/hash_except.rb +2 -1
- data/lib/rubocop/cop/style/hash_syntax.rb +6 -2
- data/lib/rubocop/cop/style/identical_conditional_branches.rb +4 -1
- data/lib/rubocop/cop/style/inverse_methods.rb +14 -13
- data/lib/rubocop/cop/style/invertible_unless_condition.rb +44 -2
- data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +8 -10
- data/lib/rubocop/cop/style/map_to_hash.rb +17 -7
- data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +14 -5
- data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +2 -4
- data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +20 -0
- data/lib/rubocop/cop/style/method_def_parentheses.rb +1 -1
- data/lib/rubocop/cop/style/missing_respond_to_missing.rb +2 -2
- data/lib/rubocop/cop/style/multiline_method_signature.rb +10 -1
- data/lib/rubocop/cop/style/multiline_ternary_operator.rb +5 -3
- 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/object_then.rb +5 -3
- data/lib/rubocop/cop/style/operator_method_call.rb +2 -2
- data/lib/rubocop/cop/style/parallel_assignment.rb +3 -5
- data/lib/rubocop/cop/style/parentheses_around_condition.rb +8 -0
- data/lib/rubocop/cop/style/raise_args.rb +4 -1
- data/lib/rubocop/cop/style/redundant_argument.rb +4 -3
- data/lib/rubocop/cop/style/redundant_assignment.rb +10 -2
- data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +4 -3
- data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +3 -3
- data/lib/rubocop/cop/style/redundant_each.rb +7 -4
- data/lib/rubocop/cop/style/redundant_fetch_block.rb +3 -3
- data/lib/rubocop/cop/style/redundant_line_continuation.rb +27 -7
- data/lib/rubocop/cop/style/redundant_parentheses.rb +33 -10
- data/lib/rubocop/cop/style/redundant_return.rb +7 -1
- data/lib/rubocop/cop/style/redundant_self.rb +17 -2
- data/lib/rubocop/cop/style/redundant_sort.rb +9 -8
- data/lib/rubocop/cop/style/redundant_sort_by.rb +2 -2
- data/lib/rubocop/cop/style/redundant_string_escape.rb +1 -1
- data/lib/rubocop/cop/style/sample.rb +3 -4
- data/lib/rubocop/cop/style/select_by_regexp.rb +7 -6
- data/lib/rubocop/cop/style/self_assignment.rb +1 -1
- data/lib/rubocop/cop/style/semicolon.rb +8 -0
- data/lib/rubocop/cop/style/single_argument_dig.rb +5 -2
- data/lib/rubocop/cop/style/slicing_with_range.rb +76 -10
- data/lib/rubocop/cop/style/string_chars.rb +1 -0
- data/lib/rubocop/cop/style/strip.rb +7 -4
- data/lib/rubocop/cop/style/super_with_args_parentheses.rb +35 -0
- data/lib/rubocop/cop/style/symbol_proc.rb +36 -0
- data/lib/rubocop/cop/style/unpack_first.rb +11 -14
- data/lib/rubocop/cop/utils/regexp_ranges.rb +1 -1
- data/lib/rubocop/cops_documentation_generator.rb +15 -3
- data/lib/rubocop/directive_comment.rb +10 -8
- data/lib/rubocop/ext/regexp_node.rb +9 -4
- data/lib/rubocop/formatter/disabled_config_formatter.rb +17 -6
- data/lib/rubocop/formatter/html_formatter.rb +31 -12
- data/lib/rubocop/formatter/json_formatter.rb +0 -1
- data/lib/rubocop/formatter/offense_count_formatter.rb +12 -2
- data/lib/rubocop/formatter.rb +1 -1
- data/lib/rubocop/lsp/logger.rb +1 -1
- data/lib/rubocop/lsp/routes.rb +2 -2
- data/lib/rubocop/lsp/runtime.rb +1 -1
- data/lib/rubocop/lsp/server.rb +5 -2
- data/lib/rubocop/lsp/severity.rb +1 -1
- data/lib/rubocop/lsp.rb +29 -0
- data/lib/rubocop/magic_comment.rb +1 -1
- data/lib/rubocop/options.rb +11 -8
- data/lib/rubocop/path_util.rb +6 -2
- data/lib/rubocop/result_cache.rb +0 -1
- data/lib/rubocop/rspec/cop_helper.rb +8 -2
- data/lib/rubocop/rspec/expect_offense.rb +8 -8
- data/lib/rubocop/rspec/shared_contexts.rb +40 -15
- data/lib/rubocop/rspec/support.rb +2 -0
- data/lib/rubocop/runner.rb +10 -3
- data/lib/rubocop/server/cache.rb +1 -2
- data/lib/rubocop/server/client_command/exec.rb +0 -1
- data/lib/rubocop/server/server_command/exec.rb +0 -1
- data/lib/rubocop/target_finder.rb +84 -78
- data/lib/rubocop/target_ruby.rb +82 -80
- data/lib/rubocop/version.rb +18 -3
- data/lib/rubocop.rb +4 -0
- metadata +18 -10
- /data/lib/rubocop/formatter/{git_hub_actions_formatter.rb → github_actions_formatter.rb} +0 -0
    
        data/lib/rubocop.rb
    CHANGED
    
    | @@ -332,8 +332,10 @@ require_relative 'rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler' | |
| 332 332 | 
             
            require_relative 'rubocop/cop/lint/ineffective_access_modifier'
         | 
| 333 333 | 
             
            require_relative 'rubocop/cop/lint/inherit_exception'
         | 
| 334 334 | 
             
            require_relative 'rubocop/cop/lint/interpolation_check'
         | 
| 335 | 
            +
            require_relative 'rubocop/cop/lint/it_without_arguments_in_block'
         | 
| 335 336 | 
             
            require_relative 'rubocop/cop/lint/lambda_without_literal_block'
         | 
| 336 337 | 
             
            require_relative 'rubocop/cop/lint/literal_as_condition'
         | 
| 338 | 
            +
            require_relative 'rubocop/cop/lint/literal_assignment_in_condition'
         | 
| 337 339 | 
             
            require_relative 'rubocop/cop/lint/literal_in_interpolation'
         | 
| 338 340 | 
             
            require_relative 'rubocop/cop/lint/loop'
         | 
| 339 341 | 
             
            require_relative 'rubocop/cop/lint/missing_cop_enable_directive'
         | 
| @@ -454,6 +456,7 @@ require_relative 'rubocop/cop/style/alias' | |
| 454 456 | 
             
            require_relative 'rubocop/cop/style/and_or'
         | 
| 455 457 | 
             
            require_relative 'rubocop/cop/style/arguments_forwarding'
         | 
| 456 458 | 
             
            require_relative 'rubocop/cop/style/array_coercion'
         | 
| 459 | 
            +
            require_relative 'rubocop/cop/style/array_first_last'
         | 
| 457 460 | 
             
            require_relative 'rubocop/cop/style/array_intersect'
         | 
| 458 461 | 
             
            require_relative 'rubocop/cop/style/array_join'
         | 
| 459 462 | 
             
            require_relative 'rubocop/cop/style/ascii_comments'
         | 
| @@ -678,6 +681,7 @@ require_relative 'rubocop/cop/style/string_literals_in_interpolation' | |
| 678 681 | 
             
            require_relative 'rubocop/cop/style/string_methods'
         | 
| 679 682 | 
             
            require_relative 'rubocop/cop/style/strip'
         | 
| 680 683 | 
             
            require_relative 'rubocop/cop/style/struct_inheritance'
         | 
| 684 | 
            +
            require_relative 'rubocop/cop/style/super_with_args_parentheses'
         | 
| 681 685 | 
             
            require_relative 'rubocop/cop/style/swap_values'
         | 
| 682 686 | 
             
            require_relative 'rubocop/cop/style/symbol_array'
         | 
| 683 687 | 
             
            require_relative 'rubocop/cop/style/symbol_literal'
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: rubocop
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.62.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Bozhidar Batsov
         | 
| @@ -10,7 +10,7 @@ authors: | |
| 10 10 | 
             
            autorequire: 
         | 
| 11 11 | 
             
            bindir: exe
         | 
| 12 12 | 
             
            cert_chain: []
         | 
| 13 | 
            -
            date:  | 
| 13 | 
            +
            date: 2024-03-11 00:00:00.000000000 Z
         | 
| 14 14 | 
             
            dependencies:
         | 
| 15 15 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 16 16 | 
             
              name: json
         | 
| @@ -60,14 +60,14 @@ dependencies: | |
| 60 60 | 
             
                requirements:
         | 
| 61 61 | 
             
                - - ">="
         | 
| 62 62 | 
             
                  - !ruby/object:Gem::Version
         | 
| 63 | 
            -
                    version: 3. | 
| 63 | 
            +
                    version: 3.3.0.2
         | 
| 64 64 | 
             
              type: :runtime
         | 
| 65 65 | 
             
              prerelease: false
         | 
| 66 66 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 67 67 | 
             
                requirements:
         | 
| 68 68 | 
             
                - - ">="
         | 
| 69 69 | 
             
                  - !ruby/object:Gem::Version
         | 
| 70 | 
            -
                    version: 3. | 
| 70 | 
            +
                    version: 3.3.0.2
         | 
| 71 71 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 72 72 | 
             
              name: rainbow
         | 
| 73 73 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -134,7 +134,7 @@ dependencies: | |
| 134 134 | 
             
                requirements:
         | 
| 135 135 | 
             
                - - ">="
         | 
| 136 136 | 
             
                  - !ruby/object:Gem::Version
         | 
| 137 | 
            -
                    version: 1. | 
| 137 | 
            +
                    version: 1.31.1
         | 
| 138 138 | 
             
                - - "<"
         | 
| 139 139 | 
             
                  - !ruby/object:Gem::Version
         | 
| 140 140 | 
             
                    version: '2.0'
         | 
| @@ -144,7 +144,7 @@ dependencies: | |
| 144 144 | 
             
                requirements:
         | 
| 145 145 | 
             
                - - ">="
         | 
| 146 146 | 
             
                  - !ruby/object:Gem::Version
         | 
| 147 | 
            -
                    version: 1. | 
| 147 | 
            +
                    version: 1.31.1
         | 
| 148 148 | 
             
                - - "<"
         | 
| 149 149 | 
             
                  - !ruby/object:Gem::Version
         | 
| 150 150 | 
             
                    version: '2.0'
         | 
| @@ -196,6 +196,7 @@ files: | |
| 196 196 | 
             
            - LICENSE.txt
         | 
| 197 197 | 
             
            - README.md
         | 
| 198 198 | 
             
            - assets/logo.png
         | 
| 199 | 
            +
            - assets/output.css.erb
         | 
| 199 200 | 
             
            - assets/output.html.erb
         | 
| 200 201 | 
             
            - config/default.yml
         | 
| 201 202 | 
             
            - config/obsoletion.yml
         | 
| @@ -294,6 +295,7 @@ files: | |
| 294 295 | 
             
            - lib/rubocop/cop/internal_affairs/method_name_end_with.rb
         | 
| 295 296 | 
             
            - lib/rubocop/cop/internal_affairs/method_name_equal.rb
         | 
| 296 297 | 
             
            - lib/rubocop/cop/internal_affairs/node_destructuring.rb
         | 
| 298 | 
            +
            - lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb
         | 
| 297 299 | 
             
            - lib/rubocop/cop/internal_affairs/node_matcher_directive.rb
         | 
| 298 300 | 
             
            - lib/rubocop/cop/internal_affairs/node_type_predicate.rb
         | 
| 299 301 | 
             
            - lib/rubocop/cop/internal_affairs/numblock_handler.rb
         | 
| @@ -301,6 +303,7 @@ files: | |
| 301 303 | 
             
            - lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb
         | 
| 302 304 | 
             
            - lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb
         | 
| 303 305 | 
             
            - lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb
         | 
| 306 | 
            +
            - lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb
         | 
| 304 307 | 
             
            - lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb
         | 
| 305 308 | 
             
            - lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
         | 
| 306 309 | 
             
            - lib/rubocop/cop/internal_affairs/redundant_message_argument.rb
         | 
| @@ -466,8 +469,10 @@ files: | |
| 466 469 | 
             
            - lib/rubocop/cop/lint/ineffective_access_modifier.rb
         | 
| 467 470 | 
             
            - lib/rubocop/cop/lint/inherit_exception.rb
         | 
| 468 471 | 
             
            - lib/rubocop/cop/lint/interpolation_check.rb
         | 
| 472 | 
            +
            - lib/rubocop/cop/lint/it_without_arguments_in_block.rb
         | 
| 469 473 | 
             
            - lib/rubocop/cop/lint/lambda_without_literal_block.rb
         | 
| 470 474 | 
             
            - lib/rubocop/cop/lint/literal_as_condition.rb
         | 
| 475 | 
            +
            - lib/rubocop/cop/lint/literal_assignment_in_condition.rb
         | 
| 471 476 | 
             
            - lib/rubocop/cop/lint/literal_in_interpolation.rb
         | 
| 472 477 | 
             
            - lib/rubocop/cop/lint/loop.rb
         | 
| 473 478 | 
             
            - lib/rubocop/cop/lint/missing_cop_enable_directive.rb
         | 
| @@ -670,6 +675,7 @@ files: | |
| 670 675 | 
             
            - lib/rubocop/cop/style/and_or.rb
         | 
| 671 676 | 
             
            - lib/rubocop/cop/style/arguments_forwarding.rb
         | 
| 672 677 | 
             
            - lib/rubocop/cop/style/array_coercion.rb
         | 
| 678 | 
            +
            - lib/rubocop/cop/style/array_first_last.rb
         | 
| 673 679 | 
             
            - lib/rubocop/cop/style/array_intersect.rb
         | 
| 674 680 | 
             
            - lib/rubocop/cop/style/array_join.rb
         | 
| 675 681 | 
             
            - lib/rubocop/cop/style/ascii_comments.rb
         | 
| @@ -897,6 +903,7 @@ files: | |
| 897 903 | 
             
            - lib/rubocop/cop/style/string_methods.rb
         | 
| 898 904 | 
             
            - lib/rubocop/cop/style/strip.rb
         | 
| 899 905 | 
             
            - lib/rubocop/cop/style/struct_inheritance.rb
         | 
| 906 | 
            +
            - lib/rubocop/cop/style/super_with_args_parentheses.rb
         | 
| 900 907 | 
             
            - lib/rubocop/cop/style/swap_values.rb
         | 
| 901 908 | 
             
            - lib/rubocop/cop/style/symbol_array.rb
         | 
| 902 909 | 
             
            - lib/rubocop/cop/style/symbol_literal.rb
         | 
| @@ -959,7 +966,7 @@ files: | |
| 959 966 | 
             
            - lib/rubocop/formatter/file_list_formatter.rb
         | 
| 960 967 | 
             
            - lib/rubocop/formatter/formatter_set.rb
         | 
| 961 968 | 
             
            - lib/rubocop/formatter/fuubar_style_formatter.rb
         | 
| 962 | 
            -
            - lib/rubocop/formatter/ | 
| 969 | 
            +
            - lib/rubocop/formatter/github_actions_formatter.rb
         | 
| 963 970 | 
             
            - lib/rubocop/formatter/html_formatter.rb
         | 
| 964 971 | 
             
            - lib/rubocop/formatter/json_formatter.rb
         | 
| 965 972 | 
             
            - lib/rubocop/formatter/junit_formatter.rb
         | 
| @@ -973,6 +980,7 @@ files: | |
| 973 980 | 
             
            - lib/rubocop/formatter/text_util.rb
         | 
| 974 981 | 
             
            - lib/rubocop/formatter/worst_offenders_formatter.rb
         | 
| 975 982 | 
             
            - lib/rubocop/lockfile.rb
         | 
| 983 | 
            +
            - lib/rubocop/lsp.rb
         | 
| 976 984 | 
             
            - lib/rubocop/lsp/logger.rb
         | 
| 977 985 | 
             
            - lib/rubocop/lsp/routes.rb
         | 
| 978 986 | 
             
            - lib/rubocop/lsp/runtime.rb
         | 
| @@ -1023,9 +1031,9 @@ licenses: | |
| 1023 1031 | 
             
            - MIT
         | 
| 1024 1032 | 
             
            metadata:
         | 
| 1025 1033 | 
             
              homepage_uri: https://rubocop.org/
         | 
| 1026 | 
            -
              changelog_uri: https://github.com/rubocop/rubocop/ | 
| 1034 | 
            +
              changelog_uri: https://github.com/rubocop/rubocop/releases/tag/v1.62.1
         | 
| 1027 1035 | 
             
              source_code_uri: https://github.com/rubocop/rubocop/
         | 
| 1028 | 
            -
              documentation_uri: https://docs.rubocop.org/rubocop/1. | 
| 1036 | 
            +
              documentation_uri: https://docs.rubocop.org/rubocop/1.62/
         | 
| 1029 1037 | 
             
              bug_tracker_uri: https://github.com/rubocop/rubocop/issues
         | 
| 1030 1038 | 
             
              rubygems_mfa_required: 'true'
         | 
| 1031 1039 | 
             
            post_install_message: 
         | 
| @@ -1043,7 +1051,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 1043 1051 | 
             
                - !ruby/object:Gem::Version
         | 
| 1044 1052 | 
             
                  version: '0'
         | 
| 1045 1053 | 
             
            requirements: []
         | 
| 1046 | 
            -
            rubygems_version: 3.4. | 
| 1054 | 
            +
            rubygems_version: 3.4.22
         | 
| 1047 1055 | 
             
            signing_key: 
         | 
| 1048 1056 | 
             
            specification_version: 4
         | 
| 1049 1057 | 
             
            summary: Automatic Ruby code style checking tool.
         | 
| 
            File without changes
         |