From 720ee2f011aa696d4029b07aa6216c9571c2e030 Mon Sep 17 00:00:00 2001 From: Mathieu Rul Date: Tue, 3 Oct 2023 03:38:14 +0200 Subject: [PATCH] Ignore vendor directory with RuboCop (#470) Signed-off-by: Mathieu Rul --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 8e2ce17d..392fc849 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -3,6 +3,7 @@ AllCops: NewCops: enable Exclude: - 'omnibus/bin/*' + - 'vendor/**/*' Layout/LineLength: Max: 80 @@ -51,4 +52,3 @@ Style/MultilineBlockChain: Style/NumericPredicate: Enabled: false -