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.
1 parent db4e52c commit 06770acCopy full SHA for 06770ac
1 file changed
buildSrc/src/main/kotlin/com/google/devtools/ksp/Ktfmt.kt
@@ -34,9 +34,11 @@ fun Project.configureKtfmt() {
34
task.group = "Verification"
35
}
36
37
- afterEvaluate {
38
- project.tasks.named("check").configure { checkTask ->
39
- checkTask.dependsOn(ktfmtCheck)
+ if (false) { // TODO: Remove this guard when all files have been formatted.
+ afterEvaluate {
+ project.tasks.named("check").configure { checkTask ->
40
+ checkTask.dependsOn(ktfmtCheck)
41
+ }
42
43
44
0 commit comments