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.
This commit is contained in:
Mike McQuaid 2017-05-09 12:58:49 +01:00
parent f1d4c4be78
commit 0fb1fb51be

View File

@ -40,6 +40,11 @@ Metrics/MethodLength:
Metrics/ModuleLength:
CountComments: false
Exclude:
- '**/bin/**/*'
- '**/cmd/**/*'
- '**/lib/**/*'
- '**/spec/**/*'
Metrics/PerceivedComplexity:
Enabled: false