From 73bce82c824708b091e9b0872d7d89f0e3f76603 Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Fri, 14 Jun 2019 10:06:26 -0400 Subject: [PATCH] Exclude plugins from RuboCop checks Since official plugins are now in the discourse_test image, rubocop catches issues in plugins. This is a temporary measure. --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.rubocop.yml b/.rubocop.yml index 5c99bdcc02a..8f24c3fbe8b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -7,6 +7,7 @@ AllCops: - 'vendor/**/*' - 'node_modules/**/*' - 'public/**/*' + - 'plugins/**/*' # Prefer &&/|| over and/or. Style/AndOr: