.rubocop.yml in buildkit-1.3.0 vs .rubocop.yml in buildkit-1.4.0
- old
+ new
@@ -1,16 +1,19 @@
inherit_from: .rubocop_todo.yml
AllCops:
- TargetRubyVersion: 2.1
+ TargetRubyVersion: 2.2
Metrics/LineLength:
Max: 120
Metrics/MethodLength:
Max: 25
+Metrics/ClassLength:
+ Enabled: false
+
Metrics/BlockLength:
Enabled: false # RSpec ... :facepalm:
Metrics/AbcSize:
Max: 30
@@ -37,10 +40,13 @@
Enabled: false
Style/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
-Style/TrailingCommaInLiteral:
+Style/TrailingCommaInArrayLiteral:
+ EnforcedStyleForMultiline: comma
+
+Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma