Merge pull request #11346 from t895/ktlint-fix
android: lint: Delete generated ktlint folder between builds
This commit is contained in:
commit
a9f223cd9f
1 changed files with 5 additions and 0 deletions
|
@ -160,6 +160,11 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.create<Delete>("ktlintReset") {
|
||||||
|
delete(File(buildDir.path + File.separator + "intermediates/ktLint"))
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.getByPath("loadKtlintReporters").dependsOn("ktlintReset")
|
||||||
tasks.getByPath("preBuild").dependsOn("ktlintCheck")
|
tasks.getByPath("preBuild").dependsOn("ktlintCheck")
|
||||||
|
|
||||||
ktlint {
|
ktlint {
|
||||||
|
|
Loading…
Reference in a new issue