You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2021/11/12 14:55:37 UTC

[ignite-3] branch main updated: IGNITE-15900 Disable javadoc style checks for test methods. (#442)

This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new bb7e13c  IGNITE-15900 Disable javadoc style checks for test methods. (#442)
bb7e13c is described below

commit bb7e13c731a6d484609e4d95ee077609f1ea6325
Author: Andrew V. Mashenkov <AM...@users.noreply.github.com>
AuthorDate: Fri Nov 12 17:54:13 2021 +0300

    IGNITE-15900 Disable javadoc style checks for test methods. (#442)
---
 check-rules/checkstyle-rules.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/check-rules/checkstyle-rules.xml b/check-rules/checkstyle-rules.xml
index 19cbd3b..bdbb5d0 100644
--- a/check-rules/checkstyle-rules.xml
+++ b/check-rules/checkstyle-rules.xml
@@ -345,13 +345,13 @@
       <property name="accessModifiers" value="public"/>
       <property name="allowMissingParamTags" value="true"/>
       <property name="allowMissingReturnTag" value="true"/>
-      <property name="allowedAnnotations" value="Override, Test, ParameterizedTest, TestFactory"/>
+      <property name="allowedAnnotations" value="Override, Test, ParameterizedTest, TestFactory, BeforeEach, BeforeAll, AfterEach, AfterAll, TestFactory"/>
       <property name="tokens" value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"/>
     </module>
     <module name="MissingJavadocMethod">
       <property name="scope" value="public"/>
       <property name="minLineCount" value="2"/>
-      <property name="allowedAnnotations" value="Override, Test, ParameterizedTest, TestFactory"/>
+      <property name="allowedAnnotations" value="Override, Test, ParameterizedTest, TestFactory, BeforeEach, BeforeAll, AfterEach, AfterAll, TestFactory"/>
       <property name="tokens" value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF,
                                    COMPACT_CTOR_DEF"/>
     </module>