Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 9b4a1b4f authored by Andy Scherzinger's avatar Andy Scherzinger
Browse files

Update spotless config to changed API

parent d4d5cd51
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
import com.github.spotbugs.snom.SpotBugsTask
import com.github.spotbugs.snom.Confidence
import com.github.spotbugs.snom.Effort

buildscript {
    ext {
@@ -80,8 +82,8 @@ dependencies {

spotbugs {
    ignoreFailures = true // should continue checking
    effort = "max"
    reportLevel = "medium"
    effort = Effort.MAX
    reportLevel = Confidence.valueOf('MEDIUM')
}

tasks.withType(SpotBugsTask){task ->