diff --git a/engine/src/flutter/tools/githooks/lib/src/pre_push_command.dart b/engine/src/flutter/tools/githooks/lib/src/pre_push_command.dart index e1e36999f7e..0a735b8c589 100644 --- a/engine/src/flutter/tools/githooks/lib/src/pre_push_command.dart +++ b/engine/src/flutter/tools/githooks/lib/src/pre_push_command.dart @@ -24,8 +24,8 @@ class PrePushCommand extends Command { final bool verbose = globalResults!['verbose']! as bool; final String flutterRoot = globalResults!['flutter']! as String; final List checkResults = [ - await _runClangTidy(flutterRoot, verbose), await _runFormatter(flutterRoot, verbose), + await _runClangTidy(flutterRoot, verbose), ]; sw.stop(); io.stdout.writeln('pre-push checks finished in ${sw.elapsed}');