chore(deps): replace dependency rollup-plugin-terser with @rollup/plu… #6900
Annotations
3 errors and 3 warnings
audit-js
Process completed with exit code 8.
|
unneeded `return` statement:
src/build.rs#L429
error: unneeded `return` statement
--> src/build.rs:429:9
|
429 | return Some(String::from_utf8_lossy(&word).trim().to_string());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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`
|
429 - return Some(String::from_utf8_lossy(&word).trim().to_string());
429 + Some(String::from_utf8_lossy(&word).trim().to_string())
|
|
unneeded `return` statement:
src/build.rs#L429
error: unneeded `return` statement
--> src/build.rs:429:9
|
429 | return Some(String::from_utf8_lossy(&word).trim().to_string());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= 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`
|
429 - return Some(String::from_utf8_lossy(&word).trim().to_string());
429 + Some(String::from_utf8_lossy(&word).trim().to_string())
|
|
audit-rust
14 warnings found!
|
audit-rust
Unknown warning kind unsound found, please, file a bug
|
audit-rust
Unknown warning kind unsound found, please, file a bug
|