From 176a018be897410bf4374e214654d1da2e4154b5 Mon Sep 17 00:00:00 2001 From: Gordon Diggs Date: Tue, 25 Oct 2016 16:54:16 -0400 Subject: [PATCH] Disable Length checks We never follow them, and always have to merge around them --- ruby/rubocop.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/ruby/rubocop.yml b/ruby/rubocop.yml index a8c8f59..22214ea 100644 --- a/ruby/rubocop.yml +++ b/ruby/rubocop.yml @@ -8,6 +8,12 @@ Metrics/LineLength: Metrics/AbcSize: Enabled: false +Metrics/ModuleLength: + Enabled: false + +Metrics/MethodLength: + Enabled: false + ################################################################################ # Style ################################################################################ @@ -135,14 +141,6 @@ Rails/TimeZone: # Specs - be more lenient on length checks and block styles ################################################################################ -Metrics/ModuleLength: - Exclude: - - spec/**/* - -Metrics/MethodLength: - Exclude: - - spec/**/* - Style/ClassAndModuleChildren: Exclude: - spec/**/*