From 930cf39dba37401f90e293c938dee07daf3d9a31 Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Sat, 10 Feb 2024 16:57:55 +0000 Subject: [PATCH] style(rubocop): disable complexity cops for now --- .rubocop.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index b2c67965..4fc5dbc3 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -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