modifies components + adds walk #89
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (1)
src/resolve.rs|36 col 12| warning: unused import: borrow::Borrow
--> src/resolve.rs:36:12
|
36 | use core::{borrow::Borrow, fmt, ops::ControlFlow};
| ^^^^^^^^^^^^^^
|
= note: #[warn(unused_imports)]
on by default
Filtered Findings (3)
src/assign.rs|14 col 5| error: doc list item missing indentation
--> src/assign.rs:14:5
|
14 | //! be considered an index of an array.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
note: the lint level is defined here
--> src/lib.rs:38:9
|
38 | #![deny(clippy::all, clippy::pedantic)]
| ^^^^^^^^^^^
= note: #[deny(clippy::doc_lazy_continuation)]
implied by #[deny(clippy::all)]
help: indent this line
|
14 | //! be considered an index of an array.
| +
src/assign.rs|66 col 5| error: doc list item missing indentation
--> src/assign.rs:66:5
|
66 | /// be considered an index of an array.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
66 | /// be considered an index of an array.
| +
src/index.rs|124 col 9| error: doc list item missing indentation
--> src/index.rs:124:9
|
124 | /// valid as well.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
124 | /// valid as well.
| ++
Annotations
Check warning on line 36 in src/resolve.rs
github-actions / clippy
[clippy] src/resolve.rs#L36
warning: unused import: `borrow::Borrow`
--> src/resolve.rs:36:12
|
36 | use core::{borrow::Borrow, fmt, ops::ControlFlow};
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
Raw output
src/resolve.rs:36:12:w:warning: unused import: `borrow::Borrow`
--> src/resolve.rs:36:12
|
36 | use core::{borrow::Borrow, fmt, ops::ControlFlow};
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
__END__