mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-28 19:07:14 +00:00
feat(dart): Add build check for Dart (#886)
* feat(dart): Add build check for Dart * feat(dart): Add dart analyze to check * fix(dart): remove dart analyze * feat(dart): Ignore unused variable and add dart analyze
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
import 'dart:io';
|
||||
|
||||
void main() {
|
||||
Directory foldPath = Directory('codes/dart/');
|
||||
List<FileSystemEntity> files = foldPath.listSync();
|
||||
int totalCount = 0;
|
||||
int errorCount = 0;
|
||||
for (var file in files) {
|
||||
if (file.path.endsWith('build.dart')) continue;
|
||||
if (file is File && file.path.endsWith('.dart')) {
|
||||
totalCount++;
|
||||
try {
|
||||
Process.runSync('dart', [file.path]);
|
||||
} catch (e) {
|
||||
errorCount++;
|
||||
print('Error: $e');
|
||||
print('File: ${file.path}');
|
||||
}
|
||||
} else if (file is Directory) {
|
||||
List<FileSystemEntity> subFiles = file.listSync();
|
||||
for (var subFile in subFiles) {
|
||||
if (subFile is File && subFile.path.endsWith('.dart')) {
|
||||
totalCount++;
|
||||
try {
|
||||
Process.runSync('dart', [subFile.path]);
|
||||
} catch (e) {
|
||||
errorCount++;
|
||||
print('Error: $e');
|
||||
print('File: ${file.path}');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
print('===== Build Complete =====');
|
||||
print('Total: $totalCount');
|
||||
print('Error: $errorCount');
|
||||
}
|
||||
Reference in New Issue
Block a user