rubocop: increase complexity limits [ci skip]
This commit is contained in:
parent
17af65e22c
commit
1e827161fe
1 changed files with 12 additions and 6 deletions
|
|
@ -27,10 +27,16 @@ Metrics/ClassLength:
|
||||||
Metrics/ModuleLength:
|
Metrics/ModuleLength:
|
||||||
Max: 1500
|
Max: 1500
|
||||||
|
|
||||||
# Raise AbcSize from 15 to 20
|
# Raise complexity metrics
|
||||||
Metrics/AbcSize:
|
Metrics/AbcSize:
|
||||||
Max: 20
|
Max: 20
|
||||||
|
|
||||||
|
Metrics/CyclomaticComplexity:
|
||||||
|
Max: 20
|
||||||
|
|
||||||
|
Metrics/PerceivedComplexity:
|
||||||
|
Max: 20
|
||||||
|
|
||||||
# Some blocks are longer.
|
# Some blocks are longer.
|
||||||
Metrics/BlockLength:
|
Metrics/BlockLength:
|
||||||
ExcludedMethods:
|
ExcludedMethods:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue