|
From: <bir...@us...> - 2007-10-15 18:39:56
|
Revision: 115
http://mptstore.svn.sourceforge.net/mptstore/?rev=115&view=rev
Author: birkland
Date: 2007-10-15 11:39:55 -0700 (Mon, 15 Oct 2007)
Log Message:
-----------
made cyclomatic complexity a little more lax (for the time being...)
Modified Paths:
--------------
trunk/src/doc/coding-standards.xml
Modified: trunk/src/doc/coding-standards.xml
===================================================================
--- trunk/src/doc/coding-standards.xml 2007-10-15 18:38:38 UTC (rev 114)
+++ trunk/src/doc/coding-standards.xml 2007-10-15 18:39:55 UTC (rev 115)
@@ -186,16 +186,16 @@
<module name="ParameterNumber"/>
<!--
- Cyclomatic complexity should never exceed 20 (considered
+ Cyclomatic complexity should never exceed 25 (considered
"high risk") for a given method.
Strive for 10 or below, which is considered "low risk".
-->
<module name="CyclomaticComplexity">
- <property name="max" value="20"/>
+ <property name="max" value="25"/>
</module>
<module name="CyclomaticComplexity">
<property name="severity" value="warning"/>
- <property name="max" value="10"/>
+ <property name="max" value="15"/>
</module>
<!--//////////////////////////////////////////////////////////////
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|