diff options
author | Glenn Adams <gadams@apache.org> | 2012-03-05 23:29:29 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2012-03-05 23:29:29 +0000 |
commit | 1dc8efba5f37f241be94fa1f977c453a38ea58e2 (patch) | |
tree | f258fbe99caee9ab58fff3636d4432d600fc3310 /checkstyle-5.5.xml | |
parent | 64cbcc37824ec37cf6bbfa9336fad2b41cda5ccd (diff) | |
download | xmlgraphics-fop-1dc8efba5f37f241be94fa1f977c453a38ea58e2.tar.gz xmlgraphics-fop-1dc8efba5f37f241be94fa1f977c453a38ea58e2.zip |
add RegexpSingleline rule to flag use of @author; fix violations
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1297284 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'checkstyle-5.5.xml')
-rw-r--r-- | checkstyle-5.5.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/checkstyle-5.5.xml b/checkstyle-5.5.xml index a4722c626..7b1ca4249 100644 --- a/checkstyle-5.5.xml +++ b/checkstyle-5.5.xml @@ -29,6 +29,13 @@ <!-- ===================================================================================================== --> <!-- ===================================================================================================== --> + <module name="RegexpSingleline"> + <property name="format" value="@author"/> + <property name="message" value="Use of @author javadoc keyword is prohibited."/> + </module> + <!-- ===================================================================================================== --> + + <!-- ===================================================================================================== --> <module name="SuppressionCommentFilter"> <property name="offCommentFormat" value="CSOFF\: ([\w\|]+)"/> <property name="onCommentFormat" value="CSON\: ([\w\|]+)"/> |