rubocop 1.75.8 → 1.81.7
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/README.md +20 -16
 - data/config/default.yml +121 -28
 - data/config/obsoletion.yml +6 -3
 - data/exe/rubocop +1 -8
 - data/lib/rubocop/cli/command/auto_generate_config.rb +2 -2
 - data/lib/rubocop/cli.rb +18 -3
 - data/lib/rubocop/config_loader.rb +4 -39
 - data/lib/rubocop/config_loader_resolver.rb +5 -4
 - data/lib/rubocop/config_store.rb +5 -0
 - data/lib/rubocop/cop/autocorrect_logic.rb +4 -4
 - data/lib/rubocop/cop/bundler/ordered_gems.rb +1 -1
 - data/lib/rubocop/cop/correctors/alignment_corrector.rb +7 -4
 - data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +7 -2
 - data/lib/rubocop/cop/correctors/parentheses_corrector.rb +5 -2
 - data/lib/rubocop/cop/gemspec/attribute_assignment.rb +91 -0
 - data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -22
 - data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +1 -1
 - data/lib/rubocop/cop/gemspec/require_mfa.rb +15 -1
 - data/lib/rubocop/cop/internal_affairs/example_description.rb +1 -1
 - data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +4 -4
 - data/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +4 -1
 - data/lib/rubocop/cop/internal_affairs/node_type_group.rb +3 -2
 - data/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +1 -1
 - data/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +1 -1
 - data/lib/rubocop/cop/layout/class_structure.rb +1 -1
 - data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +1 -1
 - data/lib/rubocop/cop/layout/dot_position.rb +1 -1
 - data/lib/rubocop/cop/layout/empty_line_between_defs.rb +30 -12
 - data/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +101 -0
 - data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +1 -1
 - data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +8 -29
 - data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +1 -1
 - data/lib/rubocop/cop/layout/hash_alignment.rb +2 -5
 - data/lib/rubocop/cop/layout/line_length.rb +35 -6
 - data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +8 -4
 - data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +8 -0
 - data/lib/rubocop/cop/layout/space_around_keyword.rb +6 -1
 - data/lib/rubocop/cop/layout/space_around_operators.rb +8 -0
 - data/lib/rubocop/cop/layout/space_before_brackets.rb +2 -9
 - data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +7 -2
 - data/lib/rubocop/cop/layout/trailing_whitespace.rb +1 -1
 - data/lib/rubocop/cop/lint/ambiguous_range.rb +5 -0
 - data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +3 -2
 - data/lib/rubocop/cop/lint/cop_directive_syntax.rb +13 -7
 - data/lib/rubocop/cop/lint/debugger.rb +0 -2
 - data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +4 -1
 - data/lib/rubocop/cop/lint/duplicate_methods.rb +25 -4
 - data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +5 -42
 - data/lib/rubocop/cop/lint/empty_interpolation.rb +14 -1
 - data/lib/rubocop/cop/lint/float_comparison.rb +4 -4
 - data/lib/rubocop/cop/lint/identity_comparison.rb +19 -15
 - data/lib/rubocop/cop/lint/literal_as_condition.rb +34 -28
 - data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +17 -8
 - data/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +1 -0
 - data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +1 -1
 - data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +101 -2
 - data/lib/rubocop/cop/lint/redundant_type_conversion.rb +4 -4
 - data/lib/rubocop/cop/lint/require_range_parentheses.rb +1 -1
 - data/lib/rubocop/cop/lint/rescue_exception.rb +1 -4
 - data/lib/rubocop/cop/lint/rescue_type.rb +1 -1
 - data/lib/rubocop/cop/lint/safe_navigation_chain.rb +4 -4
 - data/lib/rubocop/cop/lint/self_assignment.rb +31 -5
 - data/lib/rubocop/cop/lint/shadowed_argument.rb +7 -7
 - data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +5 -0
 - data/lib/rubocop/cop/lint/uri_escape_unescape.rb +2 -0
 - data/lib/rubocop/cop/lint/useless_access_modifier.rb +29 -4
 - data/lib/rubocop/cop/lint/useless_default_value_argument.rb +90 -0
 - data/lib/rubocop/cop/lint/useless_numeric_operation.rb +1 -0
 - data/lib/rubocop/cop/lint/useless_or.rb +98 -0
 - data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +3 -3
 - data/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +121 -0
 - data/lib/rubocop/cop/lint/void.rb +7 -0
 - data/lib/rubocop/cop/message_annotator.rb +1 -1
 - data/lib/rubocop/cop/mixin/alignment.rb +1 -1
 - data/lib/rubocop/cop/mixin/check_line_breakable.rb +1 -1
 - data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -7
 - data/lib/rubocop/cop/mixin/frozen_string_literal.rb +1 -1
 - data/lib/rubocop/cop/mixin/gemspec_help.rb +22 -0
 - data/lib/rubocop/cop/mixin/line_length_help.rb +24 -8
 - data/lib/rubocop/cop/mixin/ordered_gem_node.rb +1 -1
 - data/lib/rubocop/cop/mixin/trailing_comma.rb +1 -1
 - data/lib/rubocop/cop/naming/file_name.rb +2 -2
 - data/lib/rubocop/cop/naming/method_name.rb +129 -13
 - data/lib/rubocop/cop/naming/predicate_method.rb +319 -0
 - data/lib/rubocop/cop/naming/{predicate_name.rb → predicate_prefix.rb} +4 -4
 - data/lib/rubocop/cop/security/eval.rb +2 -1
 - data/lib/rubocop/cop/security/json_load.rb +33 -11
 - data/lib/rubocop/cop/security/open.rb +1 -0
 - data/lib/rubocop/cop/style/access_modifier_declarations.rb +1 -1
 - data/lib/rubocop/cop/style/accessor_grouping.rb +13 -1
 - data/lib/rubocop/cop/style/arguments_forwarding.rb +11 -17
 - data/lib/rubocop/cop/style/array_intersect.rb +99 -35
 - data/lib/rubocop/cop/style/array_intersect_with_single_element.rb +47 -0
 - data/lib/rubocop/cop/style/bitwise_predicate.rb +8 -1
 - data/lib/rubocop/cop/style/block_delimiters.rb +1 -1
 - data/lib/rubocop/cop/style/case_like_if.rb +1 -1
 - data/lib/rubocop/cop/style/collection_querying.rb +167 -0
 - data/lib/rubocop/cop/style/conditional_assignment.rb +11 -5
 - data/lib/rubocop/cop/style/constant_visibility.rb +14 -9
 - data/lib/rubocop/cop/style/dig_chain.rb +1 -1
 - data/lib/rubocop/cop/style/double_negation.rb +1 -1
 - data/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +100 -0
 - data/lib/rubocop/cop/style/endless_method.rb +15 -2
 - data/lib/rubocop/cop/style/explicit_block_argument.rb +1 -1
 - data/lib/rubocop/cop/style/exponential_notation.rb +3 -2
 - data/lib/rubocop/cop/style/fetch_env_var.rb +32 -6
 - data/lib/rubocop/cop/style/float_division.rb +15 -1
 - data/lib/rubocop/cop/style/hash_conversion.rb +16 -8
 - data/lib/rubocop/cop/style/hash_syntax.rb +1 -1
 - data/lib/rubocop/cop/style/if_unless_modifier.rb +13 -6
 - data/lib/rubocop/cop/style/infinite_loop.rb +1 -1
 - data/lib/rubocop/cop/style/inverse_methods.rb +1 -1
 - data/lib/rubocop/cop/style/it_assignment.rb +69 -12
 - data/lib/rubocop/cop/style/it_block_parameter.rb +36 -15
 - data/lib/rubocop/cop/style/map_to_hash.rb +1 -3
 - data/lib/rubocop/cop/style/map_to_set.rb +1 -3
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +4 -6
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +16 -0
 - data/lib/rubocop/cop/style/min_max_comparison.rb +13 -5
 - data/lib/rubocop/cop/style/nil_comparison.rb +9 -7
 - data/lib/rubocop/cop/style/one_line_conditional.rb +17 -9
 - data/lib/rubocop/cop/style/parallel_assignment.rb +32 -20
 - data/lib/rubocop/cop/style/redundant_array_flatten.rb +50 -0
 - data/lib/rubocop/cop/style/redundant_begin.rb +34 -0
 - data/lib/rubocop/cop/style/redundant_condition.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_exception.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_fetch_block.rb +1 -9
 - data/lib/rubocop/cop/style/redundant_format.rb +26 -5
 - data/lib/rubocop/cop/style/redundant_freeze.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_interpolation.rb +12 -3
 - data/lib/rubocop/cop/style/redundant_line_continuation.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_parentheses.rb +55 -16
 - data/lib/rubocop/cop/style/redundant_regexp_argument.rb +4 -0
 - data/lib/rubocop/cop/style/redundant_regexp_escape.rb +8 -0
 - data/lib/rubocop/cop/style/redundant_self.rb +8 -5
 - data/lib/rubocop/cop/style/safe_navigation.rb +44 -12
 - data/lib/rubocop/cop/style/semicolon.rb +23 -7
 - data/lib/rubocop/cop/style/single_line_methods.rb +7 -4
 - data/lib/rubocop/cop/style/sole_nested_conditional.rb +40 -3
 - data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +1 -1
 - data/lib/rubocop/cop/style/string_concatenation.rb +17 -13
 - data/lib/rubocop/cop/style/symbol_array.rb +1 -1
 - data/lib/rubocop/cop/style/symbol_proc.rb +1 -1
 - data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +45 -0
 - data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +1 -1
 - data/lib/rubocop/cop/style/unless_else.rb +10 -9
 - data/lib/rubocop/cop/utils/format_string.rb +10 -0
 - data/lib/rubocop/cop/variable_force/variable.rb +1 -1
 - data/lib/rubocop/cop/variable_force.rb +25 -8
 - data/lib/rubocop/cops_documentation_generator.rb +5 -4
 - data/lib/rubocop/formatter/disabled_config_formatter.rb +18 -5
 - data/lib/rubocop/formatter/fuubar_style_formatter.rb +1 -1
 - data/lib/rubocop/formatter/markdown_formatter.rb +1 -0
 - data/lib/rubocop/formatter/offense_count_formatter.rb +1 -1
 - data/lib/rubocop/formatter/pacman_formatter.rb +1 -0
 - data/lib/rubocop/lsp/diagnostic.rb +25 -24
 - data/lib/rubocop/lsp/routes.rb +65 -9
 - data/lib/rubocop/lsp/runtime.rb +2 -2
 - data/lib/rubocop/lsp/server.rb +2 -2
 - data/lib/rubocop/lsp/stdin_runner.rb +0 -16
 - data/lib/rubocop/pending_cops_reporter.rb +56 -0
 - data/lib/rubocop/result_cache.rb +14 -12
 - data/lib/rubocop/rspec/expect_offense.rb +9 -3
 - data/lib/rubocop/runner.rb +6 -4
 - data/lib/rubocop/server/cache.rb +4 -2
 - data/lib/rubocop/server/client_command/base.rb +10 -0
 - data/lib/rubocop/server/client_command/exec.rb +2 -1
 - data/lib/rubocop/server/client_command/start.rb +11 -1
 - data/lib/rubocop/target_finder.rb +9 -9
 - data/lib/rubocop/target_ruby.rb +10 -1
 - data/lib/rubocop/version.rb +1 -1
 - data/lib/rubocop.rb +12 -1
 - data/lib/ruby_lsp/rubocop/addon.rb +25 -10
 - data/lib/ruby_lsp/rubocop/runtime_adapter.rb +49 -15
 - metadata +18 -7
 
    
        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.81.7
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Bozhidar Batsov
         
     | 
| 
         @@ -9,7 +9,7 @@ authors: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            - Yuji Nakayama
         
     | 
| 
       10 
10 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       11 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       12 
     | 
    
         
            -
            date: 2025- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2025-10-31 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: json
         
     | 
| 
         @@ -127,7 +127,7 @@ dependencies: 
     | 
|
| 
       127 
127 
     | 
    
         
             
                requirements:
         
     | 
| 
       128 
128 
     | 
    
         
             
                - - ">="
         
     | 
| 
       129 
129 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       130 
     | 
    
         
            -
                    version: 1. 
     | 
| 
      
 130 
     | 
    
         
            +
                    version: 1.47.1
         
     | 
| 
       131 
131 
     | 
    
         
             
                - - "<"
         
     | 
| 
       132 
132 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       133 
133 
     | 
    
         
             
                    version: '2.0'
         
     | 
| 
         @@ -137,7 +137,7 @@ dependencies: 
     | 
|
| 
       137 
137 
     | 
    
         
             
                requirements:
         
     | 
| 
       138 
138 
     | 
    
         
             
                - - ">="
         
     | 
| 
       139 
139 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       140 
     | 
    
         
            -
                    version: 1. 
     | 
| 
      
 140 
     | 
    
         
            +
                    version: 1.47.1
         
     | 
| 
       141 
141 
     | 
    
         
             
                - - "<"
         
     | 
| 
       142 
142 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       143 
143 
     | 
    
         
             
                    version: '2.0'
         
     | 
| 
         @@ -265,6 +265,7 @@ files: 
     | 
|
| 
       265 
265 
     | 
    
         
             
            - lib/rubocop/cop/exclude_limit.rb
         
     | 
| 
       266 
266 
     | 
    
         
             
            - lib/rubocop/cop/force.rb
         
     | 
| 
       267 
267 
     | 
    
         
             
            - lib/rubocop/cop/gemspec/add_runtime_dependency.rb
         
     | 
| 
      
 268 
     | 
    
         
            +
            - lib/rubocop/cop/gemspec/attribute_assignment.rb
         
     | 
| 
       268 
269 
     | 
    
         
             
            - lib/rubocop/cop/gemspec/dependency_version.rb
         
     | 
| 
       269 
270 
     | 
    
         
             
            - lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb
         
     | 
| 
       270 
271 
     | 
    
         
             
            - lib/rubocop/cop/gemspec/development_dependencies.rb
         
     | 
| 
         @@ -341,6 +342,7 @@ files: 
     | 
|
| 
       341 
342 
     | 
    
         
             
            - lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb
         
     | 
| 
       342 
343 
     | 
    
         
             
            - lib/rubocop/cop/layout/empty_line_between_defs.rb
         
     | 
| 
       343 
344 
     | 
    
         
             
            - lib/rubocop/cop/layout/empty_lines.rb
         
     | 
| 
      
 345 
     | 
    
         
            +
            - lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb
         
     | 
| 
       344 
346 
     | 
    
         
             
            - lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
         
     | 
| 
       345 
347 
     | 
    
         
             
            - lib/rubocop/cop/layout/empty_lines_around_arguments.rb
         
     | 
| 
       346 
348 
     | 
    
         
             
            - lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
         
     | 
| 
         @@ -561,14 +563,17 @@ files: 
     | 
|
| 
       561 
563 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_access_modifier.rb
         
     | 
| 
       562 
564 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_assignment.rb
         
     | 
| 
       563 
565 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_constant_scoping.rb
         
     | 
| 
      
 566 
     | 
    
         
            +
            - lib/rubocop/cop/lint/useless_default_value_argument.rb
         
     | 
| 
       564 
567 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_defined.rb
         
     | 
| 
       565 
568 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_else_without_rescue.rb
         
     | 
| 
       566 
569 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_method_definition.rb
         
     | 
| 
       567 
570 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_numeric_operation.rb
         
     | 
| 
      
 571 
     | 
    
         
            +
            - lib/rubocop/cop/lint/useless_or.rb
         
     | 
| 
       568 
572 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_rescue.rb
         
     | 
| 
       569 
573 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_ruby2_keywords.rb
         
     | 
| 
       570 
574 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_setter_call.rb
         
     | 
| 
       571 
575 
     | 
    
         
             
            - lib/rubocop/cop/lint/useless_times.rb
         
     | 
| 
      
 576 
     | 
    
         
            +
            - lib/rubocop/cop/lint/utils/nil_receiver_checker.rb
         
     | 
| 
       572 
577 
     | 
    
         
             
            - lib/rubocop/cop/lint/void.rb
         
     | 
| 
       573 
578 
     | 
    
         
             
            - lib/rubocop/cop/message_annotator.rb
         
     | 
| 
       574 
579 
     | 
    
         
             
            - lib/rubocop/cop/metrics/abc_size.rb
         
     | 
| 
         @@ -679,7 +684,8 @@ files: 
     | 
|
| 
       679 
684 
     | 
    
         
             
            - lib/rubocop/cop/naming/memoized_instance_variable_name.rb
         
     | 
| 
       680 
685 
     | 
    
         
             
            - lib/rubocop/cop/naming/method_name.rb
         
     | 
| 
       681 
686 
     | 
    
         
             
            - lib/rubocop/cop/naming/method_parameter_name.rb
         
     | 
| 
       682 
     | 
    
         
            -
            - lib/rubocop/cop/naming/ 
     | 
| 
      
 687 
     | 
    
         
            +
            - lib/rubocop/cop/naming/predicate_method.rb
         
     | 
| 
      
 688 
     | 
    
         
            +
            - lib/rubocop/cop/naming/predicate_prefix.rb
         
     | 
| 
       683 
689 
     | 
    
         
             
            - lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb
         
     | 
| 
       684 
690 
     | 
    
         
             
            - lib/rubocop/cop/naming/variable_name.rb
         
     | 
| 
       685 
691 
     | 
    
         
             
            - lib/rubocop/cop/naming/variable_number.rb
         
     | 
| 
         @@ -702,6 +708,7 @@ files: 
     | 
|
| 
       702 
708 
     | 
    
         
             
            - lib/rubocop/cop/style/array_coercion.rb
         
     | 
| 
       703 
709 
     | 
    
         
             
            - lib/rubocop/cop/style/array_first_last.rb
         
     | 
| 
       704 
710 
     | 
    
         
             
            - lib/rubocop/cop/style/array_intersect.rb
         
     | 
| 
      
 711 
     | 
    
         
            +
            - lib/rubocop/cop/style/array_intersect_with_single_element.rb
         
     | 
| 
       705 
712 
     | 
    
         
             
            - lib/rubocop/cop/style/array_join.rb
         
     | 
| 
       706 
713 
     | 
    
         
             
            - lib/rubocop/cop/style/ascii_comments.rb
         
     | 
| 
       707 
714 
     | 
    
         
             
            - lib/rubocop/cop/style/attr.rb
         
     | 
| 
         @@ -724,6 +731,7 @@ files: 
     | 
|
| 
       724 
731 
     | 
    
         
             
            - lib/rubocop/cop/style/class_vars.rb
         
     | 
| 
       725 
732 
     | 
    
         
             
            - lib/rubocop/cop/style/collection_compact.rb
         
     | 
| 
       726 
733 
     | 
    
         
             
            - lib/rubocop/cop/style/collection_methods.rb
         
     | 
| 
      
 734 
     | 
    
         
            +
            - lib/rubocop/cop/style/collection_querying.rb
         
     | 
| 
       727 
735 
     | 
    
         
             
            - lib/rubocop/cop/style/colon_method_call.rb
         
     | 
| 
       728 
736 
     | 
    
         
             
            - lib/rubocop/cop/style/colon_method_definition.rb
         
     | 
| 
       729 
737 
     | 
    
         
             
            - lib/rubocop/cop/style/combinable_defined.rb
         
     | 
| 
         @@ -758,6 +766,7 @@ files: 
     | 
|
| 
       758 
766 
     | 
    
         
             
            - lib/rubocop/cop/style/empty_lambda_parameter.rb
         
     | 
| 
       759 
767 
     | 
    
         
             
            - lib/rubocop/cop/style/empty_literal.rb
         
     | 
| 
       760 
768 
     | 
    
         
             
            - lib/rubocop/cop/style/empty_method.rb
         
     | 
| 
      
 769 
     | 
    
         
            +
            - lib/rubocop/cop/style/empty_string_inside_interpolation.rb
         
     | 
| 
       761 
770 
     | 
    
         
             
            - lib/rubocop/cop/style/encoding.rb
         
     | 
| 
       762 
771 
     | 
    
         
             
            - lib/rubocop/cop/style/end_block.rb
         
     | 
| 
       763 
772 
     | 
    
         
             
            - lib/rubocop/cop/style/endless_method.rb
         
     | 
| 
         @@ -878,6 +887,7 @@ files: 
     | 
|
| 
       878 
887 
     | 
    
         
             
            - lib/rubocop/cop/style/random_with_offset.rb
         
     | 
| 
       879 
888 
     | 
    
         
             
            - lib/rubocop/cop/style/redundant_argument.rb
         
     | 
| 
       880 
889 
     | 
    
         
             
            - lib/rubocop/cop/style/redundant_array_constructor.rb
         
     | 
| 
      
 890 
     | 
    
         
            +
            - lib/rubocop/cop/style/redundant_array_flatten.rb
         
     | 
| 
       881 
891 
     | 
    
         
             
            - lib/rubocop/cop/style/redundant_assignment.rb
         
     | 
| 
       882 
892 
     | 
    
         
             
            - lib/rubocop/cop/style/redundant_begin.rb
         
     | 
| 
       883 
893 
     | 
    
         
             
            - lib/rubocop/cop/style/redundant_capital_w.rb
         
     | 
| 
         @@ -1033,6 +1043,7 @@ files: 
     | 
|
| 
       1033 
1043 
     | 
    
         
             
            - lib/rubocop/name_similarity.rb
         
     | 
| 
       1034 
1044 
     | 
    
         
             
            - lib/rubocop/options.rb
         
     | 
| 
       1035 
1045 
     | 
    
         
             
            - lib/rubocop/path_util.rb
         
     | 
| 
      
 1046 
     | 
    
         
            +
            - lib/rubocop/pending_cops_reporter.rb
         
     | 
| 
       1036 
1047 
     | 
    
         
             
            - lib/rubocop/platform.rb
         
     | 
| 
       1037 
1048 
     | 
    
         
             
            - lib/rubocop/plugin.rb
         
     | 
| 
       1038 
1049 
     | 
    
         
             
            - lib/rubocop/plugin/configuration_integrator.rb
         
     | 
| 
         @@ -1080,9 +1091,9 @@ licenses: 
     | 
|
| 
       1080 
1091 
     | 
    
         
             
            - MIT
         
     | 
| 
       1081 
1092 
     | 
    
         
             
            metadata:
         
     | 
| 
       1082 
1093 
     | 
    
         
             
              homepage_uri: https://rubocop.org/
         
     | 
| 
       1083 
     | 
    
         
            -
              changelog_uri: https://github.com/rubocop/rubocop/releases/tag/v1. 
     | 
| 
      
 1094 
     | 
    
         
            +
              changelog_uri: https://github.com/rubocop/rubocop/releases/tag/v1.81.7
         
     | 
| 
       1084 
1095 
     | 
    
         
             
              source_code_uri: https://github.com/rubocop/rubocop/
         
     | 
| 
       1085 
     | 
    
         
            -
              documentation_uri: https://docs.rubocop.org/rubocop/1. 
     | 
| 
      
 1096 
     | 
    
         
            +
              documentation_uri: https://docs.rubocop.org/rubocop/1.81/
         
     | 
| 
       1086 
1097 
     | 
    
         
             
              bug_tracker_uri: https://github.com/rubocop/rubocop/issues
         
     | 
| 
       1087 
1098 
     | 
    
         
             
              rubygems_mfa_required: 'true'
         
     | 
| 
       1088 
1099 
     | 
    
         
             
            rdoc_options: []
         
     |