mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-18 06:57:18 +01:00
14 lines
323 B
Groovy
14 lines
323 B
Groovy
apply plugin: 'io.gitlab.arturbosch.detekt'
|
|
|
|
detekt {
|
|
failFast = true
|
|
config = files("$rootProject.projectDir/default-detekt-config.yml")
|
|
|
|
reports {
|
|
html {
|
|
enabled = true
|
|
destination = file("$rootProject.projectDir/reports/detekt/$projectDir.name-report.html")
|
|
}
|
|
}
|
|
}
|