.rubocop.yml in binbundle-1.0.5 vs .rubocop.yml in binbundle-1.0.8

- old
+ new

@@ -1,7 +1,12 @@ +require: + - rubocop-rspec + - rubocop-rake + AllCops: TargetRubyVersion: 2.6 + # SuggestExtensions: false Style/StringLiterals: Enabled: true EnforcedStyle: single_quotes @@ -9,5 +14,17 @@ Enabled: true EnforcedStyle: single_quotes Layout/LineLength: Max: 120 + +Metrics/MethodLength: + Max: 40 + +Metrics/CyclomaticComplexity: + Max: 10 + +Metrics/PerceivedComplexity: + Max: 30 + +Metrics/AbcSize: + Max: 40