forked from smartcat-labs/berserker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkstyle-suppressions.xml
24 lines (19 loc) · 1.05 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
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"suppressions_1_1.dtd">
<suppressions>
<!-- Exclude JavaDoc for tests -->
<suppress files="[\\/]src[\\/]test[\\/].*" checks="JavadocMethod"/>
<suppress files="[\\/]src[\\/]test[\\/].*" checks="JavadocVariable"/>
<suppress files="[\\/]src[\\/]test[\\/].*" checks="JavadocType"/>
<!-- Exclude JavaDoc for integration tests -->
<suppress files="[\\/]src[\\/]integration-test[\\/].*" checks="JavadocMethod"/>
<suppress files="[\\/]src[\\/]integration-test[\\/].*" checks="JavadocVariable"/>
<suppress files="[\\/]src[\\/]integration-test[\\/].*" checks="JavadocType"/>
<!-- Allow underscores in method names for tests -->
<suppress files="[\\/]src[\\/]test[\\/].*" id="MethodNameRegular"/>
<suppress files="[\\/]src[\\/]integration-test[\\/].*" id="MethodNameRegular"/>
<!-- Prevent underscores in method names for production code -->
<suppress files="[\\/]src[\\/]main[\\/].*" id="MethodNameTest"/>
</suppressions>