blob: cbde75a47e6cf101c1f2addd6e38dea4ed58465b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
plugins {
`kotlin-dsl`
alias(libs.plugins.ktfmt) apply true
alias(libs.plugins.detekt) apply true
}
kotlin { jvmToolchain(17) }
// Should be the same as ktfmt config in project root build.gradle.kts
ktfmt {
kotlinLangStyle()
maxWidth.set(100)
removeUnusedImports.set(true)
}
|