Sha256: 104ddfe9e0bca92e047f8aa2a5be7e54ddaddd3968591ce6bca3344fa309f12a

Contents?: true

Size: 1.06 KB

Versions: 45

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Rails
      # Checks for the use of `I18n.locale=` method.
      #
      # The `locale` attribute persists for the rest of the Ruby runtime, potentially causing
      # unexpected behavior at a later time.
      # Using `I18n.with_locale` ensures the code passed in the block is the only place `I18n.locale` is affected.
      # It eliminates the possibility of a `locale` sticking around longer than intended.
      #
      # @example
      #   # bad
      #   I18n.locale = :fr
      #
      #   # good
      #   I18n.with_locale(:fr) do
      #   end
      #
      class I18nLocaleAssignment < Base
        MSG = 'Use `I18n.with_locale` with block instead of `I18n.locale=`.'
        RESTRICT_ON_SEND = %i[locale=].freeze

        def_node_matcher :i18n_locale_assignment?, <<~PATTERN
          (send (const {nil? cbase} :I18n) :locale= ...)
        PATTERN

        def on_send(node)
          return unless i18n_locale_assignment?(node)

          add_offense(node)
        end
      end
    end
  end
end

Version data entries

45 entries across 42 versions & 7 rubygems

Version Path
rubocop-rails-2.27.0 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.26.2 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.26.1 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.26.0 lib/rubocop/cop/rails/i18n_locale_assignment.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.25.1/lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.25.1 lib/rubocop/cop/rails/i18n_locale_assignment.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/i18n_locale_assignment.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/i18n_locale_assignment.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/i18n_locale_assignment.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.25.0/lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.24.1 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.24.0 lib/rubocop/cop/rails/i18n_locale_assignment.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.23.1/lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.23.1 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.23.0 lib/rubocop/cop/rails/i18n_locale_assignment.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/i18n_locale_assignment.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.20.0/lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.22.2 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.22.1 lib/rubocop/cop/rails/i18n_locale_assignment.rb
rubocop-rails-2.22.0 lib/rubocop/cop/rails/i18n_locale_assignment.rb