aboutsummaryrefslogtreecommitdiff
path: root/spotless.gradle
blob: ea95c38f5caacea1281ea510d96f07920ce660e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
apply plugin: "com.diffplug.spotless"

spotless {
    kotlin {
        target "**/*.kt"
        ktlint().userData(["disabled_rules": "no-wildcard-imports"])
        licenseHeaderFile '../spotless.license.kt'
        trimTrailingWhitespace()
        endWithNewline()
    }
}