rubocop 1.32.0 → 1.37.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/README.md +2 -2
 - data/config/default.yml +104 -16
 - data/config/obsoletion.yml +23 -1
 - data/lib/rubocop/arguments_env.rb +17 -0
 - data/lib/rubocop/arguments_file.rb +17 -0
 - data/lib/rubocop/cache_config.rb +29 -0
 - data/lib/rubocop/cli/command/{auto_genenerate_config.rb → auto_generate_config.rb} +2 -2
 - data/lib/rubocop/cli/command/execute_runner.rb +7 -7
 - data/lib/rubocop/cli/command/init_dotfile.rb +1 -1
 - data/lib/rubocop/cli/command/suggest_extensions.rb +53 -15
 - data/lib/rubocop/config.rb +1 -1
 - data/lib/rubocop/config_finder.rb +68 -0
 - data/lib/rubocop/config_loader.rb +12 -40
 - data/lib/rubocop/config_loader_resolver.rb +1 -5
 - data/lib/rubocop/config_obsoletion/changed_parameter.rb +5 -0
 - data/lib/rubocop/config_obsoletion/parameter_rule.rb +4 -0
 - data/lib/rubocop/config_obsoletion.rb +7 -2
 - data/lib/rubocop/cop/cop.rb +1 -1
 - data/lib/rubocop/cop/correctors/parentheses_corrector.rb +58 -0
 - data/lib/rubocop/cop/gemspec/require_mfa.rb +1 -1
 - data/lib/rubocop/cop/generator/require_file_injector.rb +2 -2
 - data/lib/rubocop/cop/generator.rb +1 -2
 - data/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
 - data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +62 -0
 - data/lib/rubocop/cop/internal_affairs.rb +2 -0
 - data/lib/rubocop/cop/layout/block_alignment.rb +16 -12
 - data/lib/rubocop/cop/layout/block_end_newline.rb +35 -5
 - data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +5 -2
 - data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +2 -0
 - data/lib/rubocop/cop/layout/end_of_line.rb +4 -4
 - data/lib/rubocop/cop/layout/first_argument_indentation.rb +7 -1
 - data/lib/rubocop/cop/layout/first_array_element_indentation.rb +2 -2
 - data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +2 -2
 - data/lib/rubocop/cop/layout/indentation_width.rb +6 -2
 - data/lib/rubocop/cop/layout/line_length.rb +4 -1
 - data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +1 -1
 - data/lib/rubocop/cop/layout/multiline_block_layout.rb +2 -0
 - data/lib/rubocop/cop/layout/redundant_line_break.rb +1 -1
 - data/lib/rubocop/cop/layout/space_around_block_parameters.rb +1 -1
 - data/lib/rubocop/cop/layout/space_around_keyword.rb +1 -1
 - data/lib/rubocop/cop/layout/space_before_block_braces.rb +2 -0
 - data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +13 -9
 - data/lib/rubocop/cop/layout/space_inside_block_braces.rb +25 -9
 - data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +28 -3
 - data/lib/rubocop/cop/legacy/corrections_proxy.rb +1 -1
 - data/lib/rubocop/cop/legacy/corrector.rb +1 -1
 - data/lib/rubocop/cop/lint/ambiguous_block_association.rb +21 -8
 - data/lib/rubocop/cop/lint/debugger.rb +26 -16
 - data/lib/rubocop/cop/lint/deprecated_class_methods.rb +4 -4
 - data/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
 - data/lib/rubocop/cop/lint/duplicate_methods.rb +11 -1
 - data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +25 -6
 - data/lib/rubocop/cop/lint/duplicate_require.rb +1 -1
 - data/lib/rubocop/cop/lint/empty_block.rb +1 -1
 - data/lib/rubocop/cop/lint/empty_class.rb +3 -1
 - data/lib/rubocop/cop/lint/empty_conditional_body.rb +107 -1
 - data/lib/rubocop/cop/lint/erb_new_arguments.rb +9 -9
 - data/lib/rubocop/cop/lint/literal_in_interpolation.rb +4 -0
 - data/lib/rubocop/cop/lint/nested_method_definition.rb +50 -1
 - data/lib/rubocop/cop/lint/next_without_accumulator.rb +25 -6
 - data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +6 -6
 - data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +12 -0
 - data/lib/rubocop/cop/lint/number_conversion.rb +24 -8
 - data/lib/rubocop/cop/lint/ordered_magic_comments.rb +4 -5
 - data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +1 -1
 - data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +12 -1
 - data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +7 -0
 - data/lib/rubocop/cop/lint/redundant_require_statement.rb +29 -9
 - data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +9 -3
 - data/lib/rubocop/cop/lint/redundant_with_index.rb +13 -10
 - data/lib/rubocop/cop/lint/redundant_with_object.rb +12 -11
 - data/lib/rubocop/cop/lint/require_parentheses.rb +1 -1
 - data/lib/rubocop/cop/lint/safe_navigation_chain.rb +3 -2
 - data/lib/rubocop/cop/lint/shadowed_exception.rb +15 -10
 - data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +27 -3
 - data/lib/rubocop/cop/lint/unreachable_loop.rb +9 -3
 - data/lib/rubocop/cop/lint/unused_method_argument.rb +4 -0
 - data/lib/rubocop/cop/lint/useless_access_modifier.rb +8 -6
 - data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +1 -1
 - data/lib/rubocop/cop/lint/void.rb +2 -0
 - data/lib/rubocop/cop/metrics/abc_size.rb +3 -1
 - data/lib/rubocop/cop/metrics/block_length.rb +6 -7
 - data/lib/rubocop/cop/metrics/method_length.rb +8 -8
 - data/lib/rubocop/cop/mixin/allowed_methods.rb +20 -1
 - data/lib/rubocop/cop/mixin/allowed_pattern.rb +17 -1
 - data/lib/rubocop/cop/mixin/check_line_breakable.rb +1 -1
 - data/lib/rubocop/cop/mixin/comments_help.rb +17 -1
 - data/lib/rubocop/cop/mixin/enforce_superclass.rb +2 -1
 - data/lib/rubocop/cop/mixin/frozen_string_literal.rb +4 -0
 - data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +82 -4
 - data/lib/rubocop/cop/mixin/hash_transform_method.rb +10 -6
 - data/lib/rubocop/cop/mixin/method_complexity.rb +8 -13
 - data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +1 -1
 - data/lib/rubocop/cop/mixin/range_help.rb +4 -5
 - data/lib/rubocop/cop/mixin/rescue_node.rb +3 -1
 - data/lib/rubocop/cop/mixin/surrounding_space.rb +6 -5
 - data/lib/rubocop/cop/naming/block_parameter_name.rb +1 -1
 - data/lib/rubocop/cop/naming/constant_name.rb +2 -2
 - data/lib/rubocop/cop/naming/inclusive_language.rb +1 -1
 - data/lib/rubocop/cop/naming/predicate_name.rb +24 -3
 - data/lib/rubocop/cop/style/access_modifier_declarations.rb +97 -1
 - data/lib/rubocop/cop/style/accessor_grouping.rb +7 -3
 - data/lib/rubocop/cop/style/arguments_forwarding.rb +2 -2
 - data/lib/rubocop/cop/style/block_delimiters.rb +26 -7
 - data/lib/rubocop/cop/style/case_equality.rb +40 -10
 - data/lib/rubocop/cop/style/class_and_module_children.rb +4 -4
 - data/lib/rubocop/cop/style/class_equality_comparison.rb +32 -7
 - data/lib/rubocop/cop/style/class_methods_definitions.rb +2 -1
 - data/lib/rubocop/cop/style/collection_compact.rb +6 -1
 - data/lib/rubocop/cop/style/collection_methods.rb +2 -0
 - data/lib/rubocop/cop/style/combinable_loops.rb +3 -1
 - data/lib/rubocop/cop/style/double_negation.rb +2 -0
 - data/lib/rubocop/cop/style/each_for_simple_loop.rb +41 -6
 - data/lib/rubocop/cop/style/each_with_object.rb +39 -8
 - data/lib/rubocop/cop/style/empty_block_parameter.rb +1 -1
 - data/lib/rubocop/cop/style/empty_heredoc.rb +15 -1
 - data/lib/rubocop/cop/style/empty_lambda_parameter.rb +1 -1
 - data/lib/rubocop/cop/style/empty_method.rb +1 -1
 - data/lib/rubocop/cop/style/endless_method.rb +1 -1
 - data/lib/rubocop/cop/style/explicit_block_argument.rb +4 -0
 - data/lib/rubocop/cop/style/for.rb +2 -0
 - data/lib/rubocop/cop/style/format_string_token.rb +21 -8
 - data/lib/rubocop/cop/style/guard_clause.rb +27 -16
 - data/lib/rubocop/cop/style/hash_each_methods.rb +3 -1
 - data/lib/rubocop/cop/style/hash_except.rb +0 -4
 - data/lib/rubocop/cop/style/hash_syntax.rb +17 -0
 - data/lib/rubocop/cop/style/if_unless_modifier.rb +1 -1
 - data/lib/rubocop/cop/style/inverse_methods.rb +8 -6
 - data/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +15 -4
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +5 -1
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +7 -7
 - data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +11 -6
 - data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +4 -1
 - data/lib/rubocop/cop/style/multiline_block_chain.rb +3 -1
 - data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +1 -1
 - data/lib/rubocop/cop/style/negated_if_else_condition.rb +7 -1
 - data/lib/rubocop/cop/style/next.rb +3 -5
 - data/lib/rubocop/cop/style/nil_lambda.rb +1 -1
 - data/lib/rubocop/cop/style/numeric_literals.rb +16 -1
 - data/lib/rubocop/cop/style/numeric_predicate.rb +28 -8
 - data/lib/rubocop/cop/style/object_then.rb +2 -0
 - data/lib/rubocop/cop/style/operator_method_call.rb +39 -0
 - data/lib/rubocop/cop/style/perl_backrefs.rb +22 -1
 - data/lib/rubocop/cop/style/proc.rb +4 -1
 - data/lib/rubocop/cop/style/redundant_begin.rb +3 -0
 - data/lib/rubocop/cop/style/redundant_condition.rb +24 -6
 - data/lib/rubocop/cop/style/redundant_fetch_block.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_initialize.rb +3 -1
 - data/lib/rubocop/cop/style/redundant_parentheses.rb +19 -22
 - data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +8 -1
 - data/lib/rubocop/cop/style/redundant_self.rb +2 -0
 - data/lib/rubocop/cop/style/redundant_sort.rb +21 -6
 - data/lib/rubocop/cop/style/redundant_sort_by.rb +24 -8
 - data/lib/rubocop/cop/style/redundant_string_escape.rb +173 -0
 - data/lib/rubocop/cop/style/rescue_modifier.rb +1 -1
 - data/lib/rubocop/cop/style/safe_navigation.rb +4 -2
 - data/lib/rubocop/cop/style/single_line_block_params.rb +1 -1
 - data/lib/rubocop/cop/style/sole_nested_conditional.rb +14 -5
 - data/lib/rubocop/cop/style/static_class.rb +32 -1
 - data/lib/rubocop/cop/style/symbol_array.rb +3 -1
 - data/lib/rubocop/cop/style/symbol_proc.rb +38 -12
 - data/lib/rubocop/cop/style/ternary_parentheses.rb +1 -13
 - data/lib/rubocop/cop/style/top_level_method_definition.rb +3 -1
 - data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +1 -1
 - data/lib/rubocop/cop/style/word_array.rb +3 -1
 - data/lib/rubocop/cop/util.rb +1 -1
 - data/lib/rubocop/ext/range.rb +15 -0
 - data/lib/rubocop/feature_loader.rb +94 -0
 - data/lib/rubocop/formatter/clang_style_formatter.rb +1 -1
 - data/lib/rubocop/formatter/disabled_config_formatter.rb +9 -3
 - data/lib/rubocop/formatter/html_formatter.rb +3 -3
 - data/lib/rubocop/formatter/markdown_formatter.rb +1 -1
 - data/lib/rubocop/formatter/tap_formatter.rb +1 -1
 - data/lib/rubocop/options.rb +13 -13
 - data/lib/rubocop/result_cache.rb +22 -20
 - data/lib/rubocop/rspec/shared_contexts.rb +13 -1
 - data/lib/rubocop/runner.rb +4 -0
 - data/lib/rubocop/server/cache.rb +41 -2
 - data/lib/rubocop/server/cli.rb +26 -2
 - data/lib/rubocop/server/client_command/exec.rb +5 -0
 - data/lib/rubocop/server/core.rb +2 -1
 - data/lib/rubocop/server/socket_reader.rb +5 -1
 - data/lib/rubocop/server.rb +1 -1
 - data/lib/rubocop/version.rb +8 -2
 - data/lib/rubocop.rb +8 -3
 - metadata +20 -9
 - data/lib/rubocop/cop/mixin/ignored_methods.rb +0 -52
 
| 
         @@ -6,21 +6,16 @@ module RuboCop 
     | 
|
| 
       6 
6 
     | 
    
         
             
                #
         
     | 
| 
       7 
7 
     | 
    
         
             
                # This module handles measurement and reporting of complexity in methods.
         
     | 
| 
       8 
8 
     | 
    
         
             
                module MethodComplexity
         
     | 
| 
       9 
     | 
    
         
            -
                  include  
     | 
| 
      
 9 
     | 
    
         
            +
                  include AllowedMethods
         
     | 
| 
      
 10 
     | 
    
         
            +
                  include AllowedPattern
         
     | 
| 
       10 
11 
     | 
    
         
             
                  include Metrics::Utils::RepeatedCsendDiscount
         
     | 
| 
       11 
12 
     | 
    
         
             
                  extend NodePattern::Macros
         
     | 
| 
       12 
13 
     | 
    
         
             
                  extend ExcludeLimit
         
     | 
| 
       13 
14 
     | 
    
         | 
| 
       14 
15 
     | 
    
         
             
                  exclude_limit 'Max'
         
     | 
| 
       15 
16 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
                  # Ensure cops that include `MethodComplexity` have the config
         
     | 
| 
       17 
     | 
    
         
            -
                  # `attr_accessor`s that `ignored_method?` needs.
         
     | 
| 
       18 
     | 
    
         
            -
                  def self.included(base)
         
     | 
| 
       19 
     | 
    
         
            -
                    base.extend(IgnoredMethods::Config)
         
     | 
| 
       20 
     | 
    
         
            -
                  end
         
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
17 
     | 
    
         
             
                  def on_def(node)
         
     | 
| 
       23 
     | 
    
         
            -
                    return if  
     | 
| 
      
 18 
     | 
    
         
            +
                    return if allowed_method?(node.method_name) || matches_allowed_pattern?(node.method_name)
         
     | 
| 
       24 
19 
     | 
    
         | 
| 
       25 
20 
     | 
    
         
             
                    check_complexity(node, node.method_name)
         
     | 
| 
       26 
21 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -28,20 +23,20 @@ module RuboCop 
     | 
|
| 
       28 
23 
     | 
    
         | 
| 
       29 
24 
     | 
    
         
             
                  def on_block(node)
         
     | 
| 
       30 
25 
     | 
    
         
             
                    define_method?(node) do |name|
         
     | 
| 
       31 
     | 
    
         
            -
                      return if  
     | 
| 
      
 26 
     | 
    
         
            +
                      return if allowed_method?(name) || matches_allowed_pattern?(name)
         
     | 
| 
       32 
27 
     | 
    
         | 
| 
       33 
28 
     | 
    
         
             
                      check_complexity(node, name)
         
     | 
| 
       34 
29 
     | 
    
         
             
                    end
         
     | 
| 
       35 
30 
     | 
    
         
             
                  end
         
     | 
| 
       36 
31 
     | 
    
         | 
| 
      
 32 
     | 
    
         
            +
                  alias on_numblock on_block
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
       37 
34 
     | 
    
         
             
                  private
         
     | 
| 
       38 
35 
     | 
    
         | 
| 
       39 
36 
     | 
    
         
             
                  # @!method define_method?(node)
         
     | 
| 
       40 
37 
     | 
    
         
             
                  def_node_matcher :define_method?, <<~PATTERN
         
     | 
| 
       41 
     | 
    
         
            -
                    (block
         
     | 
| 
       42 
     | 
    
         
            -
                     (send nil? :define_method ({sym str} $_))
         
     | 
| 
       43 
     | 
    
         
            -
                     args
         
     | 
| 
       44 
     | 
    
         
            -
                     _)
         
     | 
| 
      
 38 
     | 
    
         
            +
                    ({block numblock}
         
     | 
| 
      
 39 
     | 
    
         
            +
                     (send nil? :define_method ({sym str} $_)) _ _)
         
     | 
| 
       45 
40 
     | 
    
         
             
                  PATTERN
         
     | 
| 
       46 
41 
     | 
    
         | 
| 
       47 
42 
     | 
    
         
             
                  def check_complexity(node, method_name)
         
     | 
| 
         @@ -57,7 +57,7 @@ module RuboCop 
     | 
|
| 
       57 
57 
     | 
    
         
             
                    end
         
     | 
| 
       58 
58 
     | 
    
         | 
| 
       59 
59 
     | 
    
         
             
                    if left_parenthesis && style == :special_inside_parentheses
         
     | 
| 
       60 
     | 
    
         
            -
                      return [left_parenthesis.column + 1, : 
     | 
| 
      
 60 
     | 
    
         
            +
                      return [left_parenthesis.column + 1, :first_column_after_left_parenthesis]
         
     | 
| 
       61 
61 
     | 
    
         
             
                    end
         
     | 
| 
       62 
62 
     | 
    
         | 
| 
       63 
63 
     | 
    
         
             
                    [left_brace.source_line =~ /\S/, :start_of_line]
         
     | 
| 
         @@ -54,11 +54,11 @@ module RuboCop 
     | 
|
| 
       54 
54 
     | 
    
         
             
                  NOT_GIVEN = Module.new
         
     | 
| 
       55 
55 
     | 
    
         
             
                  def range_with_surrounding_space(range_positional = NOT_GIVEN, # rubocop:disable Metrics/ParameterLists
         
     | 
| 
       56 
56 
     | 
    
         
             
                                                   range: NOT_GIVEN, side: :both, newlines: true,
         
     | 
| 
       57 
     | 
    
         
            -
                                                   whitespace: false, continuations: false 
     | 
| 
      
 57 
     | 
    
         
            +
                                                   whitespace: false, continuations: false,
         
     | 
| 
      
 58 
     | 
    
         
            +
                                                   buffer: @processed_source.buffer)
         
     | 
| 
       58 
59 
     | 
    
         | 
| 
       59 
60 
     | 
    
         
             
                    range = range_positional unless range_positional == NOT_GIVEN
         
     | 
| 
       60 
61 
     | 
    
         | 
| 
       61 
     | 
    
         
            -
                    buffer = @processed_source.buffer
         
     | 
| 
       62 
62 
     | 
    
         
             
                    src = buffer.source
         
     | 
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
                    go_left, go_right = directions(side)
         
     | 
| 
         @@ -70,9 +70,8 @@ module RuboCop 
     | 
|
| 
       70 
70 
     | 
    
         
             
                    Parser::Source::Range.new(buffer, begin_pos, end_pos)
         
     | 
| 
       71 
71 
     | 
    
         
             
                  end
         
     | 
| 
       72 
72 
     | 
    
         | 
| 
       73 
     | 
    
         
            -
                  def range_by_whole_lines(range, include_final_newline: false 
     | 
| 
       74 
     | 
    
         
            -
             
     | 
| 
       75 
     | 
    
         
            -
             
     | 
| 
      
 73 
     | 
    
         
            +
                  def range_by_whole_lines(range, include_final_newline: false,
         
     | 
| 
      
 74 
     | 
    
         
            +
                                           buffer: @processed_source.buffer)
         
     | 
| 
       76 
75 
     | 
    
         
             
                    last_line = buffer.source_line(range.last_line)
         
     | 
| 
       77 
76 
     | 
    
         
             
                    end_offset = last_line.length - range.last_column
         
     | 
| 
       78 
77 
     | 
    
         
             
                    end_offset += 1 if include_final_newline
         
     | 
| 
         @@ -11,7 +11,9 @@ module RuboCop 
     | 
|
| 
       11 
11 
     | 
    
         
             
                  private
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
13 
     | 
    
         
             
                  def rescue_modifier?(node)
         
     | 
| 
       14 
     | 
    
         
            -
                     
     | 
| 
      
 14 
     | 
    
         
            +
                    return false unless node.respond_to?(:resbody_type?)
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                    node.resbody_type? && @modifier_locations.include?(node.loc.keyword)
         
     | 
| 
       15 
17 
     | 
    
         
             
                  end
         
     | 
| 
       16 
18 
     | 
    
         | 
| 
       17 
19 
     | 
    
         
             
                  # @deprecated Use ResbodyNode#exceptions instead
         
     | 
| 
         @@ -13,7 +13,7 @@ module RuboCop 
     | 
|
| 
       13 
13 
     | 
    
         | 
| 
       14 
14 
     | 
    
         
             
                  private
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
                  def side_space_range(range:, side:)
         
     | 
| 
      
 16 
     | 
    
         
            +
                  def side_space_range(range:, side:, include_newlines: false)
         
     | 
| 
       17 
17 
     | 
    
         
             
                    buffer = processed_source.buffer
         
     | 
| 
       18 
18 
     | 
    
         
             
                    src = buffer.source
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
         @@ -21,11 +21,11 @@ module RuboCop 
     | 
|
| 
       21 
21 
     | 
    
         
             
                    end_pos = range.end_pos
         
     | 
| 
       22 
22 
     | 
    
         
             
                    if side == :left
         
     | 
| 
       23 
23 
     | 
    
         
             
                      end_pos = begin_pos
         
     | 
| 
       24 
     | 
    
         
            -
                      begin_pos = reposition(src, begin_pos, -1)
         
     | 
| 
      
 24 
     | 
    
         
            +
                      begin_pos = reposition(src, begin_pos, -1, include_newlines: include_newlines)
         
     | 
| 
       25 
25 
     | 
    
         
             
                    end
         
     | 
| 
       26 
26 
     | 
    
         
             
                    if side == :right
         
     | 
| 
       27 
27 
     | 
    
         
             
                      begin_pos = end_pos
         
     | 
| 
       28 
     | 
    
         
            -
                      end_pos = reposition(src, end_pos, 1)
         
     | 
| 
      
 28 
     | 
    
         
            +
                      end_pos = reposition(src, end_pos, 1, include_newlines: include_newlines)
         
     | 
| 
       29 
29 
     | 
    
         
             
                    end
         
     | 
| 
       30 
30 
     | 
    
         
             
                    Parser::Source::Range.new(buffer, begin_pos, end_pos)
         
     | 
| 
       31 
31 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -75,9 +75,10 @@ module RuboCop 
     | 
|
| 
       75 
75 
     | 
    
         
             
                    end
         
     | 
| 
       76 
76 
     | 
    
         
             
                  end
         
     | 
| 
       77 
77 
     | 
    
         | 
| 
       78 
     | 
    
         
            -
                  def reposition(src, pos, step)
         
     | 
| 
      
 78 
     | 
    
         
            +
                  def reposition(src, pos, step, include_newlines: false)
         
     | 
| 
       79 
79 
     | 
    
         
             
                    offset = step == -1 ? -1 : 0
         
     | 
| 
       80 
     | 
    
         
            -
                    pos += step while SINGLE_SPACE_REGEXP.match?(src[pos + offset])
         
     | 
| 
      
 80 
     | 
    
         
            +
                    pos += step while SINGLE_SPACE_REGEXP.match?(src[pos + offset]) ||
         
     | 
| 
      
 81 
     | 
    
         
            +
                                      (include_newlines && src[pos + offset] == "\n")
         
     | 
| 
       81 
82 
     | 
    
         
             
                    pos.negative? ? 0 : pos
         
     | 
| 
       82 
83 
     | 
    
         
             
                  end
         
     | 
| 
       83 
84 
     | 
    
         | 
| 
         @@ -72,10 +72,10 @@ module RuboCop 
     | 
|
| 
       72 
72 
     | 
    
         
             
                    PATTERN
         
     | 
| 
       73 
73 
     | 
    
         | 
| 
       74 
74 
     | 
    
         
             
                    def allowed_conditional_expression_on_rhs?(node)
         
     | 
| 
       75 
     | 
    
         
            -
                      node&.if_type? &&  
     | 
| 
      
 75 
     | 
    
         
            +
                      node&.if_type? && contains_constant?(node)
         
     | 
| 
       76 
76 
     | 
    
         
             
                    end
         
     | 
| 
       77 
77 
     | 
    
         | 
| 
       78 
     | 
    
         
            -
                    def  
     | 
| 
      
 78 
     | 
    
         
            +
                    def contains_constant?(node)
         
     | 
| 
       79 
79 
     | 
    
         
             
                      node.branches.any?(&:const_type?)
         
     | 
| 
       80 
80 
     | 
    
         
             
                    end
         
     | 
| 
       81 
81 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -3,7 +3,7 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            module RuboCop
         
     | 
| 
       4 
4 
     | 
    
         
             
              module Cop
         
     | 
| 
       5 
5 
     | 
    
         
             
                module Naming
         
     | 
| 
       6 
     | 
    
         
            -
                  #  
     | 
| 
      
 6 
     | 
    
         
            +
                  # Recommends the use of inclusive language instead of problematic terms.
         
     | 
| 
       7 
7 
     | 
    
         
             
                  # The cop can check the following locations for offenses:
         
     | 
| 
       8 
8 
     | 
    
         
             
                  # - identifiers
         
     | 
| 
       9 
9 
     | 
    
         
             
                  # - constants
         
     | 
| 
         @@ -3,9 +3,30 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            module RuboCop
         
     | 
| 
       4 
4 
     | 
    
         
             
              module Cop
         
     | 
| 
       5 
5 
     | 
    
         
             
                module Naming
         
     | 
| 
       6 
     | 
    
         
            -
                  #  
     | 
| 
       7 
     | 
    
         
            -
                  #  
     | 
| 
       8 
     | 
    
         
            -
                  # 
     | 
| 
      
 6 
     | 
    
         
            +
                  # Checks that predicate methods names end with a question mark and
         
     | 
| 
      
 7 
     | 
    
         
            +
                  # do not start with a forbidden prefix.
         
     | 
| 
      
 8 
     | 
    
         
            +
                  #
         
     | 
| 
      
 9 
     | 
    
         
            +
                  # A method is determined to be a predicate method if its name starts
         
     | 
| 
      
 10 
     | 
    
         
            +
                  # with one of the prefixes defined in the `NamePrefix` configuration.
         
     | 
| 
      
 11 
     | 
    
         
            +
                  # You can change what prefixes are considered by changing this option.
         
     | 
| 
      
 12 
     | 
    
         
            +
                  # Any method name that starts with one of these prefixes is required by
         
     | 
| 
      
 13 
     | 
    
         
            +
                  # the cop to end with a `?`. Other methods can be allowed by adding to
         
     | 
| 
      
 14 
     | 
    
         
            +
                  # the `AllowedMethods` configuration.
         
     | 
| 
      
 15 
     | 
    
         
            +
                  #
         
     | 
| 
      
 16 
     | 
    
         
            +
                  # NOTE: The `is_a?` method is allowed by default.
         
     | 
| 
      
 17 
     | 
    
         
            +
                  #
         
     | 
| 
      
 18 
     | 
    
         
            +
                  # If `ForbiddenPrefixes` is set, methods that start with the configured
         
     | 
| 
      
 19 
     | 
    
         
            +
                  # prefixes will not be allowed and will be removed by autocorrection.
         
     | 
| 
      
 20 
     | 
    
         
            +
                  #
         
     | 
| 
      
 21 
     | 
    
         
            +
                  # In other words, if `ForbiddenPrefixes` is empty, a method named `is_foo`
         
     | 
| 
      
 22 
     | 
    
         
            +
                  # will register an offense only due to the lack of question mark (and will be
         
     | 
| 
      
 23 
     | 
    
         
            +
                  # autocorrected to `is_foo?`). If `ForbiddenPrefixes` contains `is_`,
         
     | 
| 
      
 24 
     | 
    
         
            +
                  # `is_foo` will register an offense both because the ? is missing and because of
         
     | 
| 
      
 25 
     | 
    
         
            +
                  # the `is_` prefix, and will be corrected to `foo?`.
         
     | 
| 
      
 26 
     | 
    
         
            +
                  #
         
     | 
| 
      
 27 
     | 
    
         
            +
                  # NOTE: `ForbiddenPrefixes` is only applied to prefixes in `NamePrefix`;
         
     | 
| 
      
 28 
     | 
    
         
            +
                  # a prefix in the former but not the latter will not be considered by
         
     | 
| 
      
 29 
     | 
    
         
            +
                  # this cop.
         
     | 
| 
       9 
30 
     | 
    
         
             
                  #
         
     | 
| 
       10 
31 
     | 
    
         
             
                  # @example
         
     | 
| 
       11 
32 
     | 
    
         
             
                  #   # bad
         
     | 
| 
         @@ -9,6 +9,11 @@ module RuboCop 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  # Applications of visibility methods to symbols can be controlled
         
     | 
| 
       10 
10 
     | 
    
         
             
                  # using AllowModifiersOnSymbols config.
         
     | 
| 
       11 
11 
     | 
    
         
             
                  #
         
     | 
| 
      
 12 
     | 
    
         
            +
                  # @safety
         
     | 
| 
      
 13 
     | 
    
         
            +
                  #   Autocorrection is not safe, because the visibility of dynamically
         
     | 
| 
      
 14 
     | 
    
         
            +
                  #   defined methods can vary depending on the state determined by
         
     | 
| 
      
 15 
     | 
    
         
            +
                  #   the group access modifier.
         
     | 
| 
      
 16 
     | 
    
         
            +
                  #
         
     | 
| 
       12 
17 
     | 
    
         
             
                  # @example EnforcedStyle: group (default)
         
     | 
| 
       13 
18 
     | 
    
         
             
                  #   # bad
         
     | 
| 
       14 
19 
     | 
    
         
             
                  #   class Foo
         
     | 
| 
         @@ -63,7 +68,10 @@ module RuboCop 
     | 
|
| 
       63 
68 
     | 
    
         
             
                  #
         
     | 
| 
       64 
69 
     | 
    
         
             
                  #   end
         
     | 
| 
       65 
70 
     | 
    
         
             
                  class AccessModifierDeclarations < Base
         
     | 
| 
      
 71 
     | 
    
         
            +
                    extend AutoCorrector
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
       66 
73 
     | 
    
         
             
                    include ConfigurableEnforcedStyle
         
     | 
| 
      
 74 
     | 
    
         
            +
                    include RangeHelp
         
     | 
| 
       67 
75 
     | 
    
         | 
| 
       68 
76 
     | 
    
         
             
                    GROUP_STYLE_MESSAGE = [
         
     | 
| 
       69 
77 
     | 
    
         
             
                      '`%<access_modifier>s` should not be',
         
     | 
| 
         @@ -88,7 +96,10 @@ module RuboCop 
     | 
|
| 
       88 
96 
     | 
    
         
             
                      return if allow_modifiers_on_symbols?(node)
         
     | 
| 
       89 
97 
     | 
    
         | 
| 
       90 
98 
     | 
    
         
             
                      if offense?(node)
         
     | 
| 
       91 
     | 
    
         
            -
                        add_offense(node.loc.selector)  
     | 
| 
      
 99 
     | 
    
         
            +
                        add_offense(node.loc.selector) do |corrector|
         
     | 
| 
      
 100 
     | 
    
         
            +
                          autocorrect(corrector, node)
         
     | 
| 
      
 101 
     | 
    
         
            +
                        end
         
     | 
| 
      
 102 
     | 
    
         
            +
                        opposite_style_detected
         
     | 
| 
       92 
103 
     | 
    
         
             
                      else
         
     | 
| 
       93 
104 
     | 
    
         
             
                        correct_style_detected
         
     | 
| 
       94 
105 
     | 
    
         
             
                      end
         
     | 
| 
         @@ -96,6 +107,23 @@ module RuboCop 
     | 
|
| 
       96 
107 
     | 
    
         | 
| 
       97 
108 
     | 
    
         
             
                    private
         
     | 
| 
       98 
109 
     | 
    
         | 
| 
      
 110 
     | 
    
         
            +
                    def autocorrect(corrector, node)
         
     | 
| 
      
 111 
     | 
    
         
            +
                      case style
         
     | 
| 
      
 112 
     | 
    
         
            +
                      when :group
         
     | 
| 
      
 113 
     | 
    
         
            +
                        def_node = find_corresponding_def_node(node)
         
     | 
| 
      
 114 
     | 
    
         
            +
                        return unless def_node
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                        remove_node(corrector, def_node)
         
     | 
| 
      
 117 
     | 
    
         
            +
                        remove_node(corrector, node)
         
     | 
| 
      
 118 
     | 
    
         
            +
                        insert_def(corrector, node, def_node.source)
         
     | 
| 
      
 119 
     | 
    
         
            +
                      when :inline
         
     | 
| 
      
 120 
     | 
    
         
            +
                        remove_node(corrector, node)
         
     | 
| 
      
 121 
     | 
    
         
            +
                        select_grouped_def_nodes(node).each do |grouped_def_node|
         
     | 
| 
      
 122 
     | 
    
         
            +
                          insert_inline_modifier(corrector, grouped_def_node, node.method_name)
         
     | 
| 
      
 123 
     | 
    
         
            +
                        end
         
     | 
| 
      
 124 
     | 
    
         
            +
                      end
         
     | 
| 
      
 125 
     | 
    
         
            +
                    end
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
       99 
127 
     | 
    
         
             
                    def allow_modifiers_on_symbols?(node)
         
     | 
| 
       100 
128 
     | 
    
         
             
                      cop_config['AllowModifiersOnSymbols'] && access_modifier_with_symbol?(node)
         
     | 
| 
       101 
129 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -130,6 +158,74 @@ module RuboCop 
     | 
|
| 
       130 
158 
     | 
    
         
             
                        format(INLINE_STYLE_MESSAGE, access_modifier: access_modifier)
         
     | 
| 
       131 
159 
     | 
    
         
             
                      end
         
     | 
| 
       132 
160 
     | 
    
         
             
                    end
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
                    def find_corresponding_def_node(node)
         
     | 
| 
      
 163 
     | 
    
         
            +
                      if access_modifier_with_symbol?(node)
         
     | 
| 
      
 164 
     | 
    
         
            +
                        method_name = node.arguments.first.value
         
     | 
| 
      
 165 
     | 
    
         
            +
                        node.parent.each_child_node(:def).find do |child|
         
     | 
| 
      
 166 
     | 
    
         
            +
                          child.method?(method_name)
         
     | 
| 
      
 167 
     | 
    
         
            +
                        end
         
     | 
| 
      
 168 
     | 
    
         
            +
                      else
         
     | 
| 
      
 169 
     | 
    
         
            +
                        node.arguments.first
         
     | 
| 
      
 170 
     | 
    
         
            +
                      end
         
     | 
| 
      
 171 
     | 
    
         
            +
                    end
         
     | 
| 
      
 172 
     | 
    
         
            +
             
     | 
| 
      
 173 
     | 
    
         
            +
                    def find_argument_less_modifier_node(node)
         
     | 
| 
      
 174 
     | 
    
         
            +
                      node.parent.each_child_node(:send).find do |child|
         
     | 
| 
      
 175 
     | 
    
         
            +
                        child.method?(node.method_name) && child.arguments.empty?
         
     | 
| 
      
 176 
     | 
    
         
            +
                      end
         
     | 
| 
      
 177 
     | 
    
         
            +
                    end
         
     | 
| 
      
 178 
     | 
    
         
            +
             
     | 
| 
      
 179 
     | 
    
         
            +
                    def select_grouped_def_nodes(node)
         
     | 
| 
      
 180 
     | 
    
         
            +
                      node.right_siblings.take_while do |sibling|
         
     | 
| 
      
 181 
     | 
    
         
            +
                        !(sibling.send_type? && sibling.bare_access_modifier_declaration?)
         
     | 
| 
      
 182 
     | 
    
         
            +
                      end.select(&:def_type?)
         
     | 
| 
      
 183 
     | 
    
         
            +
                    end
         
     | 
| 
      
 184 
     | 
    
         
            +
             
     | 
| 
      
 185 
     | 
    
         
            +
                    def insert_def(corrector, node, source)
         
     | 
| 
      
 186 
     | 
    
         
            +
                      source = [*processed_source.ast_with_comments[node].map(&:text), source].join("\n")
         
     | 
| 
      
 187 
     | 
    
         
            +
                      argument_less_modifier_node = find_argument_less_modifier_node(node)
         
     | 
| 
      
 188 
     | 
    
         
            +
                      if argument_less_modifier_node
         
     | 
| 
      
 189 
     | 
    
         
            +
                        corrector.insert_after(argument_less_modifier_node, "\n\n#{source}")
         
     | 
| 
      
 190 
     | 
    
         
            +
                      else
         
     | 
| 
      
 191 
     | 
    
         
            +
                        corrector.insert_before(
         
     | 
| 
      
 192 
     | 
    
         
            +
                          node.each_ancestor(:block, :class, :module).first.location.end,
         
     | 
| 
      
 193 
     | 
    
         
            +
                          "#{node.method_name}\n\n#{source}\n"
         
     | 
| 
      
 194 
     | 
    
         
            +
                        )
         
     | 
| 
      
 195 
     | 
    
         
            +
                      end
         
     | 
| 
      
 196 
     | 
    
         
            +
                    end
         
     | 
| 
      
 197 
     | 
    
         
            +
             
     | 
| 
      
 198 
     | 
    
         
            +
                    def insert_inline_modifier(corrector, node, modifier_name)
         
     | 
| 
      
 199 
     | 
    
         
            +
                      corrector.insert_before(node, "#{modifier_name} ")
         
     | 
| 
      
 200 
     | 
    
         
            +
                    end
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
                    def remove_node(corrector, node)
         
     | 
| 
      
 203 
     | 
    
         
            +
                      corrector.remove(
         
     | 
| 
      
 204 
     | 
    
         
            +
                        range_by_whole_lines(
         
     | 
| 
      
 205 
     | 
    
         
            +
                          range_with_comments(node),
         
     | 
| 
      
 206 
     | 
    
         
            +
                          include_final_newline: true
         
     | 
| 
      
 207 
     | 
    
         
            +
                        )
         
     | 
| 
      
 208 
     | 
    
         
            +
                      )
         
     | 
| 
      
 209 
     | 
    
         
            +
                    end
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
                    def range_with_comments(node)
         
     | 
| 
      
 212 
     | 
    
         
            +
                      ranges = [
         
     | 
| 
      
 213 
     | 
    
         
            +
                        node,
         
     | 
| 
      
 214 
     | 
    
         
            +
                        *processed_source.ast_with_comments[node]
         
     | 
| 
      
 215 
     | 
    
         
            +
                      ].map do |element|
         
     | 
| 
      
 216 
     | 
    
         
            +
                        element.location.expression
         
     | 
| 
      
 217 
     | 
    
         
            +
                      end
         
     | 
| 
      
 218 
     | 
    
         
            +
                      ranges.reduce do |result, range|
         
     | 
| 
      
 219 
     | 
    
         
            +
                        add_range(result, range)
         
     | 
| 
      
 220 
     | 
    
         
            +
                      end
         
     | 
| 
      
 221 
     | 
    
         
            +
                    end
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
                    def add_range(range1, range2)
         
     | 
| 
      
 224 
     | 
    
         
            +
                      range1.with(
         
     | 
| 
      
 225 
     | 
    
         
            +
                        begin_pos: [range1.begin_pos, range2.begin_pos].min,
         
     | 
| 
      
 226 
     | 
    
         
            +
                        end_pos: [range1.end_pos, range2.end_pos].max
         
     | 
| 
      
 227 
     | 
    
         
            +
                      )
         
     | 
| 
      
 228 
     | 
    
         
            +
                    end
         
     | 
| 
       133 
229 
     | 
    
         
             
                  end
         
     | 
| 
       134 
230 
     | 
    
         
             
                end
         
     | 
| 
       135 
231 
     | 
    
         
             
              end
         
     | 
| 
         @@ -135,12 +135,16 @@ module RuboCop 
     | 
|
| 
       135 
135 
     | 
    
         
             
                    end
         
     | 
| 
       136 
136 
     | 
    
         | 
| 
       137 
137 
     | 
    
         
             
                    def separate_accessors(node)
         
     | 
| 
       138 
     | 
    
         
            -
                      node.arguments. 
     | 
| 
       139 
     | 
    
         
            -
                         
     | 
| 
      
 138 
     | 
    
         
            +
                      node.arguments.flat_map do |arg|
         
     | 
| 
      
 139 
     | 
    
         
            +
                        lines = [
         
     | 
| 
      
 140 
     | 
    
         
            +
                          *processed_source.ast_with_comments[arg].map(&:text),
         
     | 
| 
       140 
141 
     | 
    
         
             
                          "#{node.method_name} #{arg.source}"
         
     | 
| 
      
 142 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 143 
     | 
    
         
            +
                        if arg == node.arguments.first
         
     | 
| 
      
 144 
     | 
    
         
            +
                          lines
         
     | 
| 
       141 
145 
     | 
    
         
             
                        else
         
     | 
| 
       142 
146 
     | 
    
         
             
                          indent = ' ' * node.loc.column
         
     | 
| 
       143 
     | 
    
         
            -
                          "#{indent}#{ 
     | 
| 
      
 147 
     | 
    
         
            +
                          lines.map { |line| "#{indent}#{line}" }
         
     | 
| 
       144 
148 
     | 
    
         
             
                        end
         
     | 
| 
       145 
149 
     | 
    
         
             
                      end.join("\n")
         
     | 
| 
       146 
150 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -73,11 +73,11 @@ module RuboCop 
     | 
|
| 
       73 
73 
     | 
    
         
             
                      {
         
     | 
| 
       74 
74 
     | 
    
         
             
                        (send _ _
         
     | 
| 
       75 
75 
     | 
    
         
             
                          (splat (lvar %1))
         
     | 
| 
       76 
     | 
    
         
            -
                          (block-pass (lvar %2)))
         
     | 
| 
      
 76 
     | 
    
         
            +
                          (block-pass {(lvar %2) nil?}))
         
     | 
| 
       77 
77 
     | 
    
         
             
                        (send _ _
         
     | 
| 
       78 
78 
     | 
    
         
             
                          (splat (lvar %1))
         
     | 
| 
       79 
79 
     | 
    
         
             
                          (hash (kwsplat (lvar %3)))
         
     | 
| 
       80 
     | 
    
         
            -
                          (block-pass (lvar %2)))
         
     | 
| 
      
 80 
     | 
    
         
            +
                          (block-pass {(lvar %2) nil?}))
         
     | 
| 
       81 
81 
     | 
    
         
             
                      }
         
     | 
| 
       82 
82 
     | 
    
         
             
                    PATTERN
         
     | 
| 
       83 
83 
     | 
    
         | 
| 
         @@ -10,7 +10,7 @@ module RuboCop 
     | 
|
| 
       10 
10 
     | 
    
         
             
                  # Methods that can be either procedural or functional and cannot be
         
     | 
| 
       11 
11 
     | 
    
         
             
                  # categorised from their usage alone is ignored.
         
     | 
| 
       12 
12 
     | 
    
         
             
                  # `lambda`, `proc`, and `it` are their defaults.
         
     | 
| 
       13 
     | 
    
         
            -
                  # Additional methods can be added to the ` 
     | 
| 
      
 13 
     | 
    
         
            +
                  # Additional methods can be added to the `AllowedMethods`.
         
     | 
| 
       14 
14 
     | 
    
         
             
                  #
         
     | 
| 
       15 
15 
     | 
    
         
             
                  # @example EnforcedStyle: line_count_based (default)
         
     | 
| 
       16 
16 
     | 
    
         
             
                  #   # bad - single line block
         
     | 
| 
         @@ -66,7 +66,7 @@ module RuboCop 
     | 
|
| 
       66 
66 
     | 
    
         
             
                  #     x
         
     | 
| 
       67 
67 
     | 
    
         
             
                  #   }.inspect
         
     | 
| 
       68 
68 
     | 
    
         
             
                  #
         
     | 
| 
       69 
     | 
    
         
            -
                  #   # The AllowBracesOnProceduralOneLiners option is  
     | 
| 
      
 69 
     | 
    
         
            +
                  #   # The AllowBracesOnProceduralOneLiners option is allowed unless the
         
     | 
| 
       70 
70 
     | 
    
         
             
                  #   # EnforcedStyle is set to `semantic`. If so:
         
     | 
| 
       71 
71 
     | 
    
         
             
                  #
         
     | 
| 
       72 
72 
     | 
    
         
             
                  #   # If the AllowBracesOnProceduralOneLiners option is unspecified, or
         
     | 
| 
         @@ -116,7 +116,7 @@ module RuboCop 
     | 
|
| 
       116 
116 
     | 
    
         
             
                  #
         
     | 
| 
       117 
117 
     | 
    
         
             
                  #   # Methods listed in the BracesRequiredMethods list, such as 'sig'
         
     | 
| 
       118 
118 
     | 
    
         
             
                  #   # in this example, will require `{...}` braces. This option takes
         
     | 
| 
       119 
     | 
    
         
            -
                  #   # precedence over all other configurations except  
     | 
| 
      
 119 
     | 
    
         
            +
                  #   # precedence over all other configurations except AllowedMethods.
         
     | 
| 
       120 
120 
     | 
    
         
             
                  #
         
     | 
| 
       121 
121 
     | 
    
         
             
                  #   # bad
         
     | 
| 
       122 
122 
     | 
    
         
             
                  #   sig do
         
     | 
| 
         @@ -138,7 +138,7 @@ module RuboCop 
     | 
|
| 
       138 
138 
     | 
    
         
             
                  #     puts foo
         
     | 
| 
       139 
139 
     | 
    
         
             
                  #   end
         
     | 
| 
       140 
140 
     | 
    
         
             
                  #
         
     | 
| 
       141 
     | 
    
         
            -
                  # @example  
     | 
| 
      
 141 
     | 
    
         
            +
                  # @example AllowedMethods: ['lambda', 'proc', 'it' ] (default)
         
     | 
| 
       142 
142 
     | 
    
         
             
                  #
         
     | 
| 
       143 
143 
     | 
    
         
             
                  #   # good
         
     | 
| 
       144 
144 
     | 
    
         
             
                  #   foo = lambda do |x|
         
     | 
| 
         @@ -149,9 +149,26 @@ module RuboCop 
     | 
|
| 
       149 
149 
     | 
    
         
             
                  #     x * 100
         
     | 
| 
       150 
150 
     | 
    
         
             
                  #   end
         
     | 
| 
       151 
151 
     | 
    
         
             
                  #
         
     | 
| 
      
 152 
     | 
    
         
            +
                  # @example AllowedPatterns: [] (default)
         
     | 
| 
      
 153 
     | 
    
         
            +
                  #
         
     | 
| 
      
 154 
     | 
    
         
            +
                  #   # bad
         
     | 
| 
      
 155 
     | 
    
         
            +
                  #   things.map { |thing|
         
     | 
| 
      
 156 
     | 
    
         
            +
                  #     something = thing.some_method
         
     | 
| 
      
 157 
     | 
    
         
            +
                  #     process(something)
         
     | 
| 
      
 158 
     | 
    
         
            +
                  #   }
         
     | 
| 
      
 159 
     | 
    
         
            +
                  #
         
     | 
| 
      
 160 
     | 
    
         
            +
                  # @example AllowedPatterns: ['map']
         
     | 
| 
      
 161 
     | 
    
         
            +
                  #
         
     | 
| 
      
 162 
     | 
    
         
            +
                  #   # good
         
     | 
| 
      
 163 
     | 
    
         
            +
                  #   things.map { |thing|
         
     | 
| 
      
 164 
     | 
    
         
            +
                  #     something = thing.some_method
         
     | 
| 
      
 165 
     | 
    
         
            +
                  #     process(something)
         
     | 
| 
      
 166 
     | 
    
         
            +
                  #   }
         
     | 
| 
      
 167 
     | 
    
         
            +
                  #
         
     | 
| 
       152 
168 
     | 
    
         
             
                  class BlockDelimiters < Base
         
     | 
| 
       153 
169 
     | 
    
         
             
                    include ConfigurableEnforcedStyle
         
     | 
| 
       154 
     | 
    
         
            -
                    include  
     | 
| 
      
 170 
     | 
    
         
            +
                    include AllowedMethods
         
     | 
| 
      
 171 
     | 
    
         
            +
                    include AllowedPattern
         
     | 
| 
       155 
172 
     | 
    
         
             
                    include RangeHelp
         
     | 
| 
       156 
173 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       157 
174 
     | 
    
         | 
| 
         @@ -330,12 +347,14 @@ module RuboCop 
     | 
|
| 
       330 
347 
     | 
    
         
             
                    end
         
     | 
| 
       331 
348 
     | 
    
         | 
| 
       332 
349 
     | 
    
         
             
                    def special_method?(method_name)
         
     | 
| 
       333 
     | 
    
         
            -
                       
     | 
| 
      
 350 
     | 
    
         
            +
                      allowed_method?(method_name) ||
         
     | 
| 
      
 351 
     | 
    
         
            +
                        matches_allowed_pattern?(method_name) ||
         
     | 
| 
      
 352 
     | 
    
         
            +
                        braces_required_method?(method_name)
         
     | 
| 
       334 
353 
     | 
    
         
             
                    end
         
     | 
| 
       335 
354 
     | 
    
         | 
| 
       336 
355 
     | 
    
         
             
                    def special_method_proper_block_style?(node)
         
     | 
| 
       337 
356 
     | 
    
         
             
                      method_name = node.method_name
         
     | 
| 
       338 
     | 
    
         
            -
                      return true if  
     | 
| 
      
 357 
     | 
    
         
            +
                      return true if allowed_method?(method_name) || matches_allowed_pattern?(method_name)
         
     | 
| 
       339 
358 
     | 
    
         
             
                      return node.braces? if braces_required_method?(method_name)
         
     | 
| 
       340 
359 
     | 
    
         
             
                    end
         
     | 
| 
       341 
360 
     | 
    
         | 
| 
         @@ -7,6 +7,9 @@ module RuboCop 
     | 
|
| 
       7 
7 
     | 
    
         
             
                  #
         
     | 
| 
       8 
8 
     | 
    
         
             
                  # If `AllowOnConstant` option is enabled, the cop will ignore violations when the receiver of
         
     | 
| 
       9 
9 
     | 
    
         
             
                  # the case equality operator is a constant.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                  # If `AllowOnSelfClass` option is enabled, the cop will ignore violations when the receiver of
         
     | 
| 
      
 12 
     | 
    
         
            +
                  # the case equality operator is `self.class`. Note intermediate variables are not accepted.
         
     | 
| 
       10 
13 
     | 
    
         
             
                  #
         
     | 
| 
       11 
14 
     | 
    
         
             
                  # @example
         
     | 
| 
       12 
15 
     | 
    
         
             
                  #   # bad
         
     | 
| 
         @@ -26,6 +29,14 @@ module RuboCop 
     | 
|
| 
       26 
29 
     | 
    
         
             
                  #   # good
         
     | 
| 
       27 
30 
     | 
    
         
             
                  #   Array === something
         
     | 
| 
       28 
31 
     | 
    
         
             
                  #
         
     | 
| 
      
 32 
     | 
    
         
            +
                  # @example AllowOnSelfClass: false (default)
         
     | 
| 
      
 33 
     | 
    
         
            +
                  #   # bad
         
     | 
| 
      
 34 
     | 
    
         
            +
                  #   self.class === something
         
     | 
| 
      
 35 
     | 
    
         
            +
                  #
         
     | 
| 
      
 36 
     | 
    
         
            +
                  # @example AllowOnSelfClass: true
         
     | 
| 
      
 37 
     | 
    
         
            +
                  #   # good
         
     | 
| 
      
 38 
     | 
    
         
            +
                  #   self.class === something
         
     | 
| 
      
 39 
     | 
    
         
            +
                  #
         
     | 
| 
       29 
40 
     | 
    
         
             
                  class CaseEquality < Base
         
     | 
| 
       30 
41 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       31 
42 
     | 
    
         | 
| 
         @@ -33,7 +44,10 @@ module RuboCop 
     | 
|
| 
       33 
44 
     | 
    
         
             
                    RESTRICT_ON_SEND = %i[===].freeze
         
     | 
| 
       34 
45 
     | 
    
         | 
| 
       35 
46 
     | 
    
         
             
                    # @!method case_equality?(node)
         
     | 
| 
       36 
     | 
    
         
            -
                    def_node_matcher :case_equality?, '(send $# 
     | 
| 
      
 47 
     | 
    
         
            +
                    def_node_matcher :case_equality?, '(send $#offending_receiver? :=== $_)'
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                    # @!method self_class?(node)
         
     | 
| 
      
 50 
     | 
    
         
            +
                    def_node_matcher :self_class?, '(send (self) :class)'
         
     | 
| 
       37 
51 
     | 
    
         | 
| 
       38 
52 
     | 
    
         
             
                    def on_send(node)
         
     | 
| 
       39 
53 
     | 
    
         
             
                      case_equality?(node) do |lhs, rhs|
         
     | 
| 
         @@ -48,12 +62,11 @@ module RuboCop 
     | 
|
| 
       48 
62 
     | 
    
         | 
| 
       49 
63 
     | 
    
         
             
                    private
         
     | 
| 
       50 
64 
     | 
    
         | 
| 
       51 
     | 
    
         
            -
                    def  
     | 
| 
       52 
     | 
    
         
            -
                      if cop_config.fetch('AllowOnConstant', false)
         
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
       54 
     | 
    
         
            -
             
     | 
| 
       55 
     | 
    
         
            -
             
     | 
| 
       56 
     | 
    
         
            -
                      end
         
     | 
| 
      
 65 
     | 
    
         
            +
                    def offending_receiver?(node)
         
     | 
| 
      
 66 
     | 
    
         
            +
                      return false if node&.const_type? && cop_config.fetch('AllowOnConstant', false)
         
     | 
| 
      
 67 
     | 
    
         
            +
                      return false if self_class?(node) && cop_config.fetch('AllowOnSelfClass', false)
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                      true
         
     | 
| 
       57 
70 
     | 
    
         
             
                    end
         
     | 
| 
       58 
71 
     | 
    
         | 
| 
       59 
72 
     | 
    
         
             
                    def replacement(lhs, rhs)
         
     | 
| 
         @@ -66,12 +79,29 @@ module RuboCop 
     | 
|
| 
       66 
79 
     | 
    
         
             
                        #
         
     | 
| 
       67 
80 
     | 
    
         
             
                        # So here is noop.
         
     | 
| 
       68 
81 
     | 
    
         
             
                      when :begin
         
     | 
| 
       69 
     | 
    
         
            -
                         
     | 
| 
       70 
     | 
    
         
            -
                        "#{lhs.source}.include?(#{rhs.source})" if child&.range_type?
         
     | 
| 
      
 82 
     | 
    
         
            +
                        begin_replacement(lhs, rhs)
         
     | 
| 
       71 
83 
     | 
    
         
             
                      when :const
         
     | 
| 
       72 
     | 
    
         
            -
                         
     | 
| 
      
 84 
     | 
    
         
            +
                        const_replacement(lhs, rhs)
         
     | 
| 
      
 85 
     | 
    
         
            +
                      when :send
         
     | 
| 
      
 86 
     | 
    
         
            +
                        send_replacement(lhs, rhs)
         
     | 
| 
       73 
87 
     | 
    
         
             
                      end
         
     | 
| 
       74 
88 
     | 
    
         
             
                    end
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
                    def begin_replacement(lhs, rhs)
         
     | 
| 
      
 91 
     | 
    
         
            +
                      return unless lhs.children.first&.range_type?
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                      "#{lhs.source}.include?(#{rhs.source})"
         
     | 
| 
      
 94 
     | 
    
         
            +
                    end
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
                    def const_replacement(lhs, rhs)
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "#{rhs.source}.is_a?(#{lhs.source})"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    end
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
                    def send_replacement(lhs, rhs)
         
     | 
| 
      
 101 
     | 
    
         
            +
                      return unless self_class?(lhs)
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                      "#{rhs.source}.is_a?(#{lhs.source})"
         
     | 
| 
      
 104 
     | 
    
         
            +
                    end
         
     | 
| 
       75 
105 
     | 
    
         
             
                  end
         
     | 
| 
       76 
106 
     | 
    
         
             
                end
         
     | 
| 
       77 
107 
     | 
    
         
             
              end
         
     | 
| 
         @@ -117,10 +117,10 @@ module RuboCop 
     | 
|
| 
       117 
117 
     | 
    
         
             
                    end
         
     | 
| 
       118 
118 
     | 
    
         | 
| 
       119 
119 
     | 
    
         
             
                    def remove_end(corrector, body)
         
     | 
| 
       120 
     | 
    
         
            -
                       
     | 
| 
       121 
     | 
    
         
            -
             
     | 
| 
       122 
     | 
    
         
            -
             
     | 
| 
       123 
     | 
    
         
            -
             
     | 
| 
      
 120 
     | 
    
         
            +
                      remove_begin_pos = body.loc.end.begin_pos - leading_spaces(body).size
         
     | 
| 
      
 121 
     | 
    
         
            +
                      adjustment = processed_source.raw_source[remove_begin_pos] == ';' ? 0 : 1
         
     | 
| 
      
 122 
     | 
    
         
            +
                      range = range_between(remove_begin_pos, body.loc.end.end_pos + adjustment)
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
       124 
124 
     | 
    
         
             
                      corrector.remove(range)
         
     | 
| 
       125 
125 
     | 
    
         
             
                    end
         
     | 
| 
       126 
126 
     | 
    
         | 
| 
         @@ -5,8 +5,8 @@ module RuboCop 
     | 
|
| 
       5 
5 
     | 
    
         
             
                module Style
         
     | 
| 
       6 
6 
     | 
    
         
             
                  # Enforces the use of `Object#instance_of?` instead of class comparison
         
     | 
| 
       7 
7 
     | 
    
         
             
                  # for equality.
         
     | 
| 
       8 
     | 
    
         
            -
                  # `==`, `equal?`, and `eql?` methods are  
     | 
| 
       9 
     | 
    
         
            -
                  # These are customizable with ` 
     | 
| 
      
 8 
     | 
    
         
            +
                  # `==`, `equal?`, and `eql?` methods are allowed by default.
         
     | 
| 
      
 9 
     | 
    
         
            +
                  # These are customizable with `AllowedMethods` option.
         
     | 
| 
       10 
10 
     | 
    
         
             
                  #
         
     | 
| 
       11 
11 
     | 
    
         
             
                  # @example
         
     | 
| 
       12 
12 
     | 
    
         
             
                  #   # bad
         
     | 
| 
         @@ -18,7 +18,7 @@ module RuboCop 
     | 
|
| 
       18 
18 
     | 
    
         
             
                  #   # good
         
     | 
| 
       19 
19 
     | 
    
         
             
                  #   var.instance_of?(Date)
         
     | 
| 
       20 
20 
     | 
    
         
             
                  #
         
     | 
| 
       21 
     | 
    
         
            -
                  # @example  
     | 
| 
      
 21 
     | 
    
         
            +
                  # @example AllowedMethods: [] (default)
         
     | 
| 
       22 
22 
     | 
    
         
             
                  #   # good
         
     | 
| 
       23 
23 
     | 
    
         
             
                  #   var.instance_of?(Date)
         
     | 
| 
       24 
24 
     | 
    
         
             
                  #
         
     | 
| 
         @@ -28,7 +28,7 @@ module RuboCop 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  #   var.class.eql?(Date)
         
     | 
| 
       29 
29 
     | 
    
         
             
                  #   var.class.name == 'Date'
         
     | 
| 
       30 
30 
     | 
    
         
             
                  #
         
     | 
| 
       31 
     | 
    
         
            -
                  # @example  
     | 
| 
      
 31 
     | 
    
         
            +
                  # @example AllowedMethods: [`==`]
         
     | 
| 
       32 
32 
     | 
    
         
             
                  #   # good
         
     | 
| 
       33 
33 
     | 
    
         
             
                  #   var.instance_of?(Date)
         
     | 
| 
       34 
34 
     | 
    
         
             
                  #   var.class == Date
         
     | 
| 
         @@ -38,9 +38,30 @@ module RuboCop 
     | 
|
| 
       38 
38 
     | 
    
         
             
                  #   var.class.equal?(Date)
         
     | 
| 
       39 
39 
     | 
    
         
             
                  #   var.class.eql?(Date)
         
     | 
| 
       40 
40 
     | 
    
         
             
                  #
         
     | 
| 
      
 41 
     | 
    
         
            +
                  # @example AllowedPatterns: [] (default)
         
     | 
| 
      
 42 
     | 
    
         
            +
                  #   # good
         
     | 
| 
      
 43 
     | 
    
         
            +
                  #   var.instance_of?(Date)
         
     | 
| 
      
 44 
     | 
    
         
            +
                  #
         
     | 
| 
      
 45 
     | 
    
         
            +
                  #   # bad
         
     | 
| 
      
 46 
     | 
    
         
            +
                  #   var.class == Date
         
     | 
| 
      
 47 
     | 
    
         
            +
                  #   var.class.equal?(Date)
         
     | 
| 
      
 48 
     | 
    
         
            +
                  #   var.class.eql?(Date)
         
     | 
| 
      
 49 
     | 
    
         
            +
                  #   var.class.name == 'Date'
         
     | 
| 
      
 50 
     | 
    
         
            +
                  #
         
     | 
| 
      
 51 
     | 
    
         
            +
                  # @example AllowedPatterns: ['eq']
         
     | 
| 
      
 52 
     | 
    
         
            +
                  #   # good
         
     | 
| 
      
 53 
     | 
    
         
            +
                  #   var.instance_of?(Date)
         
     | 
| 
      
 54 
     | 
    
         
            +
                  #   var.class.equal?(Date)
         
     | 
| 
      
 55 
     | 
    
         
            +
                  #   var.class.eql?(Date)
         
     | 
| 
      
 56 
     | 
    
         
            +
                  #
         
     | 
| 
      
 57 
     | 
    
         
            +
                  #   # bad
         
     | 
| 
      
 58 
     | 
    
         
            +
                  #   var.class == Date
         
     | 
| 
      
 59 
     | 
    
         
            +
                  #   var.class.name == 'Date'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  #
         
     | 
| 
       41 
61 
     | 
    
         
             
                  class ClassEqualityComparison < Base
         
     | 
| 
       42 
62 
     | 
    
         
             
                    include RangeHelp
         
     | 
| 
       43 
     | 
    
         
            -
                    include  
     | 
| 
      
 63 
     | 
    
         
            +
                    include AllowedMethods
         
     | 
| 
      
 64 
     | 
    
         
            +
                    include AllowedPattern
         
     | 
| 
       44 
65 
     | 
    
         
             
                    extend AutoCorrector
         
     | 
| 
       45 
66 
     | 
    
         | 
| 
       46 
67 
     | 
    
         
             
                    MSG = 'Use `instance_of?(%<class_name>s)` instead of comparing classes.'
         
     | 
| 
         @@ -56,7 +77,9 @@ module RuboCop 
     | 
|
| 
       56 
77 
     | 
    
         | 
| 
       57 
78 
     | 
    
         
             
                    def on_send(node)
         
     | 
| 
       58 
79 
     | 
    
         
             
                      def_node = node.each_ancestor(:def, :defs).first
         
     | 
| 
       59 
     | 
    
         
            -
                      return if def_node && 
     | 
| 
      
 80 
     | 
    
         
            +
                      return if def_node &&
         
     | 
| 
      
 81 
     | 
    
         
            +
                                (allowed_method?(def_node.method_name) ||
         
     | 
| 
      
 82 
     | 
    
         
            +
                                matches_allowed_pattern?(def_node.method_name))
         
     | 
| 
       60 
83 
     | 
    
         | 
| 
       61 
84 
     | 
    
         
             
                      class_comparison_candidate?(node) do |receiver_node, class_node|
         
     | 
| 
       62 
85 
     | 
    
         
             
                        range = offense_range(receiver_node, node)
         
     | 
| 
         @@ -74,7 +97,9 @@ module RuboCop 
     | 
|
| 
       74 
97 
     | 
    
         
             
                      if node.children.first.method?(:name)
         
     | 
| 
       75 
98 
     | 
    
         
             
                        return class_node.receiver.source if class_node.receiver
         
     | 
| 
       76 
99 
     | 
    
         | 
| 
       77 
     | 
    
         
            -
                        class_node.source.delete('"').delete("'")
         
     | 
| 
      
 100 
     | 
    
         
            +
                        value = class_node.source.delete('"').delete("'")
         
     | 
| 
      
 101 
     | 
    
         
            +
                        value.prepend('::') if class_node.each_ancestor(:class, :module).any?
         
     | 
| 
      
 102 
     | 
    
         
            +
                        value
         
     | 
| 
       78 
103 
     | 
    
         
             
                      else
         
     | 
| 
       79 
104 
     | 
    
         
             
                        class_node.source
         
     | 
| 
       80 
105 
     | 
    
         
             
                      end
         
     | 
| 
         @@ -70,7 +70,7 @@ module RuboCop 
     | 
|
| 
       70 
70 
     | 
    
         | 
| 
       71 
71 
     | 
    
         
             
                    def on_sclass(node)
         
     | 
| 
       72 
72 
     | 
    
         
             
                      return unless def_self_style?
         
     | 
| 
       73 
     | 
    
         
            -
                      return unless node.identifier. 
     | 
| 
      
 73 
     | 
    
         
            +
                      return unless node.identifier.self_type?
         
     | 
| 
       74 
74 
     | 
    
         
             
                      return unless all_methods_public?(node)
         
     | 
| 
       75 
75 
     | 
    
         | 
| 
       76 
76 
     | 
    
         
             
                      add_offense(node, message: MSG_SCLASS) do |corrector|
         
     | 
| 
         @@ -80,6 +80,7 @@ module RuboCop 
     | 
|
| 
       80 
80 
     | 
    
         | 
| 
       81 
81 
     | 
    
         
             
                    def on_defs(node)
         
     | 
| 
       82 
82 
     | 
    
         
             
                      return if def_self_style?
         
     | 
| 
      
 83 
     | 
    
         
            +
                      return unless node.receiver.self_type?
         
     | 
| 
       83 
84 
     | 
    
         | 
| 
       84 
85 
     | 
    
         
             
                      message = format(MSG, preferred: 'class << self')
         
     | 
| 
       85 
86 
     | 
    
         
             
                      add_offense(node, message: message)
         
     |