]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop.yml
Disable Minitest/MultipleAssertions cop for now
[rails.git] / .rubocop.yml
index cfa31cc048d6423973cd42b78d6ad7d000a63c1b..97bb72e0ac03fee0bc94c89280bdb14d400f4ee1 100644 (file)
@@ -2,13 +2,14 @@ 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.0
   NewCops: enable
   Exclude:
     - 'vendor/**/*'
@@ -36,6 +37,9 @@ Metrics/ClassLength:
 Metrics/ModuleLength:
   Max: 150
 
+Minitest/MultipleAssertions:
+  Enabled: false
+
 Naming/FileName:
   Exclude:
     - 'script/deliver-message'
@@ -47,6 +51,9 @@ Naming/MethodParameterName:
 Rails/CreateTableWithTimestamps:
   Enabled: false
 
+Rails/FindBy:
+  IgnoreWhereFirst: false
+
 Rails/FindEach:
   Enabled: false