org.danilopianini.javaqa.spotbugs-excludes.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-java-qa Show documentation
Show all versions of gradle-java-qa Show documentation
Automated Quality Assurance configuration for Java Projects built with Gradle
<?xml version="1.0" encoding="UTF-8"?> <FindBugsFilter xmlns="https://github.com/spotbugs/filter/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd"> <!-- Disable all checks in Scala and Kotlin --> <Match> <Source name="~.*\.scala"/> </Match> <Match> <Source name="~.*\.kt"/> </Match> <Match> <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/> </Match> <Match> <Bug pattern="CT_CONSTRUCTOR_THROW"/> </Match> <Match> <Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"/> </Match> <Match> <Bug pattern="IMA_INEFFICIENT_MEMBER_ACCESS"/> </Match> <Match> <Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT"/> </Match> <Match> <Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/> </Match> <Match> <Bug pattern="SE_INNER_CLASS"/> </Match> <Match> <Bug pattern="SE_INNER_CLASS"/> </Match> <Match> <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/> </Match> <Match> <Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED"/> </Match> <Match> <Bug pattern="THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION"/> </Match> <Match> <Bug pattern="THROWS_METHOD_THROWS_CLAUSE_THROWABLE"/> </Match> <Match> <Bug pattern="UPM_UNCALLED_PRIVATE_METHOD"/> </Match> <Match> <Bug pattern="UWF_NULL_FIELD"/> </Match> <Match> <Package name="~.*\.biochemistrydsl"/> </Match> </FindBugsFilter>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy