mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-08 12:02:33 +01:00
11 lines
292 B
Groovy
11 lines
292 B
Groovy
apply plugin: "com.diffplug.spotless"
|
|
|
|
spotless {
|
|
kotlin {
|
|
target "**/*.kt"
|
|
ktlint(kau.Versions.ktlint).userData(["disabled_rules": "no-wildcard-imports"])
|
|
licenseHeaderFile '../spotless.license.kt'
|
|
trimTrailingWhitespace()
|
|
endWithNewline()
|
|
}
|
|
} |