mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-08 12:02:33 +01:00
11 lines
228 B
Groovy
11 lines
228 B
Groovy
|
apply plugin: "com.diffplug.gradle.spotless"
|
||
|
|
||
|
spotless {
|
||
|
kotlin {
|
||
|
target "**/*.kt"
|
||
|
ktlint()
|
||
|
licenseHeaderFile '../spotless.license.kt'
|
||
|
trimTrailingWhitespace()
|
||
|
endWithNewline()
|
||
|
}
|
||
|
}
|