You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ca...@apache.org on 2006/06/28 13:05:11 UTC

svn commit: r417725 - /maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml

Author: carlos
Date: Wed Jun 28 04:05:11 2006
New Revision: 417725

URL: http://svn.apache.org/viewvc?rev=417725&view=rev
Log:
Ignore TODO in line length, allow inline conditionals

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml?rev=417725&r1=417724&r2=417725&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml Wed Jun 28 04:05:11 2006
@@ -55,7 +55,7 @@
 
         <module name="LineLength">
           <property name="max" value="120" />
-          <property name="ignorePattern" value="@version|@see|@todo"/>
+          <property name="ignorePattern" value="@version|@see|@todo|TODO"/>
         </module>
 
         <module name="MemberName" />
@@ -136,7 +136,7 @@
 
         <!-- Checks for common coding problems               -->
         <!-- See http://checkstyle.sf.net/config_coding.html -->
-        <module name="AvoidInlineConditionals"/>
+        <!-- module name="AvoidInlineConditionals"/ -->
         <module name="DoubleCheckedLocking"/>
         <module name="EmptyStatement"/>
         <module name="EqualsHashCode"/>