mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-16 05:56:52 +01:00
15 lines
373 B
Groovy
15 lines
373 B
Groovy
apply plugin: 'io.gitlab.arturbosch.detekt'
|
|
|
|
detekt {
|
|
toolVersion = "1.0.0"
|
|
config = files("$rootProject.projectDir/default-detekt-config.yml")
|
|
filters = ".*/resources/.*,.*/build/.*"
|
|
|
|
reports {
|
|
html {
|
|
enabled = true
|
|
destination = file("$rootProject.projectDir/reports/detekt/$projectDir.name-report.html")
|
|
}
|
|
}
|
|
}
|