forked from achiikun/tauon-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotbugs-exclude.xml
executable file
·50 lines (50 loc) · 1.13 KB
/
spotbugs-exclude.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
<FindBugsFilter>
<Match>
<Class name="~.*R\$.*"/>
</Match>
<Match>
<Class name="~.*Manifest\$.*"/>
</Match>
<Match>
<Class name="~.*_234$"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Bug pattern="LI_LAZY_INIT_STATIC"/>
</Match>
<Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
</Match>
<Match>
<Bug pattern="SE_BAD_FIELD"/>
</Match>
<Match>
<Bug pattern="BC_UNCONFIRMED_CAST_OF_RETURN_VALUE"/>
</Match>
<Match>
<Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
</Match>
<Match>
<Bug pattern="REC_CATCH_EXCEPTION"/>
</Match>
<Match>
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR"/>
</Match>
<Match>
<Bug pattern="CRLF_INJECTION_LOGS"/>
</Match>
<Match>
<Bug pattern="SPRING_ENDPOINT"/>
</Match>
<Match>
<Bug pattern="ECB_MODE"/>
</Match>
<Match>
<Bug pattern="CIPHER_INTEGRITY"/>
</Match>
</FindBugsFilter>