From a276542098fbef744a3fd3428e3b34b52732b005 Mon Sep 17 00:00:00 2001 From: Glenn Sarti Date: Thu, 16 Mar 2017 16:00:32 -0700 Subject: [PATCH] (maint) Ignore the crashing WordArray cop in rubocop Previously the Style/WordArray cop was crashing in the following fil: lib/vmpooler/api/helpers.rb This commit disables this cop until the root cause can be determined. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 066ea5e..f0fb43c 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -44,6 +44,9 @@ Metrics/BlockLength: Metrics/ModuleLength: Enabled: false +# WordArray is crashing rubocop in lib/vmpooler/api/helpers.rb +Style/WordArray: + Enabled: false # Either sytnax for regex is ok Style/RegexpLiteral: