Henning B
03/25/2021, 4:27 PMgammax
03/25/2021, 8:12 PM./gradlew detektFreeDebug
it should run all the tasks with that name in your build.Henning B
03/26/2021, 7:30 AMhtml {
enabled = true
val projectName = project.name
destination = file("$rootDir/build/reports/detekt/$projectName.html")
}
gammax
03/26/2021, 4:10 PMI want to try to put the reports for all modules into the same folderSo if you want to merge all the reports, you need to follow this:
Henning B
03/26/2021, 4:11 PMignoreFailures
to true to get all reports, but than my CI wouldn't fail.
Is there an option to fail the overall task but also create reports for all modules?gammax
03/29/2021, 2:21 PM--continue
?Henning B
03/29/2021, 2:21 PMgammax
03/29/2021, 2:30 PM