[Feature] Command Line Interface (CLI) #1995
GitHub Actions / clippy
failed
Sep 4, 2024 in 0s
clippy
3 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 3 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.82.0-beta.1 (fb1a6f7f4 2024-09-03)
- cargo 1.82.0-beta.1 (8f40fc59f 2024-08-21)
- clippy 0.1.82 (fb1a6f7 2024-09-03)
Annotations
Check failure on line 4 in packages/cw-orch-core/src/env.rs
github-actions / clippy
first doc comment paragraph is too long
error: first doc comment paragraph is too long
--> packages/cw-orch-core/src/env.rs:1:1
|
1 | / //! This regroups all env variables used by cw-orch-daemon. It allows for easier documentation and env variable management
2 | | //! This is used to import environment variables with safe names (and at a centralized location)
3 | | //! To get the env variable parsed value, you can use
4 | | //! ```rust,no_run
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
Check failure on line 97 in packages/cw-orch-core/src/contract/paths.rs
github-actions / clippy
first doc comment paragraph is too long
error: first doc comment paragraph is too long
--> packages/cw-orch-core/src/contract/paths.rs:96:5
|
96 | / /// Creates an [`ArtifactsDir`] from the current workspace by searching the file tree for a directory named `artifacts`.
97 | | /// It does this by reading the CARGO_MANIFEST_DIR environment variable and going up the file tree until it finds the `artifacts` dir...
| |____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
help: add an empty line
|
96 ~ /// Creates an [`ArtifactsDir`] from the current workspace by searching the file tree for a directory named `artifacts`.
97 + ///
|
Check failure on line 245 in packages/cw-orch-core/src/contract/interface_traits.rs
github-actions / clippy
first doc comment paragraph is too long
error: first doc comment paragraph is too long
--> packages/cw-orch-core/src/contract/interface_traits.rs:243:1
|
243 | / /// Trait to implement on the contract to enable it to be uploaded
244 | | /// Should return [`WasmPath`](crate::contract::interface_traits::WasmPath) for `Chain = Daemon`
245 | | /// and [`Box<&dyn Contract>`] for `Chain = Mock`
| |_
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
= note: `-D clippy::too-long-first-doc-paragraph` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::too_long_first_doc_paragraph)]`
Loading