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 00:04:26 UTC

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

Author: seelmann
Date: Fri Jul  3 22:04:24 2015
New Revision: 1689099

URL: http://svn.apache.org/r1689099
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=1689099&r1=1689098&r2=1689099&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 Fri Jul  3 22:04:24 2015
@@ -46,8 +46,6 @@
 
     <module name="TreeWalker">
 
-        <property name="cacheFile" value="${checkstyle.cache.file}"/>
-
         <!-- required for SuppressWarningsFilter (and other Suppress* rules not used here) -->
         <!-- see http://checkstyle.sourceforge.net/config_annotation.html#SuppressWarningsHolder -->
         <module name="SuppressWarningsHolder"/>
@@ -87,8 +85,15 @@
         <module name="IllegalInstantiation"/>
 
 
+        <!-- Checks for class design                         -->
+        <!-- See http://checkstyle.sf.net/config_design.html -->
+        <module name="FinalClass"/>
+        <module name="InterfaceIsType"/>
+
+
         <!-- Miscellaneous other checks.                   -->
         <!-- See http://checkstyle.sf.net/config_misc.html -->
+        <module name="ArrayTypeStyle"/>
         <module name="UpperEll"/>