Merge branch 'main' of https://github.com/chipnertkj/chipbox #118
rust-clippy.yml
on: push
Run rust-clippy analysis
1m 44s
Annotations
10 warnings
Run rust-clippy analysis
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/clippy@master. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Run rust-clippy analysis
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis:
common/src/project/channels.rs#L6
warning: empty doc comment
--> common/src/project/channels.rs:6:1
|
6 | ///
| ^^^
|
= help: consider removing or filling it
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_docs
= note: `#[warn(clippy::empty_docs)]` on by default
|
Run rust-clippy analysis:
ui/app/src/app/editor.rs#L14
warning: unused variable: `props`
--> ui/app/src/app/editor.rs:14:22
|
14 | pub(super) fn Editor(props: &Props) -> yew::Html {
| ^^^^^ help: if this is intentional, prefix it with an underscore: `_props`
|
= note: `#[warn(unused_variables)]` on by default
|
Run rust-clippy analysis:
ui/app/src/app/home.rs#L21
warning: unused variable: `settings`
--> ui/app/src/app/home.rs:21:24
|
21 | State::Welcome(settings) => html_welcome(),
| ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_settings`
|
Run rust-clippy analysis:
ui/app/src/app/home.rs#L7
warning: variant `Welcome` is never constructed
--> ui/app/src/app/home.rs:9:5
|
7 | pub(super) enum State {
| ----- variant in this enum
8 | QueryingSettings,
9 | Welcome(Settings),
| ^^^^^^^
|
= note: `State` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
|