Remove and ignore lintcheck's log file

This commit is contained in:
xFrednet 2021-11-28 21:57:32 +01:00
parent 3c8f90bd5a
commit 460bef22a3
No known key found for this signature in database
GPG key ID: FCDCBF29AF64D601
3 changed files with 4 additions and 3863 deletions

4
.gitignore vendored
View file

@ -27,9 +27,11 @@ out
# Generated by dogfood
/target_recur/
# Generated by lintcheck
/lintcheck-logs
# gh pages docs
util/gh-pages/lints.json
**/metadata_collection.json
# rustfmt backups
*.rs.bk

File diff suppressed because it is too large Load diff

View file

@ -771,6 +771,7 @@ pub fn main() {
.for_each(|(cratename, msg)| text.push_str(&format!("{}: '{}'", cratename, msg)));
println!("Writing logs to {}", config.lintcheck_results_path.display());
std::fs::create_dir_all(config.lintcheck_results_path.parent().unwrap()).unwrap();
write(&config.lintcheck_results_path, text).unwrap();
print_stats(old_stats, new_stats);