-
Notifications
You must be signed in to change notification settings - Fork 39
/
findbugs-exclude.xml
38 lines (37 loc) · 1.02 KB
/
findbugs-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
<FindBugsFilter>
<Match>
<Bug pattern="EXS_EXCEPTION_SOFTENING_NO_CONSTRAINTS" />
</Match>
<Match>
<Bug pattern="EXS_EXCEPTION_SOFTENING_NO_CHECKED" />
</Match>
<Match>
<Bug pattern="IMC_IMMATURE_CLASS_NO_TOSTRING" />
</Match>
<Match>
<Bug pattern="IMC_IMMATURE_CLASS_NO_EQUALS" />
</Match>
<Match>
<Bug pattern="AI_ANNOTATION_ISSUES_NEEDS_NULLABLE"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Bug pattern="THROWS_METHOD_THROWS_RUNTIMEEXCEPTION"/>
</Match>
<Match>
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
</Match>
<Match>
<!--
https://github.com/spotbugs/spotbugs/issues/2040 - the new detector has too much false positives,
and will be disabled in 4.8.0 by default, but might get fixed to handle lambdas that implement Callable
and methods that just pass through the underlying api
-->
<Bug pattern="THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"/>
</Match>
</FindBugsFilter>