Sha256: 877516b508b98e47080020a6af5c33b97e12ca9b6155c3b1cc7fd414e578f346

Contents?: true

Size: 1.86 KB

Versions: 19

Compression:

Stored size: 1.86 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Looks for uses of `map.to_set` or `collect.to_set` that could be
      # written with just `to_set`.
      #
      # @safety
      #   This cop is unsafe, as it can produce false positives if the receiver
      #   is not an `Enumerable`.
      #
      # @example
      #   # bad
      #   something.map { |i| i * 2 }.to_set
      #
      #   # good
      #   something.to_set { |i| i * 2 }
      #
      #   # bad
      #   [1, 2, 3].collect { |i| i.to_s }.to_set
      #
      #   # good
      #   [1, 2, 3].to_set { |i| i.to_s }
      #
      class MapToSet < Base
        extend AutoCorrector
        include RangeHelp

        MSG = 'Pass a block to `to_set` instead of calling `%<method>s.to_set`.'
        RESTRICT_ON_SEND = %i[to_set].freeze

        # @!method map_to_set?(node)
        def_node_matcher :map_to_set?, <<~PATTERN
          {
            $(send ({block numblock} $(send _ {:map :collect}) ...) :to_set)
            $(send $(send _ {:map :collect} (block_pass sym)) :to_set)
          }
        PATTERN

        def on_send(node)
          return unless (to_set_node, map_node = map_to_set?(node))

          message = format(MSG, method: map_node.loc.selector.source)
          add_offense(map_node.loc.selector, message: message) do |corrector|
            # If the `to_set` call already has a block, do not autocorrect.
            next if to_set_node.block_literal?

            autocorrect(corrector, to_set_node, map_node)
          end
        end

        private

        def autocorrect(corrector, to_set, map)
          removal_range = range_between(to_set.loc.dot.begin_pos, to_set.loc.selector.end_pos)

          corrector.remove(range_with_surrounding_space(removal_range, side: :left))
          corrector.replace(map.loc.selector, 'to_set')
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 4 rubygems

Version Path
rubocop-1.70.0 lib/rubocop/cop/style/map_to_set.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/map_to_set.rb
rubocop-1.69.2 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.69.1 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.69.0 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.68.0 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.67.0 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.66.1 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.66.0 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.65.1 lib/rubocop/cop/style/map_to_set.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/map_to_set.rb
rubocop-1.65.0 lib/rubocop/cop/style/map_to_set.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/map_to_set.rb
rubocop-1.64.1 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.63.4 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.63.3 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.63.2 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.63.1 lib/rubocop/cop/style/map_to_set.rb
rubocop-1.63.0 lib/rubocop/cop/style/map_to_set.rb