forked from apache/mina-sshd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sshd-findbugs.xml
34 lines (27 loc) · 1.08 KB
/
sshd-findbugs.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"?>
<FindBugsFilter>
<!-- See http://findbugs.sourceforge.net/manual/filter.html for available format options -->
<Match>
<!-- Exclude Groovy files -->
<Source name="~.*\.groovy" />
</Match>
<!-- See http://findbugs.sourceforge.net/bugDescriptions.html for available built-in bug codes and patterns -->
<Match>
<Bug code="BIT,CN,Co,DMI,ES,FS,HE,ISC,ME,RR" />
</Match>
<Match>
<Bug pattern="BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS,BC_IMPOSSIBLE_CAST,BC_IMPOSSIBLE_DOWNCAST" />
</Match>
<Match>
<Bug pattern="BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY,BC_IMPOSSIBLE_INSTANCEOF" />
</Match>
<Match>
<Bug pattern="DM_NEW_FOR_GETCLASS" />
</Match>
<Match>
<Bug pattern="EQ_ABSTRACT_SELF,EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS,EQ_SELF_NO_OBJECT,EQ_ALWAYS_FALSE,EQ_ALWAYS_TRUE,EQ_COMPARING_CLASS_NAMES" />
</Match>
<Match>
<Bug pattern="EQ_OTHER_NO_OBJECT,EQ_OTHER_USE_OBJECT,EQ_SELF_USE_OBJECT,EQ_DOESNT_OVERRIDE_EQUALS" />
</Match>
</FindBugsFilter>