-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotbugs-excludes.xml
26 lines (26 loc) · 1.24 KB
/
spotbugs-excludes.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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<!-- Exclusions can be defined here and should include a comment on why the finding can be ignored -->
<!-- TODO: REMOVE temporary ignore for skeleton commit -->
<Match>
<Or>
<Class name="gov.va.api.lighthouse.charon.service.controller.ParallelRpcExecutor"/>
<Class name="gov.va.api.lighthouse.charon.service.controller.RpcController"/>
<Class name="gov.va.api.lighthouse.charon.service.controller.VistalinkRpcInvokerFactory"/>
</Or>
<Bug pattern="URF_UNREAD_FIELD"/>
</Match>
<!-- To support local testing, we allow the vistalink.properties and principals.json file to be overwritten by user input -->
<Match>
<Or>
<Class name="gov.va.api.lighthouse.charon.service.config.VistalinkPropertiesConfig"/>
<Class name="gov.va.api.lighthouse.charon.service.config.RpcPrincipalConfig"/>
</Or>>
<Bug pattern="PATH_TRAVERSAL_IN"/>
</Match>
<!-- Lombok generated hashCode and equals is checking for null, then executing lazy initializer getter. -->
<Match>
<Class name="gov.va.api.lighthouse.charon.service.config.AlternateAuthorizationStatusIdProperties"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
</Match>
</FindBugsFilter>