rubocop 1.50.2 → 1.53.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 +3 -3
 - data/config/default.yml +76 -6
 - data/lib/rubocop/cli/command/lsp.rb +19 -0
 - data/lib/rubocop/cli.rb +3 -0
 - data/lib/rubocop/config.rb +4 -0
 - data/lib/rubocop/config_loader_resolver.rb +4 -3
 - data/lib/rubocop/config_obsoletion.rb +2 -2
 - data/lib/rubocop/cop/base.rb +5 -1
 - data/lib/rubocop/cop/bundler/gem_comment.rb +1 -1
 - data/lib/rubocop/cop/bundler/gem_version.rb +2 -2
 - data/lib/rubocop/cop/correctors/alignment_corrector.rb +1 -1
 - data/lib/rubocop/cop/gemspec/dependency_version.rb +2 -2
 - data/lib/rubocop/cop/gemspec/development_dependencies.rb +1 -1
 - data/lib/rubocop/cop/internal_affairs/cop_description.rb +32 -8
 - data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +5 -5
 - data/lib/rubocop/cop/layout/class_structure.rb +7 -0
 - data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +1 -2
 - data/lib/rubocop/cop/layout/empty_line_between_defs.rb +1 -1
 - data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +2 -0
 - data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2 -2
 - data/lib/rubocop/cop/layout/indentation_style.rb +1 -1
 - data/lib/rubocop/cop/layout/indentation_width.rb +2 -2
 - data/lib/rubocop/cop/layout/redundant_line_break.rb +1 -1
 - data/lib/rubocop/cop/layout/space_inside_block_braces.rb +2 -0
 - data/lib/rubocop/cop/layout/space_inside_range_literal.rb +1 -1
 - data/lib/rubocop/cop/lint/ambiguous_block_association.rb +13 -1
 - data/lib/rubocop/cop/lint/debugger.rb +1 -1
 - data/lib/rubocop/cop/lint/duplicate_hash_key.rb +2 -1
 - data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +46 -19
 - data/lib/rubocop/cop/lint/erb_new_arguments.rb +3 -4
 - data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +1 -1
 - data/lib/rubocop/cop/lint/identity_comparison.rb +0 -1
 - data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +5 -3
 - data/lib/rubocop/cop/lint/inherit_exception.rb +9 -0
 - data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +1 -1
 - data/lib/rubocop/cop/lint/missing_super.rb +34 -5
 - data/lib/rubocop/cop/lint/mixed_case_range.rb +109 -0
 - data/lib/rubocop/cop/lint/number_conversion.rb +5 -0
 - data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +2 -2
 - data/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -1
 - data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +2 -2
 - data/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +120 -0
 - data/lib/rubocop/cop/lint/redundant_require_statement.rb +8 -3
 - data/lib/rubocop/cop/lint/redundant_string_coercion.rb +1 -1
 - data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +1 -2
 - data/lib/rubocop/cop/lint/shadowed_exception.rb +5 -11
 - data/lib/rubocop/cop/lint/suppressed_exception.rb +1 -1
 - data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +23 -9
 - data/lib/rubocop/cop/lint/useless_assignment.rb +59 -1
 - data/lib/rubocop/cop/lint/void.rb +63 -7
 - data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +1 -2
 - data/lib/rubocop/cop/migration/department_name.rb +2 -2
 - data/lib/rubocop/cop/mixin/allowed_receivers.rb +34 -0
 - data/lib/rubocop/cop/mixin/comments_help.rb +7 -3
 - data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +1 -1
 - data/lib/rubocop/cop/mixin/percent_literal.rb +1 -1
 - data/lib/rubocop/cop/mixin/space_after_punctuation.rb +1 -1
 - data/lib/rubocop/cop/naming/block_forwarding.rb +1 -1
 - data/lib/rubocop/cop/naming/constant_name.rb +1 -1
 - data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +25 -10
 - data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +11 -3
 - data/lib/rubocop/cop/naming/variable_name.rb +6 -1
 - data/lib/rubocop/cop/style/accessor_grouping.rb +5 -1
 - data/lib/rubocop/cop/style/attr.rb +11 -1
 - data/lib/rubocop/cop/style/begin_block.rb +1 -2
 - data/lib/rubocop/cop/style/block_comments.rb +1 -1
 - data/lib/rubocop/cop/style/block_delimiters.rb +3 -3
 - data/lib/rubocop/cop/style/class_and_module_children.rb +1 -1
 - data/lib/rubocop/cop/style/class_equality_comparison.rb +17 -39
 - data/lib/rubocop/cop/style/collection_compact.rb +16 -6
 - data/lib/rubocop/cop/style/colon_method_call.rb +2 -2
 - data/lib/rubocop/cop/style/combinable_loops.rb +26 -6
 - data/lib/rubocop/cop/style/conditional_assignment.rb +5 -3
 - data/lib/rubocop/cop/style/copyright.rb +5 -2
 - data/lib/rubocop/cop/style/dir.rb +1 -1
 - data/lib/rubocop/cop/style/dir_empty.rb +8 -14
 - data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +1 -1
 - data/lib/rubocop/cop/style/documentation.rb +1 -1
 - data/lib/rubocop/cop/style/eval_with_location.rb +5 -5
 - data/lib/rubocop/cop/style/exact_regexp_match.rb +68 -0
 - data/lib/rubocop/cop/style/file_read.rb +2 -2
 - data/lib/rubocop/cop/style/guard_clause.rb +2 -0
 - data/lib/rubocop/cop/style/hash_each_methods.rb +1 -22
 - data/lib/rubocop/cop/style/hash_except.rb +19 -8
 - data/lib/rubocop/cop/style/hash_transform_keys.rb +2 -2
 - data/lib/rubocop/cop/style/hash_transform_values.rb +2 -2
 - data/lib/rubocop/cop/style/identical_conditional_branches.rb +6 -2
 - data/lib/rubocop/cop/style/if_inside_else.rb +6 -0
 - data/lib/rubocop/cop/style/if_unless_modifier.rb +3 -0
 - data/lib/rubocop/cop/style/invertible_unless_condition.rb +10 -6
 - data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +3 -4
 - data/lib/rubocop/cop/style/multiple_comparison.rb +14 -0
 - data/lib/rubocop/cop/style/numeric_literals.rb +1 -1
 - data/lib/rubocop/cop/style/percent_literal_delimiters.rb +1 -1
 - data/lib/rubocop/cop/style/preferred_hash_methods.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
 - data/lib/rubocop/cop/style/redundant_begin.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_conditional.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +38 -0
 - data/lib/rubocop/cop/style/redundant_filter_chain.rb +101 -0
 - data/lib/rubocop/cop/style/redundant_line_continuation.rb +7 -3
 - data/lib/rubocop/cop/style/redundant_parentheses.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_regexp_argument.rb +86 -0
 - data/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
 - data/lib/rubocop/cop/style/redundant_regexp_escape.rb +2 -1
 - data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +3 -1
 - data/lib/rubocop/cop/style/redundant_sort.rb +1 -1
 - data/lib/rubocop/cop/style/redundant_string_escape.rb +2 -0
 - data/lib/rubocop/cop/style/regexp_literal.rb +11 -2
 - data/lib/rubocop/cop/style/require_order.rb +11 -5
 - data/lib/rubocop/cop/style/rescue_modifier.rb +1 -3
 - data/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +81 -0
 - data/lib/rubocop/cop/style/select_by_regexp.rb +15 -5
 - data/lib/rubocop/cop/style/semicolon.rb +12 -1
 - data/lib/rubocop/cop/style/signal_exception.rb +1 -1
 - data/lib/rubocop/cop/style/single_line_methods.rb +1 -1
 - data/lib/rubocop/cop/style/sole_nested_conditional.rb +3 -1
 - data/lib/rubocop/cop/style/special_global_vars.rb +3 -4
 - data/lib/rubocop/cop/style/yaml_file_read.rb +66 -0
 - data/lib/rubocop/cop/team.rb +1 -1
 - data/lib/rubocop/cop/util.rb +1 -1
 - data/lib/rubocop/cop/utils/regexp_ranges.rb +100 -0
 - data/lib/rubocop/cop/variable_force/assignment.rb +33 -1
 - data/lib/rubocop/cop/variable_force/variable_table.rb +2 -2
 - data/lib/rubocop/cop/variable_force.rb +1 -0
 - data/lib/rubocop/cops_documentation_generator.rb +1 -1
 - data/lib/rubocop/ext/regexp_parser.rb +4 -1
 - data/lib/rubocop/lsp/logger.rb +22 -0
 - data/lib/rubocop/lsp/routes.rb +223 -0
 - data/lib/rubocop/lsp/runtime.rb +79 -0
 - data/lib/rubocop/lsp/server.rb +62 -0
 - data/lib/rubocop/lsp/severity.rb +27 -0
 - data/lib/rubocop/options.rb +11 -1
 - data/lib/rubocop/result_cache.rb +1 -1
 - data/lib/rubocop/rspec/cop_helper.rb +1 -1
 - data/lib/rubocop/server/client_command/exec.rb +2 -1
 - data/lib/rubocop/target_ruby.rb +3 -2
 - data/lib/rubocop/version.rb +10 -6
 - data/lib/rubocop.rb +13 -0
 - metadata +38 -6
 
| 
         @@ -3,8 +3,7 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            module RuboCop
         
     | 
| 
       4 
4 
     | 
    
         
             
              module Cop
         
     | 
| 
       5 
5 
     | 
    
         
             
                module Lint
         
     | 
| 
       6 
     | 
    
         
            -
                  #
         
     | 
| 
       7 
     | 
    
         
            -
                  # This cop checks for `send`, `public_send`, and `__send__` methods
         
     | 
| 
      
 6 
     | 
    
         
            +
                  # Checks for `send`, `public_send`, and `__send__` methods
         
     | 
| 
       8 
7 
     | 
    
         
             
                  # when using mix-in.
         
     | 
| 
       9 
8 
     | 
    
         
             
                  #
         
     | 
| 
       10 
9 
     | 
    
         
             
                  # `include` and `prepend` methods were private methods until Ruby 2.0,
         
     | 
| 
         @@ -121,18 +121,12 @@ module RuboCop 
     | 
|
| 
       121 
121 
     | 
    
         | 
| 
       122 
122 
     | 
    
         
             
                      if rescued_exceptions.any?
         
     | 
| 
       123 
123 
     | 
    
         
             
                        rescued_exceptions.each_with_object([]) do |exception, converted|
         
     | 
| 
       124 
     | 
    
         
            -
                           
     | 
| 
       125 
     | 
    
         
            -
             
     | 
| 
       126 
     | 
    
         
            -
             
     | 
| 
       127 
     | 
    
         
            -
                          begin
         
     | 
| 
       128 
     | 
    
         
            -
                            RuboCop::Util.silence_warnings do
         
     | 
| 
       129 
     | 
    
         
            -
                              # Avoid printing deprecation warnings about constants
         
     | 
| 
       130 
     | 
    
         
            -
                              converted << Kernel.const_get(exception.source)
         
     | 
| 
       131 
     | 
    
         
            -
                            end
         
     | 
| 
       132 
     | 
    
         
            -
                          rescue NameError
         
     | 
| 
       133 
     | 
    
         
            -
                            converted << nil
         
     | 
| 
      
 124 
     | 
    
         
            +
                          RuboCop::Util.silence_warnings do
         
     | 
| 
      
 125 
     | 
    
         
            +
                            # Avoid printing deprecation warnings about constants
         
     | 
| 
      
 126 
     | 
    
         
            +
                            converted << Kernel.const_get(exception.source)
         
     | 
| 
       134 
127 
     | 
    
         
             
                          end
         
     | 
| 
       135 
     | 
    
         
            -
             
     | 
| 
      
 128 
     | 
    
         
            +
                        rescue NameError
         
     | 
| 
      
 129 
     | 
    
         
            +
                          converted << nil
         
     | 
| 
       136 
130 
     | 
    
         
             
                        end
         
     | 
| 
       137 
131 
     | 
    
         
             
                      else
         
     | 
| 
       138 
132 
     | 
    
         
             
                        # treat an empty `rescue` as `rescue StandardError`
         
     | 
| 
         @@ -117,7 +117,7 @@ module RuboCop 
     | 
|
| 
       117 
117 
     | 
    
         | 
| 
       118 
118 
     | 
    
         
             
                    def comment_between_rescue_and_end?(node)
         
     | 
| 
       119 
119 
     | 
    
         
             
                      ancestor = node.each_ancestor(:kwbegin, :def, :defs, :block, :numblock).first
         
     | 
| 
       120 
     | 
    
         
            -
                      return unless ancestor
         
     | 
| 
      
 120 
     | 
    
         
            +
                      return false unless ancestor
         
     | 
| 
       121 
121 
     | 
    
         | 
| 
       122 
122 
     | 
    
         
             
                      end_line = ancestor.loc.end.line
         
     | 
| 
       123 
123 
     | 
    
         
             
                      processed_source[node.first_line...end_line].any? { |line| comment_line?(line) }
         
     | 
| 
         @@ -8,25 +8,39 @@ module RuboCop 
     | 
|
| 
       8 
8 
     | 
    
         
             
                  # always ignored. This is detected automatically since Ruby 2.7.
         
     | 
| 
       9 
9 
     | 
    
         
             
                  #
         
     | 
| 
       10 
10 
     | 
    
         
             
                  # @example
         
     | 
| 
      
 11 
     | 
    
         
            +
                  #   # bad
         
     | 
| 
      
 12 
     | 
    
         
            +
                  #   return 1
         
     | 
| 
       11 
13 
     | 
    
         
             
                  #
         
     | 
| 
       12 
     | 
    
         
            -
                  #   #  
     | 
| 
       13 
     | 
    
         
            -
                  #   return 
     | 
| 
      
 14 
     | 
    
         
            +
                  #   # good
         
     | 
| 
      
 15 
     | 
    
         
            +
                  #   return
         
     | 
| 
       14 
16 
     | 
    
         
             
                  class TopLevelReturnWithArgument < Base
         
     | 
| 
       15 
     | 
    
         
            -
                     
     | 
| 
       16 
     | 
    
         
            -
                    # top-level return node's ancestors should not be of block, def, or
         
     | 
| 
       17 
     | 
    
         
            -
                    # defs type.
         
     | 
| 
      
 17 
     | 
    
         
            +
                    extend AutoCorrector
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
                    MSG = 'Top level return with argument detected.'
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                    def on_return(return_node)
         
     | 
| 
       22 
     | 
    
         
            -
                       
     | 
| 
      
 22 
     | 
    
         
            +
                      return unless top_level_return_with_any_argument?(return_node)
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                      add_offense(return_node) do |corrector|
         
     | 
| 
      
 25 
     | 
    
         
            +
                        remove_arguments(corrector, return_node)
         
     | 
| 
      
 26 
     | 
    
         
            +
                      end
         
     | 
| 
       23 
27 
     | 
    
         
             
                    end
         
     | 
| 
       24 
28 
     | 
    
         | 
| 
       25 
29 
     | 
    
         
             
                    private
         
     | 
| 
       26 
30 
     | 
    
         | 
| 
       27 
     | 
    
         
            -
                    def  
     | 
| 
       28 
     | 
    
         
            -
                       
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
      
 31 
     | 
    
         
            +
                    def top_level_return_with_any_argument?(return_node)
         
     | 
| 
      
 32 
     | 
    
         
            +
                      top_level_return?(return_node) && return_node.arguments?
         
     | 
| 
      
 33 
     | 
    
         
            +
                    end
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                    def remove_arguments(corrector, return_node)
         
     | 
| 
      
 36 
     | 
    
         
            +
                      corrector.replace(return_node, 'return')
         
     | 
| 
      
 37 
     | 
    
         
            +
                    end
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                    # This cop works by validating the ancestors of the return node. A
         
     | 
| 
      
 40 
     | 
    
         
            +
                    # top-level return node's ancestors should not be of block, def, or
         
     | 
| 
      
 41 
     | 
    
         
            +
                    # defs type.
         
     | 
| 
      
 42 
     | 
    
         
            +
                    def top_level_return?(return_node)
         
     | 
| 
      
 43 
     | 
    
         
            +
                      return_node.each_ancestor(:block, :def, :defs).none?
         
     | 
| 
       30 
44 
     | 
    
         
             
                    end
         
     | 
| 
       31 
45 
     | 
    
         
             
                  end
         
     | 
| 
       32 
46 
     | 
    
         
             
                end
         
     | 
| 
         @@ -13,6 +13,12 @@ module RuboCop 
     | 
|
| 
       13 
13 
     | 
    
         
             
                  # reassignments and properly handles varied cases such as branch, loop,
         
     | 
| 
       14 
14 
     | 
    
         
             
                  # rescue, ensure, etc.
         
     | 
| 
       15 
15 
     | 
    
         
             
                  #
         
     | 
| 
      
 16 
     | 
    
         
            +
                  # @safety
         
     | 
| 
      
 17 
     | 
    
         
            +
                  #   This cop's autocorrection is unsafe because removing assignment from
         
     | 
| 
      
 18 
     | 
    
         
            +
                  #   operator assignment can cause NameError if this assignment has been used to declare
         
     | 
| 
      
 19 
     | 
    
         
            +
                  #   local variable. For example, replacing `a ||= 1` to `a || 1` may cause
         
     | 
| 
      
 20 
     | 
    
         
            +
                  #   "undefined local variable or method `a' for main:Object (NameError)".
         
     | 
| 
      
 21 
     | 
    
         
            +
                  #
         
     | 
| 
       16 
22 
     | 
    
         
             
                  # @example
         
     | 
| 
       17 
23 
     | 
    
         
             
                  #
         
     | 
| 
       18 
24 
     | 
    
         
             
                  #   # bad
         
     | 
| 
         @@ -31,6 +37,10 @@ module RuboCop 
     | 
|
| 
       31 
37 
     | 
    
         
             
                  #     do_something(some_var)
         
     | 
| 
       32 
38 
     | 
    
         
             
                  #   end
         
     | 
| 
       33 
39 
     | 
    
         
             
                  class UselessAssignment < Base
         
     | 
| 
      
 40 
     | 
    
         
            +
                    extend AutoCorrector
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                    include RangeHelp
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
       34 
44 
     | 
    
         
             
                    MSG = 'Useless assignment to variable - `%<variable>s`.'
         
     | 
| 
       35 
45 
     | 
    
         | 
| 
       36 
46 
     | 
    
         
             
                    def self.joining_forces
         
     | 
| 
         @@ -55,7 +65,9 @@ module RuboCop 
     | 
|
| 
       55 
65 
     | 
    
         
             
                                     assignment.node.loc.name
         
     | 
| 
       56 
66 
     | 
    
         
             
                                   end
         
     | 
| 
       57 
67 
     | 
    
         | 
| 
       58 
     | 
    
         
            -
                        add_offense(location, message: message)
         
     | 
| 
      
 68 
     | 
    
         
            +
                        add_offense(location, message: message) do |corrector|
         
     | 
| 
      
 69 
     | 
    
         
            +
                          autocorrect(corrector, assignment)
         
     | 
| 
      
 70 
     | 
    
         
            +
                        end
         
     | 
| 
       59 
71 
     | 
    
         
             
                      end
         
     | 
| 
       60 
72 
     | 
    
         
             
                    end
         
     | 
| 
       61 
73 
     | 
    
         | 
| 
         @@ -119,6 +131,52 @@ module RuboCop 
     | 
|
| 
       119 
131 
     | 
    
         | 
| 
       120 
132 
     | 
    
         
             
                      node.receiver.nil? && !node.arguments?
         
     | 
| 
       121 
133 
     | 
    
         
             
                    end
         
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
                    # rubocop:disable Metrics/AbcSize
         
     | 
| 
      
 136 
     | 
    
         
            +
                    def autocorrect(corrector, assignment)
         
     | 
| 
      
 137 
     | 
    
         
            +
                      if assignment.exception_assignment?
         
     | 
| 
      
 138 
     | 
    
         
            +
                        remove_exception_assignment_part(corrector, assignment.node)
         
     | 
| 
      
 139 
     | 
    
         
            +
                      elsif assignment.multiple_assignment? || assignment.rest_assignment? ||
         
     | 
| 
      
 140 
     | 
    
         
            +
                            assignment.for_assignment?
         
     | 
| 
      
 141 
     | 
    
         
            +
                        rename_variable_with_underscore(corrector, assignment.node)
         
     | 
| 
      
 142 
     | 
    
         
            +
                      elsif assignment.operator_assignment?
         
     | 
| 
      
 143 
     | 
    
         
            +
                        remove_trailing_character_from_operator(corrector, assignment.node)
         
     | 
| 
      
 144 
     | 
    
         
            +
                      elsif assignment.regexp_named_capture?
         
     | 
| 
      
 145 
     | 
    
         
            +
                        replace_named_capture_group_with_non_capturing_group(corrector, assignment.node,
         
     | 
| 
      
 146 
     | 
    
         
            +
                                                                             assignment.variable.name)
         
     | 
| 
      
 147 
     | 
    
         
            +
                      else
         
     | 
| 
      
 148 
     | 
    
         
            +
                        remove_local_variable_assignment_part(corrector, assignment.node)
         
     | 
| 
      
 149 
     | 
    
         
            +
                      end
         
     | 
| 
      
 150 
     | 
    
         
            +
                    end
         
     | 
| 
      
 151 
     | 
    
         
            +
                    # rubocop:enable Metrics/AbcSize
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
                    def remove_exception_assignment_part(corrector, node)
         
     | 
| 
      
 154 
     | 
    
         
            +
                      corrector.remove(
         
     | 
| 
      
 155 
     | 
    
         
            +
                        range_between(
         
     | 
| 
      
 156 
     | 
    
         
            +
                          (node.parent.children.first&.source_range || node.parent.location.keyword).end_pos,
         
     | 
| 
      
 157 
     | 
    
         
            +
                          node.source_range.end_pos
         
     | 
| 
      
 158 
     | 
    
         
            +
                        )
         
     | 
| 
      
 159 
     | 
    
         
            +
                      )
         
     | 
| 
      
 160 
     | 
    
         
            +
                    end
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
                    def rename_variable_with_underscore(corrector, node)
         
     | 
| 
      
 163 
     | 
    
         
            +
                      corrector.replace(node, '_')
         
     | 
| 
      
 164 
     | 
    
         
            +
                    end
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
                    def remove_trailing_character_from_operator(corrector, node)
         
     | 
| 
      
 167 
     | 
    
         
            +
                      corrector.remove(node.parent.location.operator.end.adjust(begin_pos: -1))
         
     | 
| 
      
 168 
     | 
    
         
            +
                    end
         
     | 
| 
      
 169 
     | 
    
         
            +
             
     | 
| 
      
 170 
     | 
    
         
            +
                    def replace_named_capture_group_with_non_capturing_group(corrector, node, variable_name)
         
     | 
| 
      
 171 
     | 
    
         
            +
                      corrector.replace(
         
     | 
| 
      
 172 
     | 
    
         
            +
                        node.children.first,
         
     | 
| 
      
 173 
     | 
    
         
            +
                        node.children.first.source.sub(/\(\?<#{variable_name}>/, '(?:')
         
     | 
| 
      
 174 
     | 
    
         
            +
                      )
         
     | 
| 
      
 175 
     | 
    
         
            +
                    end
         
     | 
| 
      
 176 
     | 
    
         
            +
             
     | 
| 
      
 177 
     | 
    
         
            +
                    def remove_local_variable_assignment_part(corrector, node)
         
     | 
| 
      
 178 
     | 
    
         
            +
                      corrector.replace(node, node.expression.source)
         
     | 
| 
      
 179 
     | 
    
         
            +
                    end
         
     | 
| 
       122 
180 
     | 
    
         
             
                  end
         
     | 
| 
       123 
181 
     | 
    
         
             
                end
         
     | 
| 
       124 
182 
     | 
    
         
             
              end
         
     | 
| 
         @@ -41,6 +41,10 @@ module RuboCop 
     | 
|
| 
       41 
41 
     | 
    
         
             
                  #     do_something(some_array)
         
     | 
| 
       42 
42 
     | 
    
         
             
                  #   end
         
     | 
| 
       43 
43 
     | 
    
         
             
                  class Void < Base
         
     | 
| 
      
 44 
     | 
    
         
            +
                    extend AutoCorrector
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                    include RangeHelp
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
       44 
48 
     | 
    
         
             
                    OP_MSG = 'Operator `%<op>s` used in void context.'
         
     | 
| 
       45 
49 
     | 
    
         
             
                    VAR_MSG = 'Variable `%<var>s` used in void context.'
         
     | 
| 
       46 
50 
     | 
    
         
             
                    LIT_MSG = 'Literal `%<lit>s` used in void context.'
         
     | 
| 
         @@ -100,35 +104,47 @@ module RuboCop 
     | 
|
| 
       100 
104 
     | 
    
         
             
                    def check_void_op(node)
         
     | 
| 
       101 
105 
     | 
    
         
             
                      return unless node.send_type? && OPERATORS.include?(node.method_name)
         
     | 
| 
       102 
106 
     | 
    
         | 
| 
       103 
     | 
    
         
            -
                      add_offense(node.loc.selector, 
     | 
| 
      
 107 
     | 
    
         
            +
                      add_offense(node.loc.selector,
         
     | 
| 
      
 108 
     | 
    
         
            +
                                  message: format(OP_MSG, op: node.method_name)) do |corrector|
         
     | 
| 
      
 109 
     | 
    
         
            +
                        autocorrect_void_op(corrector, node)
         
     | 
| 
      
 110 
     | 
    
         
            +
                      end
         
     | 
| 
       104 
111 
     | 
    
         
             
                    end
         
     | 
| 
       105 
112 
     | 
    
         | 
| 
       106 
113 
     | 
    
         
             
                    def check_var(node)
         
     | 
| 
       107 
114 
     | 
    
         
             
                      return unless node.variable? || node.const_type?
         
     | 
| 
       108 
115 
     | 
    
         | 
| 
       109 
     | 
    
         
            -
                      add_offense(node.loc.name, 
     | 
| 
      
 116 
     | 
    
         
            +
                      add_offense(node.loc.name,
         
     | 
| 
      
 117 
     | 
    
         
            +
                                  message: format(VAR_MSG, var: node.loc.name.source)) do |corrector|
         
     | 
| 
      
 118 
     | 
    
         
            +
                        autocorrect_void_var(corrector, node)
         
     | 
| 
      
 119 
     | 
    
         
            +
                      end
         
     | 
| 
       110 
120 
     | 
    
         
             
                    end
         
     | 
| 
       111 
121 
     | 
    
         | 
| 
       112 
122 
     | 
    
         
             
                    def check_literal(node)
         
     | 
| 
       113 
123 
     | 
    
         
             
                      return if !node.literal? || node.xstr_type? || node.range_type?
         
     | 
| 
       114 
124 
     | 
    
         | 
| 
       115 
     | 
    
         
            -
                      add_offense(node, message: format(LIT_MSG, lit: node.source))
         
     | 
| 
      
 125 
     | 
    
         
            +
                      add_offense(node, message: format(LIT_MSG, lit: node.source)) do |corrector|
         
     | 
| 
      
 126 
     | 
    
         
            +
                        autocorrect_void_literal(corrector, node)
         
     | 
| 
      
 127 
     | 
    
         
            +
                      end
         
     | 
| 
       116 
128 
     | 
    
         
             
                    end
         
     | 
| 
       117 
129 
     | 
    
         | 
| 
       118 
130 
     | 
    
         
             
                    def check_self(node)
         
     | 
| 
       119 
131 
     | 
    
         
             
                      return unless node.self_type?
         
     | 
| 
       120 
132 
     | 
    
         | 
| 
       121 
     | 
    
         
            -
                      add_offense(node, message: SELF_MSG)
         
     | 
| 
      
 133 
     | 
    
         
            +
                      add_offense(node, message: SELF_MSG) do |corrector|
         
     | 
| 
      
 134 
     | 
    
         
            +
                        autocorrect_void_self(corrector, node)
         
     | 
| 
      
 135 
     | 
    
         
            +
                      end
         
     | 
| 
       122 
136 
     | 
    
         
             
                    end
         
     | 
| 
       123 
137 
     | 
    
         | 
| 
       124 
138 
     | 
    
         
             
                    def check_void_expression(node)
         
     | 
| 
       125 
139 
     | 
    
         
             
                      return unless node.defined_type? || node.lambda_or_proc?
         
     | 
| 
       126 
140 
     | 
    
         | 
| 
       127 
     | 
    
         
            -
                      add_offense(node, message: format(EXPRESSION_MSG, expression: node.source))
         
     | 
| 
      
 141 
     | 
    
         
            +
                      add_offense(node, message: format(EXPRESSION_MSG, expression: node.source)) do |corrector|
         
     | 
| 
      
 142 
     | 
    
         
            +
                        autocorrect_void_expression(corrector, node)
         
     | 
| 
      
 143 
     | 
    
         
            +
                      end
         
     | 
| 
       128 
144 
     | 
    
         
             
                    end
         
     | 
| 
       129 
145 
     | 
    
         | 
| 
       130 
146 
     | 
    
         
             
                    def check_nonmutating(node)
         
     | 
| 
       131 
     | 
    
         
            -
                      return  
     | 
| 
      
 147 
     | 
    
         
            +
                      return if !node.send_type? && !node.block_type? && !node.numblock_type?
         
     | 
| 
       132 
148 
     | 
    
         | 
| 
       133 
149 
     | 
    
         
             
                      method_name = node.method_name
         
     | 
| 
       134 
150 
     | 
    
         
             
                      return unless NONMUTATING_METHODS.include?(method_name)
         
     | 
| 
         @@ -139,7 +155,10 @@ module RuboCop 
     | 
|
| 
       139 
155 
     | 
    
         
             
                                     "#{method_name}!"
         
     | 
| 
       140 
156 
     | 
    
         
             
                                   end
         
     | 
| 
       141 
157 
     | 
    
         
             
                      add_offense(node,
         
     | 
| 
       142 
     | 
    
         
            -
                                  message: format(NONMUTATING_MSG, method: method_name, 
     | 
| 
      
 158 
     | 
    
         
            +
                                  message: format(NONMUTATING_MSG, method: method_name,
         
     | 
| 
      
 159 
     | 
    
         
            +
                                                                   suggest: suggestion)) do |corrector|
         
     | 
| 
      
 160 
     | 
    
         
            +
                        autocorrect_nonmutating_send(corrector, node, suggestion)
         
     | 
| 
      
 161 
     | 
    
         
            +
                      end
         
     | 
| 
       143 
162 
     | 
    
         
             
                    end
         
     | 
| 
       144 
163 
     | 
    
         | 
| 
       145 
164 
     | 
    
         
             
                    def in_void_context?(node)
         
     | 
| 
         @@ -149,6 +168,43 @@ module RuboCop 
     | 
|
| 
       149 
168 
     | 
    
         | 
| 
       150 
169 
     | 
    
         
             
                      VOID_CONTEXT_TYPES.include?(parent.type) && parent.void_context?
         
     | 
| 
       151 
170 
     | 
    
         
             
                    end
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
                    def autocorrect_void_op(corrector, node)
         
     | 
| 
      
 173 
     | 
    
         
            +
                      if node.arguments.empty?
         
     | 
| 
      
 174 
     | 
    
         
            +
                        corrector.replace(node, node.receiver.source)
         
     | 
| 
      
 175 
     | 
    
         
            +
                      else
         
     | 
| 
      
 176 
     | 
    
         
            +
                        corrector.replace(
         
     | 
| 
      
 177 
     | 
    
         
            +
                          range_with_surrounding_space(range: node.loc.selector, side: :both,
         
     | 
| 
      
 178 
     | 
    
         
            +
                                                       newlines: false),
         
     | 
| 
      
 179 
     | 
    
         
            +
                          "\n"
         
     | 
| 
      
 180 
     | 
    
         
            +
                        )
         
     | 
| 
      
 181 
     | 
    
         
            +
                      end
         
     | 
| 
      
 182 
     | 
    
         
            +
                    end
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
                    def autocorrect_void_var(corrector, node)
         
     | 
| 
      
 185 
     | 
    
         
            +
                      corrector.remove(range_with_surrounding_space(range: node.loc.name, side: :left))
         
     | 
| 
      
 186 
     | 
    
         
            +
                    end
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
                    def autocorrect_void_literal(corrector, node)
         
     | 
| 
      
 189 
     | 
    
         
            +
                      corrector.remove(range_with_surrounding_space(range: node.source_range, side: :left))
         
     | 
| 
      
 190 
     | 
    
         
            +
                    end
         
     | 
| 
      
 191 
     | 
    
         
            +
             
     | 
| 
      
 192 
     | 
    
         
            +
                    def autocorrect_void_self(corrector, node)
         
     | 
| 
      
 193 
     | 
    
         
            +
                      corrector.remove(range_with_surrounding_space(range: node.source_range, side: :left))
         
     | 
| 
      
 194 
     | 
    
         
            +
                    end
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
                    def autocorrect_void_expression(corrector, node)
         
     | 
| 
      
 197 
     | 
    
         
            +
                      corrector.remove(range_with_surrounding_space(range: node.source_range, side: :left))
         
     | 
| 
      
 198 
     | 
    
         
            +
                    end
         
     | 
| 
      
 199 
     | 
    
         
            +
             
     | 
| 
      
 200 
     | 
    
         
            +
                    def autocorrect_nonmutating_send(corrector, node, suggestion)
         
     | 
| 
      
 201 
     | 
    
         
            +
                      send_node = if node.send_type?
         
     | 
| 
      
 202 
     | 
    
         
            +
                                    node
         
     | 
| 
      
 203 
     | 
    
         
            +
                                  else
         
     | 
| 
      
 204 
     | 
    
         
            +
                                    node.send_node
         
     | 
| 
      
 205 
     | 
    
         
            +
                                  end
         
     | 
| 
      
 206 
     | 
    
         
            +
                      corrector.replace(send_node.loc.selector, suggestion)
         
     | 
| 
      
 207 
     | 
    
         
            +
                    end
         
     | 
| 
       152 
208 
     | 
    
         
             
                  end
         
     | 
| 
       153 
209 
     | 
    
         
             
                end
         
     | 
| 
       154 
210 
     | 
    
         
             
              end
         
     | 
| 
         @@ -16,7 +16,7 @@ module RuboCop 
     | 
|
| 
       16 
16 
     | 
    
         
             
                    # The token that makes up a disable comment.
         
     | 
| 
       17 
17 
     | 
    
         
             
                    # The allowed specification for comments after `# rubocop: disable` is
         
     | 
| 
       18 
18 
     | 
    
         
             
                    # `DepartmentName/CopName` or` all`.
         
     | 
| 
       19 
     | 
    
         
            -
                    DISABLING_COPS_CONTENT_TOKEN = %r{[A-z]+/[A-z]+|all}.freeze
         
     | 
| 
      
 19 
     | 
    
         
            +
                    DISABLING_COPS_CONTENT_TOKEN = %r{[A-Za-z]+/[A-Za-z]+|all}.freeze
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                    def on_new_investigation
         
     | 
| 
       22 
22 
     | 
    
         
             
                      processed_source.comments.each do |comment|
         
     | 
| 
         @@ -67,7 +67,7 @@ module RuboCop 
     | 
|
| 
       67 
67 
     | 
    
         
             
                    end
         
     | 
| 
       68 
68 
     | 
    
         | 
| 
       69 
69 
     | 
    
         
             
                    def contain_unexpected_character_for_department_name?(name)
         
     | 
| 
       70 
     | 
    
         
            -
                      name.match?(%r{[^A-z/, ]})
         
     | 
| 
      
 70 
     | 
    
         
            +
                      name.match?(%r{[^A-Za-z/, ]})
         
     | 
| 
       71 
71 
     | 
    
         
             
                    end
         
     | 
| 
       72 
72 
     | 
    
         | 
| 
       73 
73 
     | 
    
         
             
                    def qualified_legacy_cop_name(cop_name)
         
     | 
| 
         @@ -0,0 +1,34 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module RuboCop
         
     | 
| 
      
 4 
     | 
    
         
            +
              module Cop
         
     | 
| 
      
 5 
     | 
    
         
            +
                # This module encapsulates the ability to allow certain receivers in a cop.
         
     | 
| 
      
 6 
     | 
    
         
            +
                module AllowedReceivers
         
     | 
| 
      
 7 
     | 
    
         
            +
                  def allowed_receiver?(receiver)
         
     | 
| 
      
 8 
     | 
    
         
            +
                    receiver_name = receiver_name(receiver)
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
                    allowed_receivers.include?(receiver_name)
         
     | 
| 
      
 11 
     | 
    
         
            +
                  end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
                  def receiver_name(receiver)
         
     | 
| 
      
 14 
     | 
    
         
            +
                    if receiver.receiver && !receiver.receiver.const_type?
         
     | 
| 
      
 15 
     | 
    
         
            +
                      return receiver_name(receiver.receiver)
         
     | 
| 
      
 16 
     | 
    
         
            +
                    end
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                    if receiver.send_type?
         
     | 
| 
      
 19 
     | 
    
         
            +
                      if receiver.receiver
         
     | 
| 
      
 20 
     | 
    
         
            +
                        "#{receiver_name(receiver.receiver)}.#{receiver.method_name}"
         
     | 
| 
      
 21 
     | 
    
         
            +
                      else
         
     | 
| 
      
 22 
     | 
    
         
            +
                        receiver.method_name.to_s
         
     | 
| 
      
 23 
     | 
    
         
            +
                      end
         
     | 
| 
      
 24 
     | 
    
         
            +
                    else
         
     | 
| 
      
 25 
     | 
    
         
            +
                      receiver.source
         
     | 
| 
      
 26 
     | 
    
         
            +
                    end
         
     | 
| 
      
 27 
     | 
    
         
            +
                  end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
                  def allowed_receivers
         
     | 
| 
      
 30 
     | 
    
         
            +
                    cop_config.fetch('AllowedReceivers', [])
         
     | 
| 
      
 31 
     | 
    
         
            +
                  end
         
     | 
| 
      
 32 
     | 
    
         
            +
                end
         
     | 
| 
      
 33 
     | 
    
         
            +
              end
         
     | 
| 
      
 34 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -25,7 +25,7 @@ module RuboCop 
     | 
|
| 
       25 
25 
     | 
    
         
             
                  def comments_contain_disables?(node, cop_name)
         
     | 
| 
       26 
26 
     | 
    
         
             
                    disabled_ranges = processed_source.disabled_line_ranges[cop_name]
         
     | 
| 
       27 
27 
     | 
    
         | 
| 
       28 
     | 
    
         
            -
                    return unless disabled_ranges
         
     | 
| 
      
 28 
     | 
    
         
            +
                    return false unless disabled_ranges
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
       30 
30 
     | 
    
         
             
                    node_range = node.source_range.line...find_end_line(node)
         
     | 
| 
       31 
31 
     | 
    
         | 
| 
         @@ -62,12 +62,16 @@ module RuboCop 
     | 
|
| 
       62 
62 
     | 
    
         
             
                  # Returns the end line of a node, which might be a comment and not part of the AST
         
     | 
| 
       63 
63 
     | 
    
         
             
                  # End line is considered either the line at which another node starts, or
         
     | 
| 
       64 
64 
     | 
    
         
             
                  # the line at which the parent node ends.
         
     | 
| 
       65 
     | 
    
         
            -
                  # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
      
 65 
     | 
    
         
            +
                  # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Lint/DuplicateBranch
         
     | 
| 
       66 
66 
     | 
    
         
             
                  def find_end_line(node)
         
     | 
| 
       67 
67 
     | 
    
         
             
                    if node.if_type? && node.else?
         
     | 
| 
       68 
68 
     | 
    
         
             
                      node.loc.else.line
         
     | 
| 
       69 
69 
     | 
    
         
             
                    elsif node.if_type? && node.ternary?
         
     | 
| 
       70 
70 
     | 
    
         
             
                      node.else_branch.loc.line
         
     | 
| 
      
 71 
     | 
    
         
            +
                    elsif node.if_type? && node.elsif?
         
     | 
| 
      
 72 
     | 
    
         
            +
                      node.each_ancestor(:if).find(&:if?).loc.end.line
         
     | 
| 
      
 73 
     | 
    
         
            +
                    elsif node.block_type? || node.numblock_type?
         
     | 
| 
      
 74 
     | 
    
         
            +
                      node.loc.end.line
         
     | 
| 
       71 
75 
     | 
    
         
             
                    elsif (next_sibling = node.right_sibling) && next_sibling.is_a?(AST::Node)
         
     | 
| 
       72 
76 
     | 
    
         
             
                      next_sibling.loc.line
         
     | 
| 
       73 
77 
     | 
    
         
             
                    elsif (parent = node.parent)
         
     | 
| 
         @@ -76,7 +80,7 @@ module RuboCop 
     | 
|
| 
       76 
80 
     | 
    
         
             
                      node.loc.end.line
         
     | 
| 
       77 
81 
     | 
    
         
             
                    end
         
     | 
| 
       78 
82 
     | 
    
         
             
                  end
         
     | 
| 
       79 
     | 
    
         
            -
                  # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
         
     | 
| 
      
 83 
     | 
    
         
            +
                  # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity, Lint/DuplicateBranch
         
     | 
| 
       80 
84 
     | 
    
         
             
                end
         
     | 
| 
       81 
85 
     | 
    
         
             
              end
         
     | 
| 
       82 
86 
     | 
    
         
             
            end
         
     | 
| 
         @@ -109,7 +109,7 @@ module RuboCop 
     | 
|
| 
       109 
109 
     | 
    
         
             
                    end
         
     | 
| 
       110 
110 
     | 
    
         | 
| 
       111 
111 
     | 
    
         
             
                    def use_block_argument_as_local_variable?(node, last_argument)
         
     | 
| 
       112 
     | 
    
         
            -
                      return if node.body.nil?
         
     | 
| 
      
 112 
     | 
    
         
            +
                      return false if node.body.nil?
         
     | 
| 
       113 
113 
     | 
    
         | 
| 
       114 
114 
     | 
    
         
             
                      node.body.each_descendant(:lvar, :lvasgn).any? do |lvar|
         
     | 
| 
       115 
115 
     | 
    
         
             
                        !lvar.parent.block_pass_type? && lvar.node_parts[0].to_s == last_argument
         
     | 
| 
         @@ -17,7 +17,8 @@ module RuboCop 
     | 
|
| 
       17 
17 
     | 
    
         
             
                  # @safety
         
     | 
| 
       18 
18 
     | 
    
         
             
                  #   This cop relies on the pattern `@instance_var ||= ...`,
         
     | 
| 
       19 
19 
     | 
    
         
             
                  #   but this is sometimes used for other purposes than memoization
         
     | 
| 
       20 
     | 
    
         
            -
                  #   so this cop is considered unsafe.
         
     | 
| 
      
 20 
     | 
    
         
            +
                  #   so this cop is considered unsafe. Also, its autocorrection is unsafe
         
     | 
| 
      
 21 
     | 
    
         
            +
                  #   because it may conflict with instance variable names already in use.
         
     | 
| 
       21 
22 
     | 
    
         
             
                  #
         
     | 
| 
       22 
23 
     | 
    
         
             
                  # @example EnforcedStyleForLeadingUnderscores: disallowed (default)
         
     | 
| 
       23 
24 
     | 
    
         
             
                  #   # bad
         
     | 
| 
         @@ -145,6 +146,8 @@ module RuboCop 
     | 
|
| 
       145 
146 
     | 
    
         
             
                  #     @_foo ||= calculate_expensive_thing
         
     | 
| 
       146 
147 
     | 
    
         
             
                  #   end
         
     | 
| 
       147 
148 
     | 
    
         
             
                  class MemoizedInstanceVariableName < Base
         
     | 
| 
      
 149 
     | 
    
         
            +
                    extend AutoCorrector
         
     | 
| 
      
 150 
     | 
    
         
            +
             
     | 
| 
       148 
151 
     | 
    
         
             
                    include ConfigurableEnforcedStyle
         
     | 
| 
       149 
152 
     | 
    
         | 
| 
       150 
153 
     | 
    
         
             
                    MSG = 'Memoized variable `%<var>s` does not match ' \
         
     | 
| 
         @@ -163,6 +166,7 @@ module RuboCop 
     | 
|
| 
       163 
166 
     | 
    
         
             
                    PATTERN
         
     | 
| 
       164 
167 
     | 
    
         | 
| 
       165 
168 
     | 
    
         
             
                    # rubocop:disable Metrics/AbcSize
         
     | 
| 
      
 169 
     | 
    
         
            +
                    # rubocop:disable Metrics/MethodLength
         
     | 
| 
       166 
170 
     | 
    
         
             
                    def on_or_asgn(node)
         
     | 
| 
       167 
171 
     | 
    
         
             
                      lhs, _value = *node
         
     | 
| 
       168 
172 
     | 
    
         
             
                      return unless lhs.ivasgn_type?
         
     | 
| 
         @@ -175,14 +179,18 @@ module RuboCop 
     | 
|
| 
       175 
179 
     | 
    
         | 
| 
       176 
180 
     | 
    
         
             
                      return if matches?(method_name, lhs)
         
     | 
| 
       177 
181 
     | 
    
         | 
| 
      
 182 
     | 
    
         
            +
                      suggested_var = suggested_var(method_name)
         
     | 
| 
       178 
183 
     | 
    
         
             
                      msg = format(
         
     | 
| 
       179 
184 
     | 
    
         
             
                        message(lhs.children.first.to_s),
         
     | 
| 
       180 
185 
     | 
    
         
             
                        var: lhs.children.first.to_s,
         
     | 
| 
       181 
     | 
    
         
            -
                        suggested_var: suggested_var 
     | 
| 
      
 186 
     | 
    
         
            +
                        suggested_var: suggested_var,
         
     | 
| 
       182 
187 
     | 
    
         
             
                        method: method_name
         
     | 
| 
       183 
188 
     | 
    
         
             
                      )
         
     | 
| 
       184 
     | 
    
         
            -
                      add_offense(lhs, message: msg)
         
     | 
| 
      
 189 
     | 
    
         
            +
                      add_offense(lhs, message: msg) do |corrector|
         
     | 
| 
      
 190 
     | 
    
         
            +
                        corrector.replace(lhs.loc.name, "@#{suggested_var}")
         
     | 
| 
      
 191 
     | 
    
         
            +
                      end
         
     | 
| 
       185 
192 
     | 
    
         
             
                    end
         
     | 
| 
      
 193 
     | 
    
         
            +
                    # rubocop:enable Metrics/MethodLength
         
     | 
| 
       186 
194 
     | 
    
         
             
                    # rubocop:enable Metrics/AbcSize
         
     | 
| 
       187 
195 
     | 
    
         | 
| 
       188 
196 
     | 
    
         
             
                    # @!method defined_memoized?(node, ivar)
         
     | 
| 
         @@ -196,24 +204,31 @@ module RuboCop 
     | 
|
| 
       196 
204 
     | 
    
         
             
                    # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
         
     | 
| 
       197 
205 
     | 
    
         
             
                    def on_defined?(node)
         
     | 
| 
       198 
206 
     | 
    
         
             
                      arg = node.arguments.first
         
     | 
| 
       199 
     | 
    
         
            -
                      return unless arg.ivar_type?
         
     | 
| 
      
 207 
     | 
    
         
            +
                      return false unless arg.ivar_type?
         
     | 
| 
       200 
208 
     | 
    
         | 
| 
       201 
209 
     | 
    
         
             
                      method_node, method_name = find_definition(node)
         
     | 
| 
       202 
     | 
    
         
            -
                      return unless method_node
         
     | 
| 
      
 210 
     | 
    
         
            +
                      return false unless method_node
         
     | 
| 
       203 
211 
     | 
    
         | 
| 
       204 
212 
     | 
    
         
             
                      var_name = arg.children.first
         
     | 
| 
       205 
213 
     | 
    
         
             
                      defined_memoized?(method_node.body, var_name) do |defined_ivar, return_ivar, ivar_assign|
         
     | 
| 
       206 
     | 
    
         
            -
                        return if matches?(method_name, ivar_assign)
         
     | 
| 
      
 214 
     | 
    
         
            +
                        return false if matches?(method_name, ivar_assign)
         
     | 
| 
       207 
215 
     | 
    
         | 
| 
      
 216 
     | 
    
         
            +
                        suggested_var = suggested_var(method_name)
         
     | 
| 
       208 
217 
     | 
    
         
             
                        msg = format(
         
     | 
| 
       209 
218 
     | 
    
         
             
                          message(var_name.to_s),
         
     | 
| 
       210 
219 
     | 
    
         
             
                          var: var_name.to_s,
         
     | 
| 
       211 
     | 
    
         
            -
                          suggested_var: suggested_var 
     | 
| 
      
 220 
     | 
    
         
            +
                          suggested_var: suggested_var,
         
     | 
| 
       212 
221 
     | 
    
         
             
                          method: method_name
         
     | 
| 
       213 
222 
     | 
    
         
             
                        )
         
     | 
| 
       214 
     | 
    
         
            -
                        add_offense(defined_ivar, message: msg)
         
     | 
| 
       215 
     | 
    
         
            -
             
     | 
| 
       216 
     | 
    
         
            -
                         
     | 
| 
      
 223 
     | 
    
         
            +
                        add_offense(defined_ivar, message: msg) do |corrector|
         
     | 
| 
      
 224 
     | 
    
         
            +
                          corrector.replace(defined_ivar, "@#{suggested_var}")
         
     | 
| 
      
 225 
     | 
    
         
            +
                        end
         
     | 
| 
      
 226 
     | 
    
         
            +
                        add_offense(return_ivar, message: msg) do |corrector|
         
     | 
| 
      
 227 
     | 
    
         
            +
                          corrector.replace(return_ivar, "@#{suggested_var}")
         
     | 
| 
      
 228 
     | 
    
         
            +
                        end
         
     | 
| 
      
 229 
     | 
    
         
            +
                        add_offense(ivar_assign.loc.name, message: msg) do |corrector|
         
     | 
| 
      
 230 
     | 
    
         
            +
                          corrector.replace(ivar_assign.loc.name, "@#{suggested_var}")
         
     | 
| 
      
 231 
     | 
    
         
            +
                        end
         
     | 
| 
       217 
232 
     | 
    
         
             
                      end
         
     | 
| 
       218 
233 
     | 
    
         
             
                    end
         
     | 
| 
       219 
234 
     | 
    
         
             
                    # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
         
     | 
| 
         @@ -82,9 +82,7 @@ module RuboCop 
     | 
|
| 
       82 
82 
     | 
    
         
             
                      message = message(node)
         
     | 
| 
       83 
83 
     | 
    
         | 
| 
       84 
84 
     | 
    
         
             
                      add_offense(range, message: message) do |corrector|
         
     | 
| 
       85 
     | 
    
         
            -
                        corrector 
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
       87 
     | 
    
         
            -
                        correct_node(corrector, node.body, offending_name, preferred_name)
         
     | 
| 
      
 85 
     | 
    
         
            +
                        autocorrect(corrector, node, range, offending_name, preferred_name)
         
     | 
| 
       88 
86 
     | 
    
         
             
                      end
         
     | 
| 
       89 
87 
     | 
    
         
             
                    end
         
     | 
| 
       90 
88 
     | 
    
         | 
| 
         @@ -95,6 +93,16 @@ module RuboCop 
     | 
|
| 
       95 
93 
     | 
    
         
             
                      variable.source_range
         
     | 
| 
       96 
94 
     | 
    
         
             
                    end
         
     | 
| 
       97 
95 
     | 
    
         | 
| 
      
 96 
     | 
    
         
            +
                    def autocorrect(corrector, node, range, offending_name, preferred_name)
         
     | 
| 
      
 97 
     | 
    
         
            +
                      corrector.replace(range, preferred_name)
         
     | 
| 
      
 98 
     | 
    
         
            +
                      correct_node(corrector, node.body, offending_name, preferred_name)
         
     | 
| 
      
 99 
     | 
    
         
            +
                      return unless (kwbegin_node = node.parent.each_ancestor(:kwbegin).first)
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
                      kwbegin_node.right_siblings.each do |child_node|
         
     | 
| 
      
 102 
     | 
    
         
            +
                        correct_node(corrector, child_node, offending_name, preferred_name)
         
     | 
| 
      
 103 
     | 
    
         
            +
                      end
         
     | 
| 
      
 104 
     | 
    
         
            +
                    end
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
       98 
106 
     | 
    
         
             
                    def variable_name_matches?(node, name)
         
     | 
| 
       99 
107 
     | 
    
         
             
                      if node.masgn_type?
         
     | 
| 
       100 
108 
     | 
    
         
             
                        node.each_descendant(:lvasgn).any? do |lvasgn_node|
         
     | 
| 
         @@ -20,9 +20,14 @@ module RuboCop 
     | 
|
| 
       20 
20 
     | 
    
         
             
                  #   # good
         
     | 
| 
       21 
21 
     | 
    
         
             
                  #   fooBar = 1
         
     | 
| 
       22 
22 
     | 
    
         
             
                  #
         
     | 
| 
      
 23 
     | 
    
         
            +
                  # @example AllowedIdentifiers: ['fooBar']
         
     | 
| 
      
 24 
     | 
    
         
            +
                  #   # good (with EnforcedStyle: snake_case)
         
     | 
| 
      
 25 
     | 
    
         
            +
                  #   fooBar = 1
         
     | 
| 
      
 26 
     | 
    
         
            +
                  #
         
     | 
| 
       23 
27 
     | 
    
         
             
                  # @example AllowedPatterns: ['_v\d+\z']
         
     | 
| 
       24 
     | 
    
         
            -
                  #   # good
         
     | 
| 
      
 28 
     | 
    
         
            +
                  #   # good (with EnforcedStyle: camelCase)
         
     | 
| 
       25 
29 
     | 
    
         
             
                  #   :release_v1
         
     | 
| 
      
 30 
     | 
    
         
            +
                  #
         
     | 
| 
       26 
31 
     | 
    
         
             
                  class VariableName < Base
         
     | 
| 
       27 
32 
     | 
    
         
             
                    include AllowedIdentifiers
         
     | 
| 
       28 
33 
     | 
    
         
             
                    include ConfigurableNaming
         
     | 
| 
         @@ -92,6 +92,7 @@ module RuboCop 
     | 
|
| 
       92 
92 
     | 
    
         
             
                      comment_line?(processed_source[node.first_line - 2])
         
     | 
| 
       93 
93 
     | 
    
         
             
                    end
         
     | 
| 
       94 
94 
     | 
    
         | 
| 
      
 95 
     | 
    
         
            +
                    # rubocop:disable Metrics/CyclomaticComplexity
         
     | 
| 
       95 
96 
     | 
    
         
             
                    def groupable_accessor?(node)
         
     | 
| 
       96 
97 
     | 
    
         
             
                      return true unless (previous_expression = node.left_siblings.last)
         
     | 
| 
       97 
98 
     | 
    
         | 
| 
         @@ -104,8 +105,11 @@ module RuboCop 
     | 
|
| 
       104 
105 
     | 
    
         | 
| 
       105 
106 
     | 
    
         
             
                      return true unless previous_expression.send_type?
         
     | 
| 
       106 
107 
     | 
    
         | 
| 
       107 
     | 
    
         
            -
                      previous_expression.attribute_accessor? || 
     | 
| 
      
 108 
     | 
    
         
            +
                      previous_expression.attribute_accessor? ||
         
     | 
| 
      
 109 
     | 
    
         
            +
                        previous_expression.access_modifier? ||
         
     | 
| 
      
 110 
     | 
    
         
            +
                        node.first_line - previous_expression.last_line > 1 # there is a space between nodes
         
     | 
| 
       108 
111 
     | 
    
         
             
                    end
         
     | 
| 
      
 112 
     | 
    
         
            +
                    # rubocop:enable Metrics/CyclomaticComplexity
         
     | 
| 
       109 
113 
     | 
    
         | 
| 
       110 
114 
     | 
    
         
             
                    def class_send_elements(class_node)
         
     | 
| 
       111 
115 
     | 
    
         
             
                      class_def = class_node.body
         
     | 
| 
         @@ -24,7 +24,7 @@ module RuboCop 
     | 
|
| 
       24 
24 
     | 
    
         
             
                    def on_send(node)
         
     | 
| 
       25 
25 
     | 
    
         
             
                      return unless node.command?(:attr) && node.arguments?
         
     | 
| 
       26 
26 
     | 
    
         
             
                      # check only for method definitions in class/module body
         
     | 
| 
       27 
     | 
    
         
            -
                      return if  
     | 
| 
      
 27 
     | 
    
         
            +
                      return if allowed_context?(node)
         
     | 
| 
       28 
28 
     | 
    
         | 
| 
       29 
29 
     | 
    
         
             
                      message = message(node)
         
     | 
| 
       30 
30 
     | 
    
         
             
                      add_offense(node.loc.selector, message: message) do |corrector|
         
     | 
| 
         @@ -34,6 +34,16 @@ module RuboCop 
     | 
|
| 
       34 
34 
     | 
    
         | 
| 
       35 
35 
     | 
    
         
             
                    private
         
     | 
| 
       36 
36 
     | 
    
         | 
| 
      
 37 
     | 
    
         
            +
                    def allowed_context?(node)
         
     | 
| 
      
 38 
     | 
    
         
            +
                      return false unless (class_node = node.each_ancestor(:class, :block).first)
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                      (!class_node.class_type? && !class_eval?(class_node)) || define_attr_method?(class_node)
         
     | 
| 
      
 41 
     | 
    
         
            +
                    end
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                    def define_attr_method?(node)
         
     | 
| 
      
 44 
     | 
    
         
            +
                      node.each_descendant(:def).any? { |def_node| def_node.method?(:attr) }
         
     | 
| 
      
 45 
     | 
    
         
            +
                    end
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
       37 
47 
     | 
    
         
             
                    def autocorrect(corrector, node)
         
     | 
| 
       38 
48 
     | 
    
         
             
                      attr_name, setter = *node.arguments
         
     | 
| 
       39 
49 
     | 
    
         | 
| 
         @@ -35,7 +35,7 @@ module RuboCop 
     | 
|
| 
       35 
35 
     | 
    
         
             
                          unless contents.empty?
         
     | 
| 
       36 
36 
     | 
    
         
             
                            corrector.replace(
         
     | 
| 
       37 
37 
     | 
    
         
             
                              contents,
         
     | 
| 
       38 
     | 
    
         
            -
                              contents.source.gsub(/\A/, '# ').gsub( 
     | 
| 
      
 38 
     | 
    
         
            +
                              contents.source.gsub(/\A/, '# ').gsub("\n\n", "\n#\n").gsub(/\n(?=[^#])/, "\n# ")
         
     | 
| 
       39 
39 
     | 
    
         
             
                            )
         
     | 
| 
       40 
40 
     | 
    
         
             
                          end
         
     | 
| 
       41 
41 
     | 
    
         
             
                          corrector.remove(eq_end)
         
     |