Server/src/main/resources/spotbugs-exclude.xml

18 lines
569 B
XML
Raw Normal View History

2025-02-01 14:18:34 +01:00
<FindBugsFilter
xmlns="https://raw.githubusercontent.com/spotbugs/spotbugs/4.8.6/spotbugs/etc/findbugsfilter.xsd">
<Match>
<Source name="~.*" />
<Bug code="EI,EI2,UuF" /> <!-- We don't care about these codes -->
2025-02-01 14:18:34 +01:00
</Match>
<Match>
<!--Ignore
Auto Generated Code -->
<Source name="~.*build/.*" />
</Match>
<Match>
<!-- We are not Vulnerable to that Attack in our Context-->
<Class name="de.towerdefence.server.session.JwtService"/>
<Bug code="M,B,CT"/>
</Match>
2025-02-01 14:18:34 +01:00
</FindBugsFilter>