You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sk...@apache.org on 2005/05/25 06:36:40 UTC

svn commit: r178366 - /jakarta/commons/proper/digester/trunk/checkstyle.xml

Author: skitching
Date: Tue May 24 21:36:39 2005
New Revision: 178366

URL: http://svn.apache.org/viewcvs?rev=178366&view=rev
Log:
Removed check for operators at end vs start of line - not useful.
Added (but commented out) some potentially useful checks.

Modified:
    jakarta/commons/proper/digester/trunk/checkstyle.xml

Modified: jakarta/commons/proper/digester/trunk/checkstyle.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/trunk/checkstyle.xml?rev=178366&r1=178365&r2=178366&view=diff
==============================================================================
--- jakarta/commons/proper/digester/trunk/checkstyle.xml (original)
+++ jakarta/commons/proper/digester/trunk/checkstyle.xml Tue May 24 21:36:39 2005
@@ -4,19 +4,29 @@
     "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
     "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
 
-<!-- commons codec customization of default Checkstyle behavior -->
+<!-- commons digester customization of default Checkstyle behavior -->
 <module name="Checker">
   <property name="localeLanguage" value="en"/>
 
   <module name="TreeWalker">
     <!-- Verify that EVERY source file has the appropriate license -->
     <module name="Header">
-      <property name="headerFile" value="LICENSE.txt"/>
-      <property name="ignoreLines" value="2,3,4,10"/>
+      <property name="headerFile" value="COPYRIGHT.txt"/>
+      <property name="ignoreLines" value="1,3"/>
     </module>
 
-    <module name="OperatorWrap">
-      <property name="option" value="eol"/>
+	<!-- no tabs allowed in files 
+    <module name="TabCharacter"/>
+	-->
+    
+    <!-- check sane import statements
+    <module name="AvoidStarImport"/>
+    <module name="RedundantImport"/>
+    <module name="UnusedImports"/>
+    -->
+
+    <module name="LineLength">
+      <property name="max" value="120"/>
     </module>
   </module>
 </module>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org