Sha256: 704117379a71505fc597b551051c54d57ae285ad19f376e6c3596426daa2b9a3
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
# encoding: utf-8 # frozen_string_literal: true module RuboCop module Cop module Lint # This cop checks for interpolated literals. # # @example # # "result is #{10}" class LiteralInInterpolation < Cop MSG = 'Literal interpolation detected.'.freeze def on_dstr(node) node.children.select { |n| n.type == :begin }.each do |begin_node| final_node = begin_node.children.last next unless final_node next if special_keyword?(final_node) next unless final_node.literal? add_offense(final_node, :expression) end end def autocorrect(node) value = autocorrected_value(node) ->(corrector) { corrector.replace(node.parent.source_range, value) } end private def special_keyword?(node) # handle strings like __FILE__ (node.type == :str && !node.loc.respond_to?(:begin)) || node.source_range.is?('__LINE__') end def autocorrected_value(node) node.str_type? ? node.children.last : node.source end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.36.0 | lib/rubocop/cop/lint/literal_in_interpolation.rb |