From: Anton Khorev Date: Thu, 21 Dec 2023 14:29:51 +0000 (+0300) Subject: Increase RuboCop complexity limits X-Git-Tag: live~423^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/25d382bfa054ea41d71ba571f534b83aa565ad34?hp=-c Increase RuboCop complexity limits --- 25d382bfa054ea41d71ba571f534b83aa565ad34 diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index e6772b8a4..deaea8e2d 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -66,7 +66,7 @@ Metrics/ClassLength: # Offense count: 59 # Configuration parameters: AllowedMethods, AllowedPatterns. Metrics/CyclomaticComplexity: - Max: 26 + Max: 29 # Offense count: 753 # Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns. @@ -81,7 +81,7 @@ Metrics/ParameterLists: # Offense count: 56 # Configuration parameters: AllowedMethods, AllowedPatterns. Metrics/PerceivedComplexity: - Max: 29 + Max: 30 # Offense count: 2394 # This cop supports safe autocorrection (--autocorrect).