aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-05-09 12:58:49 +0100
committerMike McQuaid2017-05-09 12:58:49 +0100
commit0fb1fb51be8221b8c879d7e73dad51fc0a2b42ad (patch)
tree62e344e78e415cc6fafa648190aa60bfe02f196e /Library
parentf1d4c4be78905be0d5fd83922ff1262ed92ba4e8 (diff)
downloadbrew-0fb1fb51be8221b8c879d7e73dad51fc0a2b42ad.tar.bz2
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.
Diffstat (limited to 'Library')
-rw-r--r--Library/.rubocop.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml
index 442315e6b..d77a8b100 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