From a6b0e627cdfdfde9dbc63ec6f5cc113fadfa3401 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 2 Nov 2017 20:24:59 +0100 Subject: [PATCH] exclude public directory from RuboCop --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.rubocop.yml b/.rubocop.yml index a5299801802..b897ad3b9ec 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -6,6 +6,7 @@ AllCops: - 'bundle/**/*' - 'vendor/**/*' - 'node_modules/**/*' + - 'public/**/*' # Prefer &&/|| over and/or. Style/AndOr: