We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aaa9489 + 26c9eca commit 3242c70Copy full SHA for 3242c70
build.gradle
@@ -49,13 +49,23 @@ buildscript {
49
}
50
51
52
+plugins {
53
+ id "com.diffplug.spotless" version "5.9.0"
54
+}
55
+
56
allprojects {
57
repositories {
58
google()
59
jcenter()
60
61
62
-task clean(type: Delete) {
- delete rootProject.buildDir
63
+subprojects {
64
+ apply plugin: 'com.diffplug.spotless'
65
+ spotless {
66
+ kotlin {
67
+ target "**/*.kt"
68
+ ktlint('0.40.0')
69
+ }
70
71
0 commit comments