This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
feat: implement postman collections importation #211
Annotations
5 warnings
using `.clone()` on a double reference, which returns `&str` instead of cloning the inner type:
src/screens/screen.rs#L155
warning: using `.clone()` on a double reference, which returns `&str` instead of cloning the inner type
--> src/screens/screen.rs:155:41
|
155 | .map(|i| ListItem::new(i.clone()))
| ^^^^^^^^
|
= note: `#[warn(suspicious_double_ref_op)]` on by default
|
useless use of `format!`:
src/screens/input/input.rs#L28
warning: useless use of `format!`
--> src/screens/input/input.rs:28:26
|
28 | let fmtstr = format!("Enter a URL for your request and press Enter");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Enter a URL for your request and press Enter".to_string()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
= note: `#[warn(clippy::useless_format)]` on by default
|
module has the same name as its containing module:
src/screens/input/mod.rs#L1
warning: module has the same name as its containing module
--> src/screens/input/mod.rs:1:1
|
1 | pub mod input;
| ^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
= note: `#[warn(clippy::module_inception)]` on by default
|
clippy_check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|