mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
78e86d8f2b
Add a custom detekt rule to blacklist certain properties. This is immediately useful for making sure that developers do not configure runtime behavior using the `BuildConfig.DEBUG` property but it is useful in a wider context.
15 lines
323 B
Groovy
15 lines
323 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compileOnly Deps.detektApi
|
|
|
|
testImplementation Deps.detektApi
|
|
testImplementation Deps.detektTest
|
|
implementation Deps.kotlin_stdlib
|
|
testImplementation Deps.junitApi
|
|
testImplementation Deps.junitParams
|
|
testImplementation Deps.assertJ
|
|
testRuntimeOnly Deps.junitEngine
|
|
}
|
|
|