Add additional tests known to pass - list provided by Marc Guillemot.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 25 Jul 2010 00:12:02 +0000 (00:12 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 25 Jul 2010 00:12:02 +0000 (00:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@978952 13f79535-47bb-0310-9956-ffa450edef68

checkstyle.xml

index f5ac96a..b3443b8 100644 (file)
     "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
     "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
 <module name="Checker">
+  <!-- When adding checks, keep to the order checks are listed under         -->
+  <!-- 'Standard Checks' in the Checkstyle documentation:                    -->
+  <!-- http://checkstyle.sourceforge.net/config_coding.html                  -->
+
+  <!-- Misc -->
+  <module name="Translation"/>
+  
+  <!-- Whitespace -->
   <module name="FileTabCharacter"/>
+
+  <module name="TreeWalker">
+    <!-- Coding -->
+    <module name="IllegalInstantiation"/>
+    
+    <!-- Imports -->
+    <module name="IllegalImport"/>
+    <!--
+    Do not use - does not take account of imports required for Javadocs
+    <module name="UnusedImports"/>
+    -->
+  </module>
 </module>
\ No newline at end of file