feat: stdlib
implementation
#1019
Annotations
2 errors and 1 warning
src/recipe/parser/requirements.rs#L241
[clippy] reported by reviewdog 🐶
error: unneeded `return` statement
--> src/recipe/parser/requirements.rs:241:13
|
241 | return Ok(dependency);
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `-D clippy::needless-return` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_return)]`
help: remove `return`
|
241 - return Ok(dependency);
241 + Ok(dependency)
|
Raw Output:
src/recipe/parser/requirements.rs:241:13:e:error: unneeded `return` statement
--> src/recipe/parser/requirements.rs:241:13
|
241 | return Ok(dependency);
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `-D clippy::needless-return` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_return)]`
help: remove `return`
|
241 - return Ok(dependency);
241 + Ok(dependency)
|
__END__
|
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: giraffate/clippy-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
The logs for this run have expired and are no longer available.
Loading