]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop.yml
Merge pull request #5247 from tomhughes/rails-72-defaults
[rails.git] / .rubocop.yml
index 5ffc61c41274ef068d3d9d0d41696a0db16ea339..8b6ed018032c66c116e4b08fe6ba697e9c608a9d 100644 (file)
@@ -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
 
@@ -55,9 +64,6 @@ Rails/HasManyOrHasOneDependent:
 Rails/HttpPositionalArguments:
   Enabled: false
 
-Rails/MigrationClassName:
-  Enabled: false
-
 Rails/ReflectionClassName:
   Enabled: false