This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push: new 58807b2729 Checkstyle checks for Javadoc += NonEmptyAtclauseDescription 58807b2729 is described below commit 58807b2729c72d3f97ed42c8422d8a1870607f0e Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Jan 13 10:29:25 2023 +0000 Checkstyle checks for Javadoc += NonEmptyAtclauseDescription --- res/checkstyle/checkstyle.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/res/checkstyle/checkstyle.xml b/res/checkstyle/checkstyle.xml index 84279dc029..7cdfaab2dc 100644 --- a/res/checkstyle/checkstyle.xml +++ b/res/checkstyle/checkstyle.xml @@ -86,6 +86,21 @@ </module> <module name="JavadocMissingLeadingAsterisk"/> <module name="JavadocMissingWhitespaceAfterAsterisk"/> + <module name="JavadocStyle"> + <!-- ~1600 errors --> + <property name="checkFirstSentence" value="false"/> + <!-- ~1500 errors --> + <property name="checkEmptyJavadoc" value="false"/> + <!-- Does not handle HTML tags in {@code ...} correctly --> + <property name="checkHtml" value="false"/> + </module> + <!-- ~9000 errors + <module name="MissingJavadocMethod"/> + --> + <!-- ~1400 errors + <module name="MissingJavadocType"/> + --> + <module name="NonEmptyAtclauseDescription"/> <!-- Miscellaneous --> <!-- ~5500 errors --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org