nikolaymetchev
buildSrc
ephemient
tasks.register<Detekt>("detektKotlinScripts") { group = VERIFICATION_GROUP description = "Run detekt analysis for Kotlin scripts" source(files().apply { from(layout.projectDirectory.asFileTree.matching { include("*.kts") }) }) } tasks.register("detektAll") { dependsOn(tasks.withType<Detekt>()) } tasks.check { dependsOn(tasks.withType<Detekt>()) }
A modern programming language that makes developers happier.