.rubocop.yml in henkei-1.28.3.1 vs .rubocop.yml in henkei-1.28.3.2
- old
+ new
@@ -1,8 +1,13 @@
+require:
+ - rubocop-performance
+ - rubocop-rake
+ - rubocop-rspec
+
AllCops:
NewCops: enable
- TargetRubyVersion: 2.6
+ TargetRubyVersion: 2.7
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/LineLength:
@@ -27,9 +32,15 @@
Exclude:
- 'spec/**/*'
Metrics/MethodLength:
Max: 15
+
+RSpec/ExampleLength:
+ Max: 12
+
+RSpec/MultipleExpectations:
+ Max: 4
Style/ClassVars:
Enabled: false
Style/DoubleNegation: