Sha256: 9864dd2bafe67045e71376d21bc913cd35a7930b9b63486f3624fc5777a55f83

Contents?: true

Size: 1.09 KB

Versions: 30

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop identifies places where `lstrip.rstrip` can be replaced by
      # `strip`.
      #
      # @example
      #   # bad
      #   'abc'.lstrip.rstrip
      #   'abc'.rstrip.lstrip
      #
      #   # good
      #   'abc'.strip
      class Strip < Base
        include RangeHelp
        extend AutoCorrector

        MSG = 'Use `strip` instead of `%<methods>s`.'
        RESTRICT_ON_SEND = %i[lstrip rstrip].freeze

        def_node_matcher :lstrip_rstrip, <<~PATTERN
          {(send $(send _ $:rstrip) $:lstrip)
           (send $(send _ $:lstrip) $:rstrip)}
        PATTERN

        def on_send(node)
          lstrip_rstrip(node) do |first_send, method_one, method_two|
            range = range_between(first_send.loc.selector.begin_pos, node.source_range.end_pos)
            message = format(MSG, methods: "#{method_one}.#{method_two}")

            add_offense(range, message: message) do |corrector|
              corrector.replace(range, 'strip')
            end
          end
        end
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/style/strip.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cop/style/strip.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/style/strip.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/style/strip.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/style/strip.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cop/style/strip.rb
rubocop-1.10.0 lib/rubocop/cop/style/strip.rb
rubocop-1.9.1 lib/rubocop/cop/style/strip.rb
rubocop-1.9.0 lib/rubocop/cop/style/strip.rb
rubocop-1.8.1 lib/rubocop/cop/style/strip.rb
rubocop-1.8.0 lib/rubocop/cop/style/strip.rb
rubocop-1.7.0 lib/rubocop/cop/style/strip.rb
rubocop-1.6.1 lib/rubocop/cop/style/strip.rb
rubocop-1.6.0 lib/rubocop/cop/style/strip.rb
rubocop-1.5.2 lib/rubocop/cop/style/strip.rb
rubocop-1.5.1 lib/rubocop/cop/style/strip.rb
rubocop-1.5.0 lib/rubocop/cop/style/strip.rb
rubocop-1.4.2 lib/rubocop/cop/style/strip.rb
rubocop-1.4.1 lib/rubocop/cop/style/strip.rb
rubocop-1.4.0 lib/rubocop/cop/style/strip.rb