From afa568486ad2f6d31f7041efd2c6b45c7e804239 Mon Sep 17 00:00:00 2001 From: Darius Schneider <schneider@itc.rwth-aachen.de> Date: Mon, 30 Sep 2024 11:22:08 +0200 Subject: [PATCH] Update rubocop-rails.yml --- rails/rubocop/rubocop-rails.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rails/rubocop/rubocop-rails.yml b/rails/rubocop/rubocop-rails.yml index 00e5f1b..e39255a 100644 --- a/rails/rubocop/rubocop-rails.yml +++ b/rails/rubocop/rubocop-rails.yml @@ -27,7 +27,7 @@ Rails/HasAndBelongsToMany: # prevent puts, but exclude test, config, db since Rails Logger may not have been loaded Rails/Output: - Exclude: *test_config_db + Exclude: ['test/**/*', 'config/**/*', 'db/**/*'] # allow usage of methods that skip validations; we trust developers know what they are doing Rails/SkipsModelValidations: -- GitLab