We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20d9a48 commit ec67778Copy full SHA for ec67778
fontspector-cli/src/reporters/terminal.rs
@@ -75,15 +75,15 @@ impl Reporter for TerminalReporter {
75
println!(" Section: {:}\n", sectionname);
76
sectionheading_done = true;
77
}
78
+ println!(">> {:}", result.check_id);
79
+ if args.verbose > 1 {
80
+ println!(" {:}", result.check_name);
81
+ termimad::print_inline(&format!(
82
+ "Rationale:\n\n```\n{}\n```\n",
83
+ result.check_rationale
84
+ ));
85
+ }
86
for subresult in subresults {
- println!(">> {:}", result.check_id);
- if args.verbose > 1 {
- println!(" {:}", result.check_name);
- termimad::print_inline(&format!(
- "Rationale:\n\n```\n{}\n```\n",
- result.check_rationale
- ));
- }
87
termimad::print_inline(&format!("{:}\n", subresult));
88
89
match &result.hotfix_result {
0 commit comments