-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkstyle-filter.xml
63 lines (50 loc) · 2.04 KB
/
checkstyle-filter.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD SuppressionFilter Configuration 1.0//EN"
"https://checkstyle.org/dtds/suppressions_1_0.dtd">
<suppressions>
<suppress files="CATransferOperation.java"
checks="ParameterNumber"/>
<suppress files="CA1CommandServlet.java"
checks="CyclomaticComplexity"/>
<suppress files="CA1CommandServlet.java"
checks="NPathComplexity"/>
<suppress files="CA1EventServlet.java"
checks="AnonInnerLength"/>
<suppress files="CAICommandExecutor.java"
checks="CyclomaticComplexity"/>
<suppress files="CAICommandExecutor.java"
checks="ExecutableStatementCount"/>
<suppress files="CAICommandExecutor.java"
checks="NPathComplexity"/>
<suppress files="CAICmdAbstract.java"
checks="ThrowsCount"/>
<suppress files="CAICommandExecutor.java"
checks="ClassDataAbstractionCoupling"/>
<suppress files="CAUVMessage.java"
checks="CyclomaticComplexity"/>
<suppress files="CAUVMessage.java"
checks="NPathComplexity"/>
<suppress files="CAUVMessage.java"
checks="ExecutableStatementCount"/>
<suppress files="CAUVMessage.java"
checks="JavaNCSS"/>
<suppress files="CAUVMessage.java"
checks="ClassFanOutComplexity"/>
<suppress files="CAShells.java"
checks="ClassDataAbstractionCoupling"/>
<suppress files="CADatabaseQueriesItems.java"
checks="FileLength"/>
<suppress files="CAMetadataElementMatchType.java"
checks="InterfaceIsType"/>
<suppress files="CATypeChecking.java"
checks="CyclomaticComplexity"/>
<suppress files="CATypeChecking.java"
checks="NPathComplexity"/>
<suppress files="CAMetadataMatchExpressions.java"
checks="NPathComplexity"/>
<suppress files="CA1HandlerLogin.java"
checks="ParameterNumber"/>
<suppress files="CAShellCmdTypePackageSchema.java"
checks="IllegalInstantiation"/>
</suppressions>