X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/904b88b1db9fe4470c73662683200bcb3e112427..34e06204636f4390b8b99fdce71af87d9a00663b:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index cfa31cc04..8b6ed0180 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -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.1 NewCops: enable Exclude: - 'vendor/**/*' @@ -44,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