-
Notifications
You must be signed in to change notification settings - Fork 115
/
missing_javadoc.xml
37 lines (36 loc) · 1.53 KB
/
missing_javadoc.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd">
<!--
This configuration file was written by the eclipse-cs plugin configuration editor
-->
<!--
Checkstyle-Configuration: mesh-javadoc
Description: none
-->
<module name="Checker">
<property name="severity" value="warning"/>
<module name="TreeWalker">
<module name="MissingJavadocType">
<property name="scope" value="public"/>
</module>
<module name="MissingJavadocMethod">
<property name="allowedAnnotations" value="Override,Getter,Setter,Binds,Test"/>
<property name="scope" value="public"/>
<property name="allowMissingPropertyJavadoc" value="true"/>
<property name="ignoreMethodNamesRegex" value="test.*"/>
<property name="tokens" value="METHOD_DEF,ANNOTATION_FIELD_DEF"/>
</module>
</module>
<module name="BeforeExecutionExclusionFileFilter">
<metadata name="net.sf.eclipsecs.core.comment" value="Exclude tests"/>
<property name="fileNamePattern" value=".*Test.java"/>
</module>
<module name="BeforeExecutionExclusionFileFilter">
<metadata name="net.sf.eclipsecs.core.comment" value="Exclude test sources"/>
<property name="fileNamePattern" value=".*/src/main/test/.*"/>
</module>
<module name="BeforeExecutionExclusionFileFilter">
<metadata name="net.sf.eclipsecs.core.comment" value="Ignore examples"/>
<property name="fileNamePattern" value="Examples.java"/>
</module>
</module>