fix: add pedantic lints

This commit is contained in:
ThetaDev 2023-05-13 02:40:26 +02:00
parent 81280200f7
commit cbeb14f3fd
41 changed files with 520 additions and 447 deletions

View file

@ -1,3 +1,5 @@
#![warn(clippy::todo)]
mod abtest;
mod collect_album_types;
mod collect_large_numbers;
@ -90,7 +92,7 @@ async fn main() {
}
None => {
let res = abtest::run_all_tests(n, cli.concurrency).await;
println!("{}", serde_json::to_string_pretty(&res).unwrap())
println!("{}", serde_json::to_string_pretty(&res).unwrap());
}
};
}