Sha256: 859c9efd378b288ab23ad36ad6e44b4b1e097462a1bbc15f8a3cac2626e97a67

Contents?: true

Size: 1.75 KB

Versions: 38

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for redundant `with_object`.
      #
      # @example
      #   # bad
      #   ary.each_with_object([]) do |v|
      #     v
      #   end
      #
      #   # good
      #   ary.each do |v|
      #     v
      #   end
      #
      #   # bad
      #   ary.each.with_object([]) do |v|
      #     v
      #   end
      #
      #   # good
      #   ary.each do |v|
      #     v
      #   end
      #
      class RedundantWithObject < Base
        include RangeHelp
        extend AutoCorrector

        MSG_EACH_WITH_OBJECT = 'Use `each` instead of `each_with_object`.'

        MSG_WITH_OBJECT = 'Remove redundant `with_object`.'

        # @!method redundant_with_object?(node)
        def_node_matcher :redundant_with_object?, <<~PATTERN
          (block
            $(send _ {:each_with_object :with_object}
              _)
            (args
              (arg _))
            ...)
        PATTERN

        def on_block(node)
          return unless (send = redundant_with_object?(node))

          range = with_object_range(send)

          add_offense(range, message: message(send)) do |corrector|
            if send.method?(:each_with_object)
              corrector.replace(range, 'each')
            else
              corrector.remove(range)
              corrector.remove(send.loc.dot)
            end
          end
        end

        private

        def message(node)
          if node.method?(:each_with_object)
            MSG_EACH_WITH_OBJECT
          else
            MSG_WITH_OBJECT
          end
        end

        def with_object_range(send)
          range_between(send.loc.selector.begin_pos, send.loc.expression.end_pos)
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 6 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/redundant_with_object.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.29.1 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.29.0 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.28.2 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.28.1 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.28.0 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.27.0 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.26.1 lib/rubocop/cop/lint/redundant_with_object.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.26.0 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.25.1 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.25.0 lib/rubocop/cop/lint/redundant_with_object.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.24.1 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.24.0 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.23.0 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.22.3 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.22.2 lib/rubocop/cop/lint/redundant_with_object.rb
rubocop-1.22.1 lib/rubocop/cop/lint/redundant_with_object.rb