mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
16 lines
298 B
Kotlin
16 lines
298 B
Kotlin
plugins {
|
|
id("module")
|
|
alias(libs.plugins.binaryCompatibilityValidator)
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.kotlin.compilerEmbeddable)
|
|
|
|
testImplementation(libs.assertj)
|
|
testImplementation(projects.detektTest)
|
|
}
|
|
|
|
apiValidation {
|
|
ignoredPackages.add("io.github.detekt.psi.internal")
|
|
}
|