Skip to content

Commit

Permalink
style(rubocop): disable complexity cops for now
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcooke committed Feb 10, 2024
1 parent 6d4dea7 commit 930cf39
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,12 @@ Layout/LineLength:
# We want to reduce this back down to 120 but there are a fair number of offences
# of this which need addressing individually and carefully.
Max: 200

Metrics/PerceivedComplexity:
# As above, we want to enable this again in the future, but for now we'll just
# disable it entirely.
Enabled: false

Metrics/CyclomaticComplexity:
# As above.
Enabled: false

0 comments on commit 930cf39

Please sign in to comment.