forked from opendcs/opendcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspotbugs-filter.xml
More file actions
20 lines (19 loc) · 828 Bytes
/
Copy pathspotbugs-filter.xml
File metadata and controls
20 lines (19 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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>
<Or>
<!-- ignore the python code -->
<Class name="~.*certifi.*"/>
<Class name="~.*chardet.*"/>
<Class name="~.*idna.*"/>
<Class name="~.*pkg_resources.*"/>
<Class name="~.*requests.*"/>
<Class name="~.*urllib3.*"/>
<!-- The security manager is getting deprecated and we don't use it. -->
<Bug pattern="DP"/>
</Or>
</Match>
</FindBugsFilter>