Skip to content
Snippets Groups Projects
Commit 07c85309 authored by Darius Schneider's avatar Darius Schneider
Browse files

class and module length max 300 (from 200, default 100)

parent 847a3212
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment