+AllCops:
+ TargetRubyVersion: 3.0
+ NewCops: enable
+ Exclude:
+ - 'vendor/**/*'
+
+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
+
+Lint/PercentStringArray:
+ Exclude:
+ - 'config/initializers/secure_headers.rb'
+ - 'app/controllers/application_controller.rb'
+ - 'app/controllers/site_controller.rb'
+
+Metrics/BlockLength:
+ Exclude:
+ - 'config/routes.rb'
+
+Metrics/ClassLength:
+ Exclude:
+ - 'test/**/*'
+
+Metrics/ModuleLength:
+ Max: 150
+
+Naming/FileName: