Format codebase using Clippy
seanprashad opened this issue · 1 comments
seanprashad commented
Here are two current linting issues that we can fix up:
Checking supernova v0.1.0 (/Users/sean/projects/supernova)
warning: unneeded return statement
--> src/lib.rs:99:9
|
99 | return Ok(());
| ^^^^^^^^^^^^^^ help: remove `return` as shown: `Ok(())`
|
= note: #[warn(clippy::needless_return)] on by default
= help: for further information visit https://rust-lang-nursery.github.io/rust-clippy/v0.0.212/index.html#needless_return
warning: unneeded return statement
--> src/lib.rs:137:5
|
137 | / return match link_headers {
138 | | None => None,
139 | | Some(links) => links
140 | | .values()
... |
148 | | .and_then(|link_value| Some(link_value.link().to_owned())),
149 | | };
| |______^
|
= help: for further information visit https://rust-lang-nursery.github.io/rust-clippy/v0.0.212/index.html#needless_return
help: remove `return` as shown
|
137 | match link_headers {
138 | None => None,
139 | Some(links) => links
140 | .values()
141 | .iter()
142 | .find(|&val| {
...
Finished dev [unoptimized + debuginfo] target(s) in 46.40s
0xazure commented
warning: unneeded return statement
Not surprised in the slightest, I'm too used to C/++ apparently.
This would make a great first issue for someone!