Question. How to set report destination path in bu...
# detekt
t
Question. How to set report destination path in build.gradle on detekt 1.19.0 ?
e
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
thanks!
👍 1