blob: c48983e05f7f4dff9df63f97faae2297f398e2ec (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<!-- generated Android resources -->
<Match>
<Class name="~.*\.R\$.*"/>
</Match>
<!-- third party code -->
<Match>
<Not>
<Class name="~.*cgeo.*"/>
</Not>
</Match>
<Match>
<Class name="~.*kxml.*"/>
</Match>
<!-- irrelevant findings -->
<Match>
<Or>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
<Bug pattern="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE" />
</Or>
</Match>
<Match>
<Bug pattern="DM_STRING_CTOR" />
<Or>
<Class name="~.*MatcherWrapper"></Class>
<Class name="~.*TextUtils"></Class>
</Or>
</Match>
<Match>
<Bug pattern="DMI_HARDCODED_ABSOLUTE_FILENAME"/>
<Class name="~.*LocalStorage"/>
</Match>
</FindBugsFilter>
|