.rubocop.yml in sorcery-argon2-1.0.0 vs .rubocop.yml in sorcery-argon2-1.1.0

- old
+ new

@@ -1,14 +1,23 @@ Metrics/AbcSize: - Max: 20 + Max: 21 +Metrics/ClassLength: + Exclude: + - 'lib/argon2/password.rb' + Metrics/CyclomaticComplexity: Enabled: false Metrics/PerceivedComplexity: Enabled: false +Metrics/ParameterLists: + Max: 5 + Exclude: + - 'lib/argon2/ffi_engine.rb' + Layout/LineLength: Max: 160 Exclude: - 'test/low_level_test.rb' @@ -203,6 +212,29 @@ Enabled: true Style/RedundantArgument: # (new in 1.4) Enabled: true Style/SwapValues: # (new in 1.1) Enabled: true - +Gemspec/DateAssignment: # (new in 1.10) + Enabled: true +Lint/DeprecatedConstants: # (new in 1.8) + Enabled: true +Lint/LambdaWithoutLiteralBlock: # (new in 1.8) + Enabled: true +Lint/NumberedParameterAssignment: # (new in 1.9) + Enabled: true +Lint/OrAssignmentToConstant: # (new in 1.9) + Enabled: true +Lint/RedundantDirGlobSort: # (new in 1.8) + Enabled: true +Lint/SymbolConversion: # (new in 1.9) + Enabled: true +Lint/TripleQuotes: # (new in 1.9) + Enabled: true +Style/EndlessMethod: # (new in 1.8) + Enabled: true +Style/HashConversion: # (new in 1.10) + Enabled: true +Style/IfWithBooleanLiteralBranches: # (new in 1.9) + Enabled: true +Style/StringChars: # (new in 1.12) + Enabled: true