You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by xa...@apache.org on 2007/06/05 12:38:48 UTC

svn commit: r544472 - /incubator/ivy/core/trunk/src/etc/checkstyle/checkstyle-config

Author: xavier
Date: Tue Jun  5 05:38:47 2007
New Revision: 544472

URL: http://svn.apache.org/viewvc?view=rev&rev=544472
Log:
adapt checkstyle rules: remove javadoc check for the moment, to keep focused on other problems

Modified:
    incubator/ivy/core/trunk/src/etc/checkstyle/checkstyle-config

Modified: incubator/ivy/core/trunk/src/etc/checkstyle/checkstyle-config
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/etc/checkstyle/checkstyle-config?view=diff&rev=544472&r1=544471&r2=544472
==============================================================================
--- incubator/ivy/core/trunk/src/etc/checkstyle/checkstyle-config (original)
+++ incubator/ivy/core/trunk/src/etc/checkstyle/checkstyle-config Tue Jun  5 05:38:47 2007
@@ -4,6 +4,7 @@
 <module name="Checker">
   <module name="TreeWalker">
     <!-- Javadoc requirements -->
+    <!-- TODO uncomment this when javadoc will be improved
     <module name="JavadocType">
       <property name="scope" value="protected"/>
     </module>
@@ -14,6 +15,7 @@
     <module name="JavadocVariable">
        <property name="scope" value="public"/>
     </module>
+	-->
 
     <!-- element naming -->
     <module name="PackageName"/>
@@ -98,11 +100,15 @@
 
     <!-- Miscellaneous other checks. -->
     <module name="ArrayTypeStyle"/>
+    <!--
     <module name="GenericIllegalRegexp">
       <property name="format" value="\s+$"/>
       <property name="message" value="Line has trailing spaces."/>
     </module>
+    -->
+    <!--
     <module name="TodoComment"/>
+    -->
     <module name="UpperEll"/>
     <!-- allow comment suppression of checks -->
     <module name="FileContentsHolder"/>