Sha256: a9c1be28d76bb0cb1645aa7fe5d74ec8b954dc1e8a5e6039e937cf58ff5a9435

Contents?: true

Size: 1.39 KB

Versions: 6

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for string conversion in string interpolation,
      # which is redundant.
      #
      # @example
      #
      #   # bad
      #
      #   "result is #{something.to_s}"
      #
      # @example
      #
      #   # good
      #
      #   "result is #{something}"
      class StringConversionInInterpolation < Cop
        MSG_DEFAULT = 'Redundant use of `Object#to_s` in interpolation.'.freeze
        MSG_SELF = 'Use `self` instead of `Object#to_s` in ' \
                   'interpolation.'.freeze

        def on_dstr(node)
          node.each_child_node(:begin) do |begin_node|
            final_node = begin_node.children.last

            next unless final_node && final_node.send_type? &&
                        final_node.method?(:to_s) && !final_node.arguments?

            add_offense(final_node, location: :selector)
          end
        end

        def autocorrect(node)
          lambda do |corrector|
            receiver, _method_name, *_args = *node
            corrector.replace(
              node.source_range,
              if receiver
                receiver.source
              else
                'self'
              end
            )
          end
        end

        private

        def message(node)
          node.receiver ? MSG_DEFAULT : MSG_SELF
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.56.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.55.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.54.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.53.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.52.1 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
rubocop-0.52.0 lib/rubocop/cop/lint/string_conversion_in_interpolation.rb