summaryrefslogtreecommitdiff
path: root/rubocop/cop/ruby_interpolation_in_translation.rb
blob: c431b4a1977f3f524bdcb60d92e7b5f8173ac8ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

module RuboCop
  module Cop
    class RubyInterpolationInTranslation < RuboCop::Cop::Cop
      MSG = "Don't use ruby interpolation \#{} inside translated strings, instead use \%{}"

      TRANSLATION_METHODS = ':_ :s_ :N_ :n_'

      def_node_matcher :translation_method?, <<~PATTERN
        (send nil? {#{TRANSLATION_METHODS}} $dstr ...)
      PATTERN

      def_node_matcher :plural_translation_method?, <<~PATTERN
        (send nil? :n_ str $dstr ...)
      PATTERN

      def on_send(node)
        interpolation = translation_method?(node) || plural_translation_method?(node)
        return unless interpolation

        interpolation.descendants.each do |possible_violation|
          add_offense(possible_violation, message: MSG) if possible_violation.type != :str
        end
      end
    end
  end
end