.rubocop.yml in cryptum-0.0.299 vs .rubocop.yml in cryptum-0.0.300
- old
+ new
@@ -1,9 +1,25 @@
AllCops:
UseCache: false
NewCops: enable
Layout:
Max: 3000
+Layout/LineLength:
+ Max: 256
+Metrics/AbcSize:
+ Max: 512
+Metrics/BlockLength:
+ Max: 256
+Metrics/BlockNesting:
+ Max: 4
+Metrics/CyclomaticComplexity:
+ Max: 128
+Metrics/MethodLength:
+ Max: 512
+Metrics/ModuleLength:
+ Max: 1024
+Metrics/PerceivedComplexity:
+ Max: 128
Style/HashEachMethods:
Enabled: true
Style/HashSyntax:
EnforcedShorthandSyntax: never
Style/HashTransformKeys: