https://kotlinlang.org logo
#detekt
Title
# detekt
t

tateisu

03/10/2022, 10:36 PM
Question. How to set report destination path in build.gradle on detekt 1.19.0 ?
e

Eric

03/11/2022, 9:04 PM
for kotlin DSL
Copy code
tasks.withType<Detekt> {
    reports {
        html.required.set(true)
        html.outputLocation.set(file("$buildDir/ci-output/detekt.html"))
        // etc
    }
}
👍 1
☝️ 1
t

tateisu

03/12/2022, 3:32 PM
thanks!
👍 1