Fix codes that make dogfood fail

This commit is contained in:
Yoshitomo Nakanishi 2021-03-13 15:23:57 +09:00
parent f2cc995bcf
commit 1109dc8838

View File

@ -89,14 +89,14 @@ fn lint_message_convention() {
.filter(|message| !message.bad_lines.is_empty())
.collect();
bad_tests.iter().for_each(|message| {
for message in &bad_tests {
eprintln!(
"error: the test '{}' contained the following nonconforming lines :",
message.path.display()
);
message.bad_lines.iter().for_each(|line| eprintln!("{}", line));
eprintln!("\n\n");
});
}
eprintln!(
"\n\n\nLint message should not start with a capital letter and should not have punctuation at the end of the message unless multiple sentences are needed."