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

29 lines
1 KiB
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-03-05 11:39:47 +01:00
<Match>
<!-- Spotbugs does not detect that the other cases are handled above in an if-->
<Class name="de.towerdefence.server.match.confirmation.MatchConfirmationService"/>
<Bug code="M,D,SF"/>
</Match>
<Match>
<!-- This is Only a Placeholder Object, thus it's not a bad practice to instance it-->
<Class name="de.towerdefence.server.match.MatchService"/>
<Method name="placeTower"/>
<Bug code="L,B,ISC"/>
</Match>
2025-02-01 14:18:34 +01:00
</FindBugsFilter>