We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f78412 commit dd34432Copy full SHA for dd34432
gradle/java-setup.gradle
@@ -17,7 +17,11 @@ spotbugs {
17
ignoreFailures = false // bug free or it doesn't ship!
18
reportLevel = 'medium' // low|medium|high (low = sensitive to even minor mistakes)
19
omitVisitors = [
20
- 'FindReturnRef'] // https://spotbugs.readthedocs.io/en/latest/detectors.html#findreturnref
+ // https://spotbugs.readthedocs.io/en/latest/detectors.html#constructorthrow
21
+ 'ConstructorThrow',
22
+ // https://spotbugs.readthedocs.io/en/latest/detectors.html#findreturnref
23
+ 'FindReturnRef',
24
+ ]
25
}
26
tasks.named('spotbugsTest') {
27
enabled = false
0 commit comments