You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/01/29 10:56:27 UTC

svn commit: r1439806 - /commons/proper/cli/trunk/src/conf/checkstyle.xml

Author: tn
Date: Tue Jan 29 09:56:27 2013
New Revision: 1439806

URL: http://svn.apache.org/viewvc?rev=1439806&view=rev
Log:
Change checkstyle config: set explicitely severity to warning, increate max parameter number to 8.

Modified:
    commons/proper/cli/trunk/src/conf/checkstyle.xml

Modified: commons/proper/cli/trunk/src/conf/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/conf/checkstyle.xml?rev=1439806&r1=1439805&r2=1439806&view=diff
==============================================================================
--- commons/proper/cli/trunk/src/conf/checkstyle.xml (original)
+++ commons/proper/cli/trunk/src/conf/checkstyle.xml Tue Jan 29 09:56:27 2013
@@ -24,6 +24,7 @@ limitations under the License.
 
 <module name="Checker">
     <property name="localeLanguage" value="en"/>
+    <property name="severity" value="warning"/>
 
     <!-- Checks that a package.html file exists for each package.     -->
     <!-- See http://checkstyle.sourceforge.net/config_javadoc.html#JavadocPackage -->
@@ -98,7 +99,9 @@ limitations under the License.
             <property name="max" value="120"/>
         </module>
         <module name="MethodLength"/>
-        <module name="ParameterNumber"/>
+        <module name="ParameterNumber">
+            <property name="max" value="8"/>
+        </module>
 
 
         <!-- Checks for whitespace                               -->