Skip to content

Commit

Permalink
Disable some more rubocop rules
Browse files Browse the repository at this point in the history
Rubocop will probably be ripped out completely in the future, but
for right now, just disable the rules that are complaining.
  • Loading branch information
jeremyevans committed May 2, 2022
1 parent 463ad89 commit 1dd06c1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ Metrics/BlockLength:
- spec/**/*
- rack-test.gemspec

# Rationale: Enforcing maximum module length makes code worse, without exception
# Rationale: Enforcing maximum length/complexity makes code worse, without exception
Metrics/ModuleLength:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false

# Rationale: allow Weirich-style blocks, but do not enforce them.
Style/BlockDelimiters:
Expand Down

0 comments on commit 1dd06c1

Please sign in to comment.