-
Notifications
You must be signed in to change notification settings - Fork 1
/
spotbugs-filter.xml
46 lines (38 loc) · 1.3 KB
/
spotbugs-filter.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter xmlns="https://github.com/spotbugs/filter/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd">
<Match>
<Bug pattern="CRLF_INJECTION_LOGS"/>
</Match>
<Match>
<Bug pattern="LO_SUSPECT_LOG_PARAMETER"/>
</Match>
<Match>
<Class name="~com\.io7m\.taskrecorder\.core\.TRStep"/>
<Bug pattern="LO_INCORRECT_NUMBER_OF_ANCHOR_PARAMETERS"/>
</Match>
<Match>
<Class name="~com\.io7m\.taskrecorder\.core\.TRTask"/>
<Or>
<Bug pattern="EI_EXPOSE_REP"/>
<Bug pattern="EI_EXPOSE_REP2"/>
<Bug pattern="WEM_WEAK_EXCEPTION_MESSAGING"/>
</Or>
</Match>
<Match>
<Class name="~com\.io7m\.taskrecorder\.core\.TRTaskRecorder"/>
<Or>
<Bug pattern="DRE_DECLARED_RUNTIME_EXCEPTION"/>
<Bug pattern="EI_EXPOSE_REP"/>
<Bug pattern="WEM_WEAK_EXCEPTION_MESSAGING"/>
<Bug pattern="ITC_INHERITANCE_TYPE_CHECKING"/>
</Or>
</Match>
<Match>
<Class name="~com\.io7m\.taskrecorder\.core\.TRTaskRecorderType"/>
<Or>
<Bug pattern="DRE_DECLARED_RUNTIME_EXCEPTION"/>
</Or>
</Match>
</FindBugsFilter>