add common, common-build, common-ktlint, common-detekt, and common-project

This commit is contained in:
2025-09-09 09:46:31 +02:00
parent 078611db9c
commit 75c1331793
7 changed files with 159 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType.SARIF
plugins {
id("org.jlleitschuh.gradle.ktlint")
}
ktlint {
verbose = true
filter {
exclude("**/generated/**")
include("**/kotlin/**")
}
kotlinScriptAdditionalPaths {
include(fileTree("scripts/*"))
}
reporters {
reporter(SARIF)
}
}