X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2e5e2bc26349030ac1330630a804b4e41a9a73fb..f138055849e5b09cd94797c3e1705c6357d6b93b:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index cfa31cc04..f8060f948 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.0 NewCops: enable Exclude: - 'vendor/**/*' @@ -16,6 +17,11 @@ AllCops: Rails: Enabled: true +# Config can be removed after https://github.com/rubocop/rubocop-factory_bot/issues/53 +FactoryBot/AssociationStyle: + Include: + - 'test/factories/**/*' + Layout/ExtraSpacing: AllowForAlignment: true