X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ef12e7d4722e87aa01e70a4a4f4fa52acc031306..6094a97ce6297d390e5bbf733f5c2b4cc6b2076c:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index dc7590df3..60d144544 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,13 +1,15 @@ inherit_from: .rubocop_todo.yml require: + - rubocop-capybara + - rubocop-factory_bot - rubocop-minitest - rubocop-performance - rubocop-rails - rubocop-rake AllCops: - TargetRubyVersion: 2.7 + TargetRubyVersion: 3.1 NewCops: enable Exclude: - 'vendor/**/*' @@ -43,9 +45,16 @@ Naming/FileName: Naming/MethodParameterName: Enabled: false +# This conflicts with Strong Migrations, which can't check `change_table` +Rails/BulkChangeTable: + Enabled: false + Rails/CreateTableWithTimestamps: Enabled: false +Rails/FindBy: + IgnoreWhereFirst: false + Rails/FindEach: Enabled: false @@ -61,7 +70,7 @@ Rails/ReflectionClassName: Rails/SkipsModelValidations: Exclude: - 'db/migrate/*.rb' - - 'app/controllers/users_controller.rb' + - 'app/controllers/users/lists_controller.rb' Style/Documentation: Enabled: false @@ -96,12 +105,6 @@ Style/MixinUsage: - 'bin/setup' - 'bin/update' -Style/RedundantCondition: - Exclude: - - 'app/controllers/messages_controller.rb' - - 'app/controllers/sessions_controller.rb' - - 'app/controllers/users_controller.rb' - Style/StringLiterals: EnforcedStyle: double_quotes