13 lines
344 B
Groovy
13 lines
344 B
Groovy
apply plugin: "com.diffplug.spotless"
|
|
|
|
spotless {
|
|
kotlin {
|
|
target "**/*.kt"
|
|
targetExclude "**/build/**/*.kt"
|
|
ktlint().setUseExperimental(true).editorConfigOverride(['indent_size': '2', 'continuation_indent_size': '2'])
|
|
licenseHeaderFile "$rootDir/spotless/copyright.kt"
|
|
trimTrailingWhitespace()
|
|
endWithNewline()
|
|
}
|
|
}
|