Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Format tools/gn #33812

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ci/bin/format.dart
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,11 @@ class PythonFormatChecker extends FormatChecker {
}

Future<int> _runYapfCheck({required bool fixing}) async {
final List<String> filesToCheck = await getFileList(<String>['*.py']);
final List<String> filesToCheck = <String>[
...await getFileList(<String>['*.py']),
// Always include flutter/tools/gn.
'${repoDir.path}/tools/gn',
];

final List<String> cmd = <String>[
yapfBin.path,
Expand Down
Loading