diff --git a/rails/rubocop.yml b/rails/rubocop.yml index b6386a4b9c6e5b85825953ce45b8022593f5fc0a..5464a2a10448795e856b0f87785cb720f975917d 100644 --- a/rails/rubocop.yml +++ b/rails/rubocop.yml @@ -51,7 +51,7 @@ Metrics/BlockLength: # default is too restrictive, having some restriction incentivizes to split up overly large classes Metrics/ClassLength: CountAsOne: *array_hash_heredoc_method_call # default: [] - Max: 200 # default: 100 + Max: 300 # default: 100 Exclude: *test_config_db # default is too restrictive, allow higher complexity @@ -67,7 +67,7 @@ Metrics/MethodLength: # default is too restrictive, allow longer modules Metrics/ModuleLength: CountAsOne: *array_hash_heredoc_method_call # default: [] - Max: 200 # default: 100 + Max: 300 # default: 100 Exclude: *test_config_db # long parameter lists add too much complexity, keyword args are named and thus more obvious what is expected, ignore them