-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathfindbugs-exclude.xml
More file actions
41 lines (40 loc) · 1.13 KB
/
findbugs-exclude.xml
File metadata and controls
41 lines (40 loc) · 1.13 KB
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
<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="OPM_OVERLY_PERMISSIVE_METHOD" /> <!-- This is buggy in spotbugs 5.9 -->
</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>