Sha256: ad5ce650811c45d074addec3454e802530a06310361b34741b2a853f5ae584dd

Contents?: true

Size: 1.65 KB

Versions: 9

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Layout
      # This cop looks for trailing whitespace in the source code.
      #
      # @example
      #   # The line in this example contains spaces after the 0.
      #   # bad
      #   x = 0
      #
      #   # The line in this example ends directly after the 0.
      #   # good
      #   x = 0
      #
      class TrailingWhitespace < Cop
        include RangeHelp

        MSG = 'Trailing whitespace detected.'.freeze

        def investigate(processed_source)
          heredoc_ranges = extract_heredoc_ranges(processed_source.ast)
          processed_source.lines.each_with_index do |line, index|
            next unless line.end_with?(' ', "\t")
            next if skip_heredoc? && inside_heredoc?(heredoc_ranges, index + 1)

            range = source_range(processed_source.buffer,
                                 index + 1,
                                 (line.rstrip.length)...(line.length))

            add_offense(range, location: range)
          end
        end

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

        private

        def skip_heredoc?
          cop_config.fetch('AllowInHeredoc', false)
        end

        def inside_heredoc?(heredoc_ranges, line_number)
          heredoc_ranges.any? { |r| r.include?(line_number) }
        end

        def extract_heredoc_ranges(ast)
          return [] unless ast
          ast.each_node(:str, :dstr, :xstr).select(&:heredoc?).map do |node|
            body = node.location.heredoc_body
            (body.first_line...body.last_line)
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
rubocop-0.58.2 lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.58.1 lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.58.0 lib/rubocop/cop/layout/trailing_whitespace.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.57.2 lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.57.1 lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.57.0 lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.56.0 lib/rubocop/cop/layout/trailing_whitespace.rb
rubocop-0.55.0 lib/rubocop/cop/layout/trailing_whitespace.rb