aboutsummaryrefslogtreecommitdiff
path: root/spotless.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-01-11 00:49:07 -0800
committerAllan Wang <me@allanwang.ca>2021-01-11 00:49:07 -0800
commit451e9869bca0ea16eb24eaa8fe9e866ce36a9a7a (patch)
tree9f6eefc3a3eefb965841ebc4338b5f21aa0959d1 /spotless.gradle
parent89d4a2e596d07585c4a3ed91e6e091111da0c2ad (diff)
downloadkau-451e9869bca0ea16eb24eaa8fe9e866ce36a9a7a.tar.gz
kau-451e9869bca0ea16eb24eaa8fe9e866ce36a9a7a.tar.bz2
kau-451e9869bca0ea16eb24eaa8fe9e866ce36a9a7a.zip
Apply spotless and allow wildcard imports
Diffstat (limited to 'spotless.gradle')
-rw-r--r--spotless.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/spotless.gradle b/spotless.gradle
index 2947489..ea95c38 100644
--- a/spotless.gradle
+++ b/spotless.gradle
@@ -3,7 +3,7 @@ apply plugin: "com.diffplug.spotless"
spotless {
kotlin {
target "**/*.kt"
- ktlint()
+ ktlint().userData(["disabled_rules": "no-wildcard-imports"])
licenseHeaderFile '../spotless.license.kt'
trimTrailingWhitespace()
endWithNewline()