.rubocop.yml in azeroth-0.0.4 vs .rubocop.yml in azeroth-0.0.5
- old
+ new
@@ -1,15 +1,31 @@
+require: rubocop-rspec
inherit_from: .rubocop_todo.yml
+
+AllCops:
+ TargetRubyVersion: 2.5
+
+Metrics/BlockLength:
+ Exclude:
+ - 'spec/**/*_spec.rb'
+ - 'spec/support/shared_*/**/*.rb'
+ - 'azeroth.gemspec'
+
+RSpec/NestedGroups:
+ Max: 4
+
+RSpec/AlignLeftLetBrace:
+ Enabled: true