.rubocop.yml in touringplans-0.1.0 vs .rubocop.yml in touringplans-0.2.3
- old
+ new
@@ -1,13 +1,28 @@
AllCops:
- TargetRubyVersion: 2.4
+ TargetRubyVersion: 2.6
+ SuggestExtensions: false
+ NewCops: enable
+Style/FrozenStringLiteralComment:
+ Enabled: false
+
+Style/RaiseArgs:
+ Enabled: false
+
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes
Layout/LineLength:
- Max: 120
+ Max: 200
+
+Metrics/BlockLength:
+ Exclude:
+ - "spec/*"
+
+Metrics/MethodLength:
+ Max: 20