From 14dd97c889f852399829a1064c9a214e8ffad9d8 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Fri, 28 Jun 2024 13:11:06 +0200 Subject: [PATCH] rubocop.yml: exclude fixtures directory When we've a fixtures directory we should not lint the fixtures. Those are usually files that we us in our tests to compare output of certain things. --- rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/rubocop.yml b/rubocop.yml index 7707417..b219b49 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -14,6 +14,7 @@ AllCops: Exclude: - vendor/**/* - .vendor/**/* + - spec/fixtures/**/* # this currently doesn't work with the way we handle our secrets Gemspec/RequireMFA: