- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for MissingJavadocTypeCheck (0.33 seconds)
-
build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/MissingJavadocTypeCheck.java
import java.util.regex.Pattern; /** * This is a copy of Checkstyle's {@link com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck}, * modified to accept a regex to exclude classes by name. See the original class for full documentation. */ @StatelessCheck public class MissingJavadocTypeCheck extends AbstractCheck { /** * A key is pointing to the warning message text in "messages.properties" * file.
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 10 23:06:44 GMT 2021 - 5.5K bytes - Click Count (0) -
build-tools-internal/src/main/resources/checkstyle_ide_fragment.xml
</module> <!-- Use our fork of this Checkstyle rule, so that we can ignore test classes --> <module name="org.elasticsearch.gradle.internal.checkstyle.MissingJavadocTypeCheck"> <property name="ignorePattern" value="^.*(Tests?|IT|TestCase)$"/> <property name="severity" value="warning"/> <message key="javadoc.missing" value="Types should explain their purpose" />Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jul 21 18:58:39 GMT 2021 - 1.9K bytes - Click Count (0)