mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
* Enable ForbiddenMethodCall on detekt code base * Move Resources extensions from tooling to utils * Forbid Url.openStream calls and Class.getResourceAsStream
27 lines
878 B
Kotlin
27 lines
878 B
Kotlin
plugins {
|
|
id("module")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.snakeyaml)
|
|
implementation(projects.detektApi)
|
|
implementation(projects.detektMetrics)
|
|
implementation(projects.detektParser)
|
|
implementation(projects.detektPsiUtils)
|
|
implementation(projects.detektTooling)
|
|
implementation(projects.detektReportHtml)
|
|
implementation(projects.detektReportTxt)
|
|
implementation(projects.detektReportXml)
|
|
implementation(projects.detektReportSarif)
|
|
implementation(projects.detektUtils)
|
|
|
|
testRuntimeOnly(projects.detektRules)
|
|
testRuntimeOnly(projects.detektFormatting)
|
|
testRuntimeOnly(libs.spek.runner)
|
|
testImplementation(projects.detektTest)
|
|
testImplementation(testFixtures(projects.detektApi))
|
|
testImplementation(libs.mockk)
|
|
testImplementation(libs.reflections)
|
|
testImplementation(libs.bundles.testImplementation)
|
|
}
|