source: josm/trunk/tools/spotbugs/josm-filter.xml@ 14024

Last change on this file since 14024 was 13865, checked in by Don-vip, 6 years ago

see #15816 - ignore XZ classes in spotbugs analysis

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1<FindBugsFilter>
2
3 <Match>
4 <Bug pattern="DM_EXIT" />
5 </Match>
6 <Match>
7 <Bug pattern="DMI_HARDCODED_ABSOLUTE_FILENAME" />
8 </Match>
9 <Match>
10 <Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS" />
11 </Match>
12 <Match>
13 <Bug pattern="IL_INFINITE_LOOP" />
14 </Match>
15 <Match>
16 <Bug pattern="NM_CONFUSING" />
17 </Match>
18 <Match>
19 <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
20 </Match>
21 <Match>
22 <Bug pattern="SE_BAD_FIELD" />
23 </Match>
24 <Match>
25 <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
26 </Match>
27 <Match>
28 <Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
29 </Match>
30 <Match>
31 <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE" />
32 </Match>
33 <Match>
34 <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" />
35 </Match>
36
37 <Match>
38 <Bug pattern="EI_EXPOSE_REP2" />
39 <Class name="org.openstreetmap.josm.tools.CopyList" />
40 </Match>
41 <Match>
42 <Bug pattern="MS_CANNOT_BE_FINAL" />
43 <Class name="org.openstreetmap.josm.Main" />
44 </Match>
45 <Match>
46 <Bug pattern="MS_SHOULD_BE_FINAL" />
47 <Class name="org.openstreetmap.josm.Main" />
48 </Match>
49 <Match>
50 <Bug pattern=" SF_SWITCH_FALLTHROUGH" />
51 <Class name="org.openstreetmap.josm.data.projection.proj.AzimuthalEquidistant" />
52 </Match>
53
54 <Match>
55 <Class name="~com.*" />
56 </Match>
57 <Match>
58 <Class name="~gnu.getopt.*" />
59 </Match>
60 <Match>
61 <Class name="~javax.json.*" />
62 </Match>
63 <Match>
64 <Class name="~oauth.signpost.*" />
65 </Match>
66 <Match>
67 <Class name="~org.apache.*" />
68 </Match>
69 <Match>
70 <Class name="~org.glassfish.json.*" />
71 </Match>
72 <Match>
73 <Class name="~org.jdesktop.swinghelper.debug.*" />
74 </Match>
75 <Match>
76 <Class name="~org.openstreetmap.gui.jmapviewer.*" />
77 </Match>
78 <Match>
79 <Class name="~org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*" />
80 </Match>
81 <Match>
82 <Class name="~org.openstreetmap.josm.data.imagery.types.*" />
83 </Match>
84 <Match>
85 <Class name="~org.tukaani.*" />
86 </Match>
87 <Match>
88 <Class name="~org.w3._2001.xmlschema.*" />
89 </Match>
90
91</FindBugsFilter>
Note: See TracBrowser for help on using the repository browser.