We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb7add commit 8d3ab33Copy full SHA for 8d3ab33
build/SpotBugs.exclude.xml
@@ -9,6 +9,12 @@ SPDX-License-Identifier: Apache-2.0
9
-->
10
11
<FindBugsFilter>
12
+ <!-- Exceptions from constructors are not really a problem,
13
+ e.g., we inject configuration options and want to fail fast. -->
14
+ <Match><Bug pattern="CT_CONSTRUCTOR_THROW"/></Match>
15
+ <!-- These checks are too pessimistic: https://github.com/spotbugs/spotbugs/issues/1601 -->
16
+ <Match><Bug pattern="EI_EXPOSE_REP"/></Match>
17
+ <Match><Bug pattern="EI_EXPOSE_REP2"/></Match>
18
<!-- SpotBugs does not support @org.checkerframework.checker.nullness.qual.Nullable
19
(cf. https://github.com/spotbugs/spotbugs/issues/643) -->
20
<Match><Bug code="NP,RCN"/></Match>
0 commit comments