NPathComplexity: reduce to 5 to match CyclomaticComplexity

This commit is contained in:
Paul Campbell 2016-09-05 17:41:12 +01:00
parent 109276cdea
commit 9e15232d1b
2 changed files with 2 additions and 4 deletions

View file

@ -1665,9 +1665,7 @@ i --;
#### [NPathComplexity](http://checkstyle.sourceforge.net/config_metrics.html#NPathComplexity)
Checks that the NPATH score (number of paths) through a method is no more than 200. This is similar to [Cyclomatic Complexity](#cyclomaticcomplexity).
> TODO: max = 5 - same as cyclomatic complexity
Checks that the NPATH score (number of paths) through a method is no more than 5. This is similar to [Cyclomatic Complexity](#cyclomaticcomplexity).
#### [OneStatementPerLine](http://checkstyle.sourceforge.net/config_coding.html#OneStatementPerLine)

View file

@ -155,7 +155,7 @@
</module>
<module name="NoWhitespaceBefore"/> <!-- prevent white space before tokens -->
<module name="NPathComplexity"> <!-- restrict method complexity -->
<property name="max" value="400"/>
<property name="max" value="5"/>
</module>
<module name="OneStatementPerLine"/> <!-- only one statement per line -->