.rubocop.yml in appydave-tools-0.8.0 vs .rubocop.yml in appydave-tools-0.9.0
- old
+ new
@@ -41,15 +41,10 @@
- transaction
RSpec/ExampleLength:
Max: 25
-Metrics/MethodLength:
- Max: 25
- Exclude:
- - "**/spec/**/*"
- - "bin/*.rb"
Layout/LineLength:
Max: 200
# Ignores annotate output
# AllowedPatterns: ['\A# \*\*'] # this is renamed to AllowedPatterns and I need to come up with a template for this
@@ -78,10 +73,12 @@
AllowedNames:
- as
Style/EmptyMethod:
Exclude:
- "**/spec/**/*"
+Style/EmptyFile:
+ Enabled: false
Metrics/ParameterLists:
Exclude:
- "**/spec/**/*"
- "**/models/**/*"
Layout/EmptyLineBetweenDefs:
@@ -118,21 +115,29 @@
Enabled: false
RSpec/PendingWithoutReason:
Enabled: false
+RSpec/MultipleMemoizedHelpers:
+ Enabled: false
+
Metrics/AbcSize:
Max: 25
Exclude:
- "bin/*"
- - "lib/appydave/tools/subtitle_master/clean.rb"
+ - "**/spec/**/*"
+ - "lib/appydave/**/*.rb"
Metrics/CyclomaticComplexity:
Exclude:
- - "**/models/**/*"
- - "lib/appydave/tools/bank_reconciliation/clean/mapper.rb"
- - "lib/appydave/tools/subtitle_master/clean.rb"
+ - "**/spec/**/*"
+ - "lib/appydave/**/*.rb"
Metrics/PerceivedComplexity:
Exclude:
- - "**/models/**/*"
- - "lib/appydave/tools/subtitle_master/clean.rb"
-RSpec/MultipleMemoizedHelpers:
- Enabled: false
+ - "**/spec/**/*"
+ - "lib/appydave/**/*.rb"
+
+Metrics/MethodLength:
+ Max: 25
+ Exclude:
+ - "**/spec/**/*"
+ - "bin/*.rb"
+ - "lib/appydave/**/*.rb"