-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuppression.xml
More file actions
23 lines (17 loc) · 988 Bytes
/
suppression.xml
File metadata and controls
23 lines (17 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<!--https://github.com/checkstyle/checkstyle/blob/master/config/suppressions.xml-->
<!--https://raw.githubusercontent.com/checkstyle/checkstyle/master/config/suppressions.xml-->
<suppressions>
<!-- Suppress JavadocPackage in the test packages -->
<suppress checks="JavadocPackage" files="[\\/]test[\\/]"/>
<!-- Suppress all checks for autogenerated packages -->
<suppress checks="[a-zA-Z0-9]*" files=".*[\\/]generated[\\/]"/>
<!-- Suppress all checks for test classes. -->
<suppress checks="[a-zA-Z0-9]*" files=".*(?:Test|TestBase|Tutorial)\.java$"/>
<!-- Suppress all checks for JavadocMethod -->
<!-- <suppress checks="JavadocMethod" files=".*[\\/]populate[\\/].*[\\/][a-zA-Z0-9]*Populator"/> -->
<!--<suppress checks="[a-zA-Z0-9]*" files="[\\/]ClassName.java"/>-->
</suppressions>