Skip to content

Commit 3b931e9

Browse files
munificentCommit Queue
authored andcommitted
Disable the Dart format check in the presubmit.
This is temporary while I roll in the new formatter and Alex builds a new pre-built SDK. Change-Id: I89a782bec07b14f19dad374a13ca5e8f89a2a841 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/391320 Auto-Submit: Bob Nystrom <[email protected]> Reviewed-by: Devon Carew <[email protected]> Commit-Queue: Bob Nystrom <[email protected]>
1 parent 2fd0b1a commit 3b931e9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

PRESUBMIT.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,12 @@ def _CheckDevCompilerSync(input_api, output_api):
532532
def _CommonChecks(input_api, output_api):
533533
results = []
534534
results.extend(_CheckValidHostsInDEPS(input_api, output_api))
535-
results.extend(_CheckDartFormat(input_api, output_api))
535+
536+
# TODO(rnystrom): Temporarily disabling dart format checking while
537+
# migrating to the new formatting style.
538+
# See: https://github.com/dart-lang/sdk/issues/56688
539+
# results.extend(_CheckDartFormat(input_api, output_api))
540+
536541
results.extend(_CheckStatusFiles(input_api, output_api))
537542
results.extend(_CheckLayering(input_api, output_api))
538543
results.extend(_CheckClangTidy(input_api, output_api))

0 commit comments

Comments
 (0)