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 0de2f6a commit 1a1c309Copy full SHA for 1a1c309
ci/bin/format.dart
@@ -725,7 +725,11 @@ class PythonFormatChecker extends FormatChecker {
725
}
726
727
Future<int> _runYapfCheck({required bool fixing}) async {
728
- final List<String> filesToCheck = await getFileList(<String>['*.py']);
+ final List<String> filesToCheck = <String>[
729
+ ...await getFileList(<String>['*.py']),
730
+ // Always include flutter/tools/gn.
731
+ '${repoDir.path}/tools/gn',
732
+ ];
733
734
final List<String> cmd = <String>[
735
yapfBin.path,
0 commit comments