You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I propose to add a new cop Rails/LocaleAssignment which requires you to assign locale only in blocks. This would follow the same format Rails/TimeZoneAssignment.
# BAD
I18n.locale = :fr
# GOOD
I18n.with_locale(:fr) do
# do something
end
The text was updated successfully, but these errors were encountered:
I propose to add a new cop
Rails/LocaleAssignment
which requires you to assign locale only in blocks. This would follow the same formatRails/TimeZoneAssignment
.The text was updated successfully, but these errors were encountered: