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 b919e2e commit 2e78697Copy full SHA for 2e78697
tooling/src/main.rs
@@ -62,6 +62,14 @@ fn main() {
62
63
spinner.success("Detailed report generated!");
64
println!("{}", shell_summary(new_report));
65
+ println!("\nDetailed breakdown:");
66
+
67
+ let mut files: Vec<_> = detailed_files.iter().collect();
68
+ files.sort_by_key(|(name, _)| *name);
69
70
+ for (file_name, loc) in files {
71
+ println!(" {}: {} lines", file_name, loc);
72
+ }
73
} else if opts.compare_detailed {
74
let current_detailed_loc_report = detailed_files;
75
0 commit comments