-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckstyle-suppressions.xml
34 lines (30 loc) · 1.45 KB
/
checkstyle-suppressions.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
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<!--
Turn off all checks for Generated and Test code.
-->
<!-- Suppressions for test code -->
<suppress checks="IllegalCatch" files="[/\\]test[/\\]"/>
<suppress checks="ImportControl" files="[/\\]test[/\\]"/>
<suppress checks="MethodLength" files="[/\\]test[/\\]"/>
<suppress checks="MethodName" files="[/\\]test[/\\]"/>
<suppress checks="TypeName" files="[/\\]test[/\\]"/>
<suppress checks="MagicNumber" files="[/\\]test[/\\]"/>
<suppress checks="JavadocMethod" files="[/\\]test[/\\]"/>
<suppress checks="JavadocStyle" files="[/\\]test[/\\]"/>
<suppress checks="JavadocType" files="[/\\]test[/\\]"/>
<suppress checks="JavadocVariable" files="[/\\]test[/\\]"/>
<suppress checks="IllegalThrows" files="[/\\]test[/\\]"/>
<suppress checks="IllegalInstantiation" files="[/\\]test[/\\]"/>
<suppress checks="ParameterNumberCheck" files="[/\\]test[/\\]"/>
<suppress checks="FileTabCharacter" files="[/\\]test[/\\]"/>
<suppress checks="FileTabCharacter" files="[/\\]main[/\\]"/>
<suppress id="warningCyclomaticComplexity" files="[/\\]test[/\\]"/>
<suppress id="warningFileLength" files="[/\\]test[/\\]"/>
<!-- don't check generated code, this to work on Unix (/) and Windows (\) -->
<suppress checks="." files="[/\\]generated-sources[/\\]"/>
<!-- End of test code suppressions -->
</suppressions>