-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathspotBugsExcludeFilter.xml
More file actions
35 lines (35 loc) · 1.4 KB
/
spotBugsExcludeFilter.xml
File metadata and controls
35 lines (35 loc) · 1.4 KB
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
<?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="EI_EXPOSE_REP" />
<Or>
<Class name="com.microsoft.kiota.serialization.mocks.IntersectionTypeMock" />
<Class name="com.microsoft.kiota.serialization.mocks.UnionTypeMock" />
<Class name="com.microsoft.kiota.serialization.mocks.SecondTestEntity" />
<Class name="com.microsoft.kiota.serialization.mocks.TestEntity" />
<Class name="com.microsoft.kiota.serialization.mocks.UntypedTestEntity" />
</Or>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2" />
<Or>
<Class name="com.microsoft.kiota.serialization.mocks.IntersectionTypeMock" />
<Class name="com.microsoft.kiota.serialization.mocks.UnionTypeMock" />
<Class name="com.microsoft.kiota.serialization.TestParsable" />
</Or>
</Match>
<Match>
<Bug pattern="SE_BAD_FIELD" />
<Or>
<Class name="com.microsoft.kiota.serialization.IntersectionWrapperParseTests$4$1" />
<Class name="com.microsoft.kiota.serialization.UnionWrapperParseTests$4$1" />
</Or>
</Match>
<Match>
<Bug pattern="NP_BOOLEAN_RETURN_NULL" />
<Class name="com.microsoft.kiota.serialization.JsonParseNode" />
</Match>
</FindBugsFilter>