X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/92ca4069957666065194e0b63de5b46261b8a21d..9d8ca8be11b6a529eb352064b1ea9a3975c4e065:/.rubocop.yml?ds=sidebyside
diff --git a/.rubocop.yml b/.rubocop.yml
index 34605df1d..60d144544 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,12 +1,16 @@
inherit_from: .rubocop_todo.yml
require:
+ - rubocop-capybara
+ - rubocop-factory_bot
- rubocop-minitest
- rubocop-performance
- rubocop-rails
+ - rubocop-rake
AllCops:
- TargetRubyVersion: 2.5
+ TargetRubyVersion: 3.1
+ NewCops: enable
Exclude:
- 'vendor/**/*'
@@ -36,15 +40,21 @@ Metrics/ModuleLength:
Naming/FileName:
Exclude:
- 'script/deliver-message'
- - 'script/locale/reload-languages'
- 'script/update-spam-blocks'
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
@@ -54,19 +64,20 @@ Rails/HasManyOrHasOneDependent:
Rails/HttpPositionalArguments:
Enabled: false
-Rails/InverseOf:
+Rails/ReflectionClassName:
Enabled: false
Rails/SkipsModelValidations:
Exclude:
- 'db/migrate/*.rb'
- - 'app/controllers/users_controller.rb'
+ - 'app/controllers/users/lists_controller.rb'
Style/Documentation:
Enabled: false
Style/FormatStringToken:
- EnforcedStyle: template
+ Exclude:
+ - 'config/routes.rb'
Style/IfInsideElse:
Enabled: false