.rubocop.yml in lorj-1.0.10 vs .rubocop.yml in lorj-1.0.11

- old
+ new

@@ -31,16 +31,22 @@ Style/HashSyntax: EnforcedStyle: hash_rockets # lets start with 40, but 10 is way to small.. Metrics/MethodLength: - Max: 40 + Max: 50 # If Method length is increased, class length need to be extended as well. Metrics/ClassLength: Max: 150 # allow arguments to be longer than 15 Metrics/AbcSize: - Max: 40 + Max: 50 +# Perceived Complexity +Metrics/PerceivedComplexity: + Max: 9 +Metrics/CyclomaticComplexity: + Max: 8 + # forj-docker binary name gets an exception Style/FileName: Exclude: ['bin/forj-docker', 'lib/**/forj-docker.rb']