Skip to content

Added upload_with_access #2003

Added upload_with_access

Added upload_with_access #2003

GitHub Actions / clippy failed Sep 9, 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.2 (c7c49f44a 2024-09-04)
  • cargo 1.82.0-beta.2 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (c7c49f4 2024-09-04)

Annotations

Check failure on line 4 in packages/cw-orch-core/src/env.rs

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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 246 in packages/cw-orch-core/src/contract/interface_traits.rs

See this annotation in the file changed.

@github-actions 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:244:1
    |
244 | / /// Trait to implement on the contract to enable it to be uploaded
245 | | /// Should return [`WasmPath`](crate::contract::interface_traits::WasmPath) for `Chain = Daemon`
246 | | /// 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)]`