10 lines
268 B
Groovy
10 lines
268 B
Groovy
apply plugin: "com.diffplug.spotless"
|
|
spotless {
|
|
kotlin {
|
|
target "**/*.kt"
|
|
ktlint("0.41.0").userData(['indent_size': '2', 'continuation_indent_size': '2'])
|
|
licenseHeaderFile '../spotless.license.kt'
|
|
trimTrailingWhitespace()
|
|
endWithNewline()
|
|
}
|
|
} |