diff options
author | ByteHamster <info@bytehamster.com> | 2021-03-27 16:17:14 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2021-03-27 18:45:17 +0100 |
commit | 3946f986d723f8579a33140bbe3c0d95182ecab1 (patch) | |
tree | 4b022835d8cba52e0d0f6b8be67558d5cab5e939 /config | |
parent | 0d1241be66725f80e594ed21fd45d40e37ee3afe (diff) | |
download | AntennaPod-3946f986d723f8579a33140bbe3c0d95182ecab1.zip |
Add SpotBugs CI check
Diffstat (limited to 'config')
-rw-r--r-- | config/spotbugs/exclude.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/spotbugs/exclude.xml b/config/spotbugs/exclude.xml new file mode 100644 index 000000000..4c1e23ece --- /dev/null +++ b/config/spotbugs/exclude.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<FindBugsFilter> + <Match> + <Bug pattern="v WEAK_MESSAGE_DIGEST_MD5"/> + </Match> + <Match> + <Bug pattern="v LI_LAZY_INIT_UPDATE_STATIC"/> + </Match> + <Match> + <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/> + <Class name="de.danoeh.antennapod.menuhandler.MenuItemUtils"/> + </Match> +</FindBugsFilter> |