├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── rubocop.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── config └── default.yml ├── lib ├── rubocop-i18n.rb └── rubocop │ ├── cop │ ├── i18n │ │ ├── gettext.rb │ │ ├── gettext │ │ │ ├── decorate_function_message.rb │ │ │ ├── decorate_string.rb │ │ │ ├── decorate_string_formatting_using_interpolation.rb │ │ │ └── decorate_string_formatting_using_percent.rb │ │ ├── rails_i18n.rb │ │ └── rails_i18n │ │ │ ├── decorate_string.rb │ │ │ └── decorate_string_formatting_using_interpolation.rb │ └── i18n_cops.rb │ ├── i18n.rb │ └── i18n │ ├── plugin.rb │ └── version.rb ├── rubocop-i18n.gemspec └── spec ├── rubocop └── cop │ └── i18n │ ├── get_text │ ├── decorate_function_message_spec.rb │ ├── decorate_string_formatting_using_interpolation_spec.rb │ ├── decorate_string_formatting_using_percent_spec.rb │ └── decorate_string_spec.rb │ └── rails_i18n │ ├── decorate_string_formatting_using_interpolation_spec.rb │ └── decorate_string_spec.rb ├── shared_examples.rb ├── shared_functions.rb └── spec_helper.rb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/.github/workflows/rubocop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/bin/setup -------------------------------------------------------------------------------- /config/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/config/default.yml -------------------------------------------------------------------------------- /lib/rubocop-i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop-i18n.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/gettext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/gettext.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/gettext/decorate_function_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/gettext/decorate_function_message.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/gettext/decorate_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/gettext/decorate_string.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/gettext/decorate_string_formatting_using_interpolation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/gettext/decorate_string_formatting_using_interpolation.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/gettext/decorate_string_formatting_using_percent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/gettext/decorate_string_formatting_using_percent.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/rails_i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/rails_i18n.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/rails_i18n/decorate_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/rails_i18n/decorate_string.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n/rails_i18n/decorate_string_formatting_using_interpolation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n/rails_i18n/decorate_string_formatting_using_interpolation.rb -------------------------------------------------------------------------------- /lib/rubocop/cop/i18n_cops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/cop/i18n_cops.rb -------------------------------------------------------------------------------- /lib/rubocop/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/i18n.rb -------------------------------------------------------------------------------- /lib/rubocop/i18n/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/i18n/plugin.rb -------------------------------------------------------------------------------- /lib/rubocop/i18n/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/lib/rubocop/i18n/version.rb -------------------------------------------------------------------------------- /rubocop-i18n.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/rubocop-i18n.gemspec -------------------------------------------------------------------------------- /spec/rubocop/cop/i18n/get_text/decorate_function_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/rubocop/cop/i18n/get_text/decorate_function_message_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/i18n/get_text/decorate_string_formatting_using_interpolation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/rubocop/cop/i18n/get_text/decorate_string_formatting_using_interpolation_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/i18n/get_text/decorate_string_formatting_using_percent_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/rubocop/cop/i18n/get_text/decorate_string_formatting_using_percent_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/i18n/get_text/decorate_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/rubocop/cop/i18n/get_text/decorate_string_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/i18n/rails_i18n/decorate_string_formatting_using_interpolation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/rubocop/cop/i18n/rails_i18n/decorate_string_formatting_using_interpolation_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop/i18n/rails_i18n/decorate_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/rubocop/cop/i18n/rails_i18n/decorate_string_spec.rb -------------------------------------------------------------------------------- /spec/shared_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/shared_examples.rb -------------------------------------------------------------------------------- /spec/shared_functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/shared_functions.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/rubocop-i18n/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------