All checks were successful
Quality Check / Validate OAS (push) Successful in 30s
Quality Check / Linting (push) Successful in 1m6s
Quality Check / Testing (push) Successful in 1m5s
Quality Check / Static Analysis (push) Successful in 1m16s
Quality Check / Validate OAS (pull_request) Successful in 37s
Quality Check / Linting (pull_request) Successful in 1m2s
Quality Check / Testing (pull_request) Successful in 53s
Quality Check / Static Analysis (pull_request) Successful in 57s
28 lines
1 KiB
XML
28 lines
1 KiB
XML
<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 -->
|
|
</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>
|
|
<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>
|
|
</FindBugsFilter>
|