-
Notifications
You must be signed in to change notification settings - Fork 28
/
spotBugsExcludeFilter.xml
70 lines (70 loc) · 2.67 KB
/
spotBugsExcludeFilter.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
60
61
62
63
64
65
66
67
68
69
70
<?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>
<Class name="com.microsoft.kiota.UriTemplate$UriTemplateParser" />
<Bug pattern="SF_SWITCH_FALLTHROUGH" />
</Match>
<Match>
<Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD" />
<Or>
<Class name="com.microsoft.kiota.BaseRequestBuilder" />
<Class name="com.microsoft.kiota.BaseRequestConfiguration" />
<Class name="com.microsoft.kiota.RequestInformation" />
</Or>
</Match>
<Match>
<Bug pattern="CT_CONSTRUCTOR_THROW" />
<Or>
<Class name="com.microsoft.kiota.authentication.ApiKeyAuthenticationProvider" />
<Class name="com.microsoft.kiota.authentication.AllowedHostsValidator" />
</Or>
</Match>
<Match>
<Bug code="PI" />
<Class name="com.microsoft.kiota.Headers" />
</Match>
<Match>
<Bug code="PA"/>
<Class name="com.microsoft.kiota.RequestInformation"/>
</Match>
<Match>
<Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
<Class name="com.microsoft.kiota.MultiPartBodyTest" />
</Match>
<Match>
<Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
<Class name="com.microsoft.kiota.authentication.ApiKeyAuthenticationProviderTest" />
</Match>
<Match>
<Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
<Class name="com.microsoft.kiota.serialization.DeserializationHelpersTest" />
</Match>
<Match>
<Bug pattern="RV_EXCEPTION_NOT_THROWN"/>
<Class name="com.microsoft.kiota.serialization.SerializationHelpersTest" />
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP" />
<Or>
<Class name="com.microsoft.kiota.serialization.mocks.TestEntity" />
<Class name="com.microsoft.kiota.serialization.mocks.TestBackedModelEntity" />
<Class name="com.microsoft.kiota.TestEntity" />
<Class name="com.microsoft.kiota.BaseCollectionPaginationCountResponse" />
</Or>
</Match>
<Match>
<Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE" />
<Class name="com.microsoft.kiota.store.InMemoryBackingStore" />
</Match>
<Match>
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC" />
<Class name="com.microsoft.kiota.MultipartBody$Part" />
</Match>
<Match>
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR" />
<Class name="com.microsoft.kiota.store.BackingStoreFactorySingleton" />
</Match>
</FindBugsFilter>