Fix windows browser open command #562
Annotations
2 errors and 1 warning
unneeded `return` statement:
src/commands/edge_app/utils.rs#L73
error: unneeded `return` statement
--> src/commands/edge_app/utils.rs:73:5
|
73 | return !ignore.is_ignored(entry.path());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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`
|
73 - return !ignore.is_ignored(entry.path());
73 + !ignore.is_ignored(entry.path())
|
|
Lint code base
Clippy had exited with the 101 exit code
|
Lint code base
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|