Csabi Szenczi
06/03/2022, 11:33 AMdetekt {
source = files(rootProject.rootDir, "src")
}
tasks.withType<Detekt>().configureEach {
setSource(files("src/main/res"))
include("**/*.kt")
include("**/*.kts")
include("**/*.xml")
include("**/**.xml")
exclude("**/resources/**")
exclude("**/build/**")
}
As you can see I have tried it with redundancy in hope that I will get lucky with one of the syntaxes but didn't work with either of themgammax
06/03/2022, 11:50 AMCsabi Szenczi
06/03/2022, 11:51 AM