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/**/*'
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