-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathspotbugs-exclude.xml
More file actions
53 lines (53 loc) · 1.81 KB
/
Copy pathspotbugs-exclude.xml
File metadata and controls
53 lines (53 loc) · 1.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<FindBugsFilter>
<!-- Checked exceptions suck. Deal with it. -->
<Match>
<Bug pattern="EXS_EXCEPTION_SOFTENING_NO_CONSTRAINTS"/>
</Match>
<!-- It would be great to fix these one day... but let's be real... -->
<Match>
<Bug pattern="CC_CYCLOMATIC_COMPLEXITY"/>
</Match>
<!-- This triggers off Discord's formatting like '>' in a message, so it's a little annoying. -->
<Match>
<Bug pattern="CBX_CUSTOM_BUILT_XML"/>
</Match>
<!-- Something we have to do because we're mixing static class with Spring beans -->
<Match>
<Class name="ti4.spring.context.SpringContext"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
</Match>
<!-- False positive -->
<Match>
<Class name="ti4.spring.imageio.ImageIoConfiguration"/>
<Bug pattern="PRMC_POSSIBLY_REDUNDANT_METHOD_CALLS"/>
</Match>
<!-- False positive (3) -->
<Match>
<Class name="ti4.image.MapGenerator"/>
<Bug pattern="PRMC_POSSIBLY_REDUNDANT_METHOD_CALLS"/>
</Match>
<!-- False positive (2) -->
<Match>
<Class name="ti4.helpers.ComponentActionHelper"/>
<Bug pattern="PRMC_POSSIBLY_REDUNDANT_METHOD_CALLS"/>
</Match>
<!-- Not sure that we care about this -->
<Match>
<Bug pattern="PSC_PRESIZE_COLLECTIONS"/>
</Match>
<!-- This is useful, but it takes a lot to fix -->
<Match>
<Bug pattern="OCP_OVERLY_CONCRETE_COLLECTION_PARAMETER"/>
</Match>
<!-- This is useful, but it takes a lot to fix -->
<Match>
<Bug pattern="OCP_OVERLY_CONCRETE_PARAMETER"/>
</Match>
<!-- I'd like this to be fixed, but we'll come back to it -->
<Match>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
</FindBugsFilter>