Skip to content

Commit

Permalink
relax checkstyle rules for javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
SavvasMisaghMoayyed committed Sep 5, 2015
1 parent 698a554 commit 29ed3a4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions checkstyle-rules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ Checkstyle configuration based on Sun's conventions, compliant with CAS coding c
<module name="TreeWalker">
<property name="tabWidth" value="4"/>
<module name="JavadocMethod">
<property name="scope" value="protected"/>
<property name="severity" value="error"/>
<property name="allowUndeclaredRTE" value="true"/>
<property name="allowMissingPropertyJavadoc" value="true"/>
<property name="allowThrowsTagsForSubclasses" value="true"/>
</module>
<module name="JavadocType">
<property name="severity" value="error"/>
Expand All @@ -50,6 +52,7 @@ Checkstyle configuration based on Sun's conventions, compliant with CAS coding c
<module name="JavadocVariable">
<property name="severity" value="error"/>
<property name="scope" value="protected" />
<property name="ignoreNamePattern" value="log|logger|LOG|LOGGER"/>
</module>
<module name="JavadocStyle">
<property name="severity" value="error"/>
Expand Down

0 comments on commit 29ed3a4

Please sign in to comment.