Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

16 lines
332 B
Groovy

apply plugin: "com.diffplug.spotless"
spotless {
kotlin {
target "**/*.kt"
ktlint()
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
format 'misc', {
target '**/*.gradle', '**/*.md', '**/.gitignore'
}
format 'xml', {
target '**/*.xml'
}
}