We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d21957 commit 8ab25ebCopy full SHA for 8ab25eb
build.gradle.kts
@@ -1,5 +1,6 @@
1
import io.github.petertrr.configurePublishing
2
import io.github.petertrr.configureVersioning
3
+import io.gitlab.arturbosch.detekt.Detekt
4
import org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest
5
6
plugins {
@@ -61,6 +62,9 @@ detekt {
61
62
dependencies {
63
detektPlugins(libs.detekt.formatting)
64
}
65
+tasks.withType<Detekt> {
66
+ tasks.getByName("check").dependsOn(this)
67
+}
68
69
// configure Jacoco-based code coverage reports for JVM tests executions
70
jacoco {
0 commit comments