You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2015/07/04 16:16:03 UTC

svn commit: r1689161 - /directory/buildtools/checkstyle-configuration/trunk/src/main/resources/kerby-checks.xml

Author: seelmann
Date: Sat Jul  4 14:16:03 2015
New Revision: 1689161

URL: http://svn.apache.org/r1689161
Log:
Add checkstyle checks for Kerby

Modified:
    directory/buildtools/checkstyle-configuration/trunk/src/main/resources/kerby-checks.xml

Modified: directory/buildtools/checkstyle-configuration/trunk/src/main/resources/kerby-checks.xml
URL: http://svn.apache.org/viewvc/directory/buildtools/checkstyle-configuration/trunk/src/main/resources/kerby-checks.xml?rev=1689161&r1=1689160&r2=1689161&view=diff
==============================================================================
--- directory/buildtools/checkstyle-configuration/trunk/src/main/resources/kerby-checks.xml (original)
+++ directory/buildtools/checkstyle-configuration/trunk/src/main/resources/kerby-checks.xml Sat Jul  4 14:16:03 2015
@@ -58,6 +58,7 @@
         <module name="MemberName"/>
         <module name="PackageName"/>
         <module name="StaticVariableName"/>
+        <module name="TypeName"/>
 
 
         <!-- Checks for imports                              -->
@@ -65,6 +66,15 @@
         <module name="RedundantImport"/>
         <module name="UnusedImports"/>
 
+        <!-- Checks for Size Violations.                    -->
+        <!-- See http://checkstyle.sf.net/config_sizes.html -->
+        <module name="MethodLength">
+           <property name="max" value="200"/>
+        </module>
+        <module name="ParameterNumber">
+           <property name="max" value="8"/>
+        </module>
+
 
         <!-- Checks for whitespace                               -->
         <!-- See http://checkstyle.sf.net/config_whitespace.html -->
@@ -74,6 +84,7 @@
 
         <!-- Modifier Checks                                    -->
         <!-- See http://checkstyle.sf.net/config_modifiers.html -->
+        <module name="ModifierOrder"/>
         <module name="RedundantModifier"/>