From 0fb1fb51be8221b8c879d7e73dad51fc0a2b42ad Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 9 May 2017 12:58:49 +0100 Subject: [PATCH] rubocop: don't always care about module length. We don't care about this in external taps as this is more about code architecture than code style. --- Library/.rubocop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml index 442315e6b0..d77a8b1002 100644 --- a/Library/.rubocop.yml +++ b/Library/.rubocop.yml @@ -40,6 +40,11 @@ Metrics/MethodLength: Metrics/ModuleLength: CountComments: false + Exclude: + - '**/bin/**/*' + - '**/cmd/**/*' + - '**/lib/**/*' + - '**/spec/**/*' Metrics/PerceivedComplexity: Enabled: false