[FOray-commit] SF.net SVN: foray: [7908] trunk/foray/scripts/checkstyle-config.xml
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-09-05 02:18:51
|
Revision: 7908
http://svn.sourceforge.net/foray/?rev=7908&view=rev
Author: victormote
Date: 2006-09-04 19:18:48 -0700 (Mon, 04 Sep 2006)
Log Message:
-----------
Get checkstyle wish-list items added, with severity = "ignore" for now.
Modified Paths:
--------------
trunk/foray/scripts/checkstyle-config.xml
Modified: trunk/foray/scripts/checkstyle-config.xml
===================================================================
--- trunk/foray/scripts/checkstyle-config.xml 2006-09-05 02:09:16 UTC (rev 7907)
+++ trunk/foray/scripts/checkstyle-config.xml 2006-09-05 02:18:48 UTC (rev 7908)
@@ -49,6 +49,26 @@
<!-- Make sure each Type has javadoc, regardless of visibility -->
<module name="JavadocType"/>
+ <!-- Make sure each method has javadoc -->
+ <module name="JavadocMethod">
+ <property name="scope" value="private"/>
+ <property name="severity" value="ignore"/>
+ </module>
+
+ <!-- Make sure each variable has javadoc -->
+ <module name="JavadocVariable">
+ <property name="scope" value="private"/>
+ <property name="severity" value="ignore"/>
+ </module>
+
+ <!-- Check the javadoc style. If there is a javadoc comment, it must be
+ well-formed, even if it is private. -->
+ <module name="JavadocStyle">
+ <property name="scope" value="private"/>
+ <property name="checkEmptyJavadoc" value="true"/>
+ <property name="severity" value="ignore"/>
+ </module>
+
<!-- Avoid magic numbers. -->
<module name="MagicNumber">
<property name="severity" value="ignore"/>
@@ -65,7 +85,6 @@
<module name="VisibilityModifier">
<property name="packageAllowed" value="true"/>
<property name="protectedAllowed" value="true"/>
- <property name="severity" value="error"/>
</module>
<!-- Check the order and redundancy of modifiers. -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|