-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathsuppressions.xml
25 lines (17 loc) · 909 Bytes
/
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
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"https://raw.githubusercontent.com/checkstyle/checkstyle/master/src/main/resources/com/puppycrawl/tools/checkstyle/suppressions_1_2.dtd">
<suppressions>
<!-- Suppress MagicNumber checks in all unit tests -->
<suppress checks="MagicNumber" files="[\\/]test[\\/].*[\\/]" />
<!-- Suppress all checks in generated sources -->
<suppress checks=".*" files="_AsciiDocLexer.java"/>
<!-- Suppress all checks in generated sources -->
<suppress checks="FileLength" files="AsciiDocLexerTest.java"/>
<suppress checks="FileLength" files="AsciiDocUtil.java"/>
<!-- Suppress all checks in geronimo -->
<suppress checks=".*" files="org[\\/]apache[\\/]geronimo"/>
<!-- Suppress all checks in jruby -->
<suppress checks=".*" files="org[\\/]jruby"/>
</suppressions>