.rubocop.yml in httpspell-1.4.0 vs .rubocop.yml in httpspell-1.4.1
- old
+ new
@@ -1,9 +1,13 @@
+require:
+ - rubocop-rake
+ - rubocop-rspec
AllCops:
NewCops: enable
TargetRubyVersion: 3.3
Include:
+ - '**/*.rb'
- '**/Gemfile'
- '**/Rakefile'
- '**/config.ru'
- '**/*.rake'
Exclude:
@@ -21,5 +25,21 @@
- spec/**/*
Layout/LineLength:
Max: 160
Style/Documentation:
Enabled: false
+Metrics/AbcSize:
+ Enabled: false
+Metrics/MethodLength:
+ Enabled: false
+Metrics/CyclomaticComplexity:
+ Enabled: false
+Style/TrailingCommaInArrayLiteral:
+ Enabled: false
+RSpec/ExampleWording:
+ Enabled: false
+RSpec/InstanceVariable:
+ AssignmentOnly: true
+RSpec/ExampleLength:
+ Max: 10
+Metrics/PerceivedComplexity:
+ Max: 16