Exclude shell scripts from rubocop

This commit is contained in:
Henré Botha 2017-10-23 13:24:09 +02:00
parent c866b12d8c
commit 95e5e98d33

View file

@ -6,6 +6,7 @@ AllCops:
- 'benchmarks/*' - 'benchmarks/*'
- 'profile/*' - 'profile/*'
- 'lib/yaml/*' - 'lib/yaml/*'
- 'lib/**/*.sh'
DisplayCopNames: true DisplayCopNames: true
TargetRubyVersion: 2.1 TargetRubyVersion: 2.1
@ -86,7 +87,7 @@ Metrics/MethodLength:
Max: 20 Max: 20
Metrics/CyclomaticComplexity: Metrics/CyclomaticComplexity:
Max: 8 Max: 8
Metrics/PerceivedComplexity: Metrics/PerceivedComplexity:
Max: 8 Max: 8