Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore clippy::lines_filter_map_ok lint
rust-lang/rust-clippy#14127 ``` warning: `filter_map()` will run forever if the iterator repeatedly produces an `Err` --> src/cargo.rs:95:10 | 95 | .filter_map(|line| line.ok()) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `map_while(Result::ok)` | note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error --> src/cargo.rs:93:5 | 93 | / reader 94 | | .lines() | |________________^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lines_filter_map_ok = note: `#[warn(clippy::lines_filter_map_ok)]` on by default ```
- Loading branch information