diff options
author | 2023-09-20 05:23:15 +0200 | |
---|---|---|
committer | 2023-09-20 05:23:15 +0200 | |
commit | 1019d1e518d8ffe760142ccd5ff33d077434c8b9 (patch) | |
tree | 7535197f040e2e6443a398018e3fb663f90b85fe /.cargo | |
parent | 14ba939e674ec4d9ca53b506ffa3259d30216e85 (diff) | |
download | iced-1019d1e518d8ffe760142ccd5ff33d077434c8b9.tar.gz iced-1019d1e518d8ffe760142ccd5ff33d077434c8b9.tar.bz2 iced-1019d1e518d8ffe760142ccd5ff33d077434c8b9.zip |
Fix `clippy::filter_map_next`
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 4ae09897..d49e034f 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -7,6 +7,7 @@ clippy --workspace --no-deps -- \ -D clippy::default_trait_access \ -D clippy::match-wildcard-for-single-variants \ -D clippy::redundant-closure-for-method-calls \ + -D clippy::filter_map_next """ nitpick = """ @@ -35,5 +36,7 @@ clippy --workspace --no-deps -- \ -A clippy::struct-excessive-bools \ -A clippy::float-cmp \ -A clippy::single_match_else \ - -A clippy::unreadable_literal + -A clippy::unreadable_literal \ + -A clippy::explicit_deref_methods \ + -A clippy::map_unwrap_or """ |