Is there a way to prevent Detekt from running on c...
# detekt
m
Is there a way to prevent Detekt from running on certain files?
Found out how!
Copy code
tasks.withType(io.gitlab.arturbosch.detekt.Detekt).configureEach {
    exclude("**test/test.kt**")
}
👍 1