Skip to content

Commit

Permalink
[chores] Checkstyle: enable javadoc checks NonEmptyAtclauseDescriptio…
Browse files Browse the repository at this point in the history
…n and AtclauseOrder (#2966)
  • Loading branch information
violetagg committed Nov 7, 2023
1 parent b35956d commit fd4a2b3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions codequality/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,17 @@
<module name="RedundantImport"/>
<module name="UnusedImports"/>

<!-- Javadoc Comments -->
<module name="NonEmptyAtclauseDescription" />
<module name="AtclauseOrder">
<property name="target" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF"/>
<property name="tagOrder" value="@param, @author, @since, @see, @version, @serial, @deprecated"/>
</module>
<module name="AtclauseOrder">
<property name="target" value="METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
<property name="tagOrder" value="@param, @return, @throws, @since, @deprecated, @see"/>
</module>

<!-- Miscellaneous -->
<module name="ArrayTypeStyle"/>
<module name="CommentsIndentation"/>
Expand Down

0 comments on commit fd4a2b3

Please sign in to comment.