lint: Make lint error easier to spot in output

This commit is contained in:
MarcoFalke 2024-02-11 15:21:47 +01:00
parent fa770fd368
commit fa63b0e351
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ fn main() -> ExitCode {
// chdir to root before each lint test
env::set_current_dir(&git_root).unwrap();
if let Err(err) = lint_fn() {
println!("{err}\n^---- Failure generated from {lint_name}!");
println!("{err}\n^---- ⚠️ Failure generated from {lint_name}!");
test_failed = true;
}
}