-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotbugs-exclude.xml
59 lines (49 loc) · 1.78 KB
/
spotbugs-exclude.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
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8" ?>
<FindBugsFilter>
<!-- Disabled check for serializable fields in exception classes
Rationale: no need to serialize/deserialize exceptions.-->
<Match>
<Package name="~com\.alicana.*\.client\.exception.*"/>
<Bug pattern="SE_BAD_FIELD"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.client\.model.*"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.client\.adapter\.state.*"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.client.*AuthenticationInterceptor"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.client.*BuxApiConfig"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
<!-- nullable interface parameter when creating converter factory -->
<Match>
<Class name="~com\.alicana.*\.client.*BuxApiServiceGenerator"/>
<Bug pattern="NP_NONNULL_PARAM_VIOLATION"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.app.*TradingBotInputParams"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.app.*BasicTradingBot"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
<!-- spotbugs is not ready for Java records.-->
<Match>
<Class name="~com\.alicana.*\.app.*TradeCompletedEvent"/>
<Bug pattern="EQ_UNUSUAL"/>
</Match>
</FindBugsFilter>