From c0b6604ba93f2cf3af1190de828a1ae79f2c5e95 Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Tue, 7 Apr 2015 16:51:20 +0300 Subject: [PATCH] Turn off rubocop array suggestions, becaus not correct with subarrays --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index eb873ef20..100e331cb 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -85,3 +85,7 @@ Style/AlignParameters: # No need fancy style of numbers such as 1_000_000 Style/NumericLiterals: Enabled: false + +# Too often suggest wrong syntax in subarray, this should be fix in rubocop first +Style/WordArray: + Enabled: false