Skip to content

Commit

Permalink
++
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer committed Dec 12, 2024
1 parent a60149f commit 2f7654b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/bin/format.dart
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ class DartFormatChecker extends FormatChecker {
continue;
}
for (final Directory subdir in dir.listSync(recursive: true).whereType<Directory>().where((Directory dir) => path.basename(dir.path) == '.dart_tool')) {
if (subdir.path.contains('third_party')) {
if (subdir.path.contains('third_party') || subdir.path.contains('impeller/tessellator/dart') || subdir.path.contains('tools') || subdir.path.contains('shell/vmservice') || subdir.path.contains('ci') || subdir.path.contains('testing') || subdir.path.contains('flutter_frontend_server')) {
continue;
}
print('Deleting ${subdir.path}');
Expand Down

0 comments on commit 2f7654b

Please sign in to comment.