wip: begin to show all paid commits #32
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (0)
Filtered Findings (5)
src/api/mod.rs|10 col 5| warning: unused import: float_pretty_print::PrettyPrintFloat
--> src/api/mod.rs:10:5
|
10 | use float_pretty_print::PrettyPrintFloat;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[warn(unused_imports)]
on by default
src/api/mod.rs|12 col 5| warning: unused import: tracing::debug
--> src/api/mod.rs:12:5
|
12 | use tracing::debug;
| ^^^^^^^^^^^^^^
src/api/mod.rs|21 col 10| error[E0609]: no field author
on type &api::PaidCommit
--> src/api/mod.rs:21:10
|
21 | #[derive(Template, Debug, Clone, Default)]
| ^^^^^^^^ unknown field
|
= note: this error originates in the derive macro Template
(in Nightly builds, run with -Z macro-backtrace for more info)
src/repo.rs|228 col 27| warning: unused variable: key_id
--> src/repo.rs:228:27
|
228 | if let Ok(key_id) = verify_signature(self.tmp.path().to_path_buf(), &commit) {
| ^^^^^^ help: if this is intentional, prefix it with an underscore: _key_id
|
= note: #[warn(unused_variables)]
on by default
src/repo.rs|229 col 33| warning: unused variable: message
--> src/repo.rs:229:33
|
229 | if let Some(message) = commit.message() {
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: _message