ci: ignore bincode being unmaintained #339
Annotations
5 warnings
|
the loop variable `i` is used to index `span_words`:
src/shape.rs#L2658
warning: the loop variable `i` is used to index `span_words`
--> src/shape.rs:2658:30
|
2658 | for i in r.start.word..r.end.word + usize::from(r.end.glyph != 0) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#needless_range_loop
= note: `#[warn(clippy::needless_range_loop)]` on by default
help: consider using an iterator and enumerate()
|
2658 - for i in r.start.word..r.end.word + usize::from(r.end.glyph != 0) {
2658 + for (i, <item>) in span_words.iter().enumerate().take(r.end.word + usize::from(r.end.glyph != 0)).skip(r.start.word) {
|
|
|
item in documentation is missing backticks:
src/shape.rs#L1984
warning: item in documentation is missing backticks
--> src/shape.rs:1984:36
|
1984 | /// Determines the appropriate BiDi level for the ellipsis based on the
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#doc_markdown
help: try
|
1984 - /// Determines the appropriate BiDi level for the ellipsis based on the
1984 + /// Determines the appropriate `BiDi` level for the ellipsis based on the
|
|
|
item in documentation is missing backticks:
src/shape.rs#L1974
warning: item in documentation is missing backticks
--> src/shape.rs:1974:59
|
1974 | /// Creates a VlRange for the ellipsis with the given BiDi level.
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#doc_markdown
help: try
|
1974 - /// Creates a VlRange for the ellipsis with the given BiDi level.
1974 + /// Creates a VlRange for the ellipsis with the given `BiDi` level.
|
|
|
item in documentation is missing backticks:
src/shape.rs#L1974
warning: item in documentation is missing backticks
--> src/shape.rs:1974:19
|
1974 | /// Creates a VlRange for the ellipsis with the given BiDi level.
| ^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#doc_markdown
help: try
|
1974 - /// Creates a VlRange for the ellipsis with the given BiDi level.
1974 + /// Creates a `VlRange` for the ellipsis with the given BiDi level.
|
|
|
item in documentation is missing backticks:
src/shape.rs#L614
warning: item in documentation is missing backticks
--> src/shape.rs:614:24
|
614 | /// span index used in VlRange to indicate this range is the ellipsis.
| ^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#doc_markdown
note: the lint level is defined here
--> src/lib.rs:84:9
|
84 | #![warn(clippy::doc_markdown)]
| ^^^^^^^^^^^^^^^^^^^^
help: try
|
614 - /// span index used in VlRange to indicate this range is the ellipsis.
614 + /// span index used in `VlRange` to indicate this range is the ellipsis.
|
|