.rubocop.yml in amoeba-3.2.0 vs .rubocop.yml in amoeba-3.3.0
- old
+ new
@@ -1,17 +1,21 @@
+require:
+ - rubocop-rspec
+ - rubocop-rake
+
+inherit_from: .rubocop_todo.yml
+
AllCops:
- Include:
- - '**/Rakefile'
- Exclude:
- - 'spec/**/*'
-Metrics/LineLength:
+ TargetRubyVersion: 2.5
+ NewCops: enable
+Layout/LineLength:
Max: 99
-Style/FileName:
+Naming/FileName:
Enabled: false
Style/ModuleFunction:
Enabled: false
Style/Encoding:
Enabled: false
-Documentation:
+Style/Documentation:
Enabled: false
Metrics/MethodLength:
Max: 15