Sha256: 42e5c56230edff31f3ae6bc54b44b89ea2a5b309edeae67a94545adc02443c23

Contents?: true

Size: 1.64 KB

Versions: 13

Compression:

Stored size: 1.64 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for interpolation in a single quoted string.
      #
      # @example
      #
      #   # bad
      #
      #   foo = 'something with #{interpolation} inside'
      #
      # @example
      #
      #   # good
      #
      #   foo = "something with #{interpolation} inside"
      class InterpolationCheck < Base
        extend AutoCorrector

        MSG = 'Interpolation in single quoted string detected. '\
              'Use double quoted strings if you need interpolation.'

        def on_str(node)
          return unless node
          return if string_or_regex?(node.parent)
          return unless /(?<!\\)#\{.*\}/.match?(node.source)
          return if heredoc?(node)
          return unless node.loc.begin && node.loc.end

          add_offense(node) do |corrector|
            autocorrect(corrector, node)
          end
        end

        private

        def string_or_regex?(node)
          node&.dstr_type? || node&.regexp_type?
        end

        def autocorrect(corrector, node)
          starting_token, ending_token = if node.source.include?('"')
                                           ['%{', '}']
                                         else
                                           ['"', '"']
                                         end

          corrector.replace(node.loc.begin, starting_token)
          corrector.replace(node.loc.end, ending_token)
        end

        def heredoc?(node)
          node.loc.is_a?(Parser::Source::Map::Heredoc) ||
            (node.parent && heredoc?(node.parent))
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rubocop-1.12.1 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.12.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.11.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.10.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.9.1 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.9.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.8.1 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.8.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.7.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.6.1 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.6.0 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.5.2 lib/rubocop/cop/lint/interpolation_check.rb
rubocop-1.5.1 lib/rubocop/cop/lint/interpolation_check.rb