printProject method
Prints the full project diagnosis: header, summary, per-package details, and a footer with the overall verdict.
Implementation
void printProject(ProjectDiagnosis d) {
_header(d);
_summary(d);
stdout.writeln();
for (final r in d.results) {
_package(r);
}
_footer(d);
}