Sha256: 869b89a8f80fc85e9715b2024919f4002307ea85430785138ee6fbf31102d83a

Contents?: true

Size: 1.58 KB

Versions: 6833

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module InternalAffairs
      # Checks for redundant `location` argument to `#add_offense`. `location`
      # argument has a default value of `:expression` and this method will
      # automatically use it.
      #
      # @example
      #
      #   # bad
      #   add_offense(node, location: :expression)
      #
      #   # good
      #   add_offense(node)
      #   add_offense(node, location: :selector)
      #
      class RedundantLocationArgument < Cop
        include RangeHelp

        MSG = 'Redundant location argument to `#add_offense`.'.freeze

        def_node_matcher :add_offense_kwargs, <<-PATTERN
          (send nil? :add_offense _ $hash)
        PATTERN

        def_node_matcher :redundant_location_argument?, <<-PATTERN
          (pair (sym :location) (sym :expression))
        PATTERN

        def on_send(node)
          redundant_location_argument(node) { |argument| add_offense(argument) }
        end

        def autocorrect(node)
          range = offending_range(node)

          ->(corrector) { corrector.remove(range) }
        end

        private

        def redundant_location_argument(node)
          add_offense_kwargs(node) do |kwargs|
            result =
              kwargs.pairs.find { |arg| redundant_location_argument?(arg) }

            yield result if result
          end
        end

        def offending_range(node)
          with_space = range_with_surrounding_space(range: node.loc.expression)

          range_with_surrounding_comma(with_space, :left)
        end
      end
    end
  end
end

Version data entries

6,833 entries across 6,827 versions & 26 rubygems

Version Path
rubocop-0.59.1 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.59.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.58.2 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.58.1 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.58.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.57.2 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.57.1 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.57.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.56.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.55.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.54.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
rubocop-0.53.0 lib/rubocop/cop/internal_affairs/redundant_location_argument.rb