summaryrefslogtreecommitdiffstats
path: root/.cargo
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-20 05:19:24 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-20 05:19:24 +0200
commit14ba939e674ec4d9ca53b506ffa3259d30216e85 (patch)
treeaf569774bbb20cb953f9ab2e4632216577e7e59a /.cargo
parent1e4bade53aaaeb17542d0372ac827bcb7daf037c (diff)
downloadiced-14ba939e674ec4d9ca53b506ffa3259d30216e85.tar.gz
iced-14ba939e674ec4d9ca53b506ffa3259d30216e85.tar.bz2
iced-14ba939e674ec4d9ca53b506ffa3259d30216e85.zip
Fix `clippy::unreadable_literal`
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index 61bfbf17..4ae09897 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -6,7 +6,7 @@ clippy --workspace --no-deps -- \
-D clippy::trivially-copy-pass-by-ref \
-D clippy::default_trait_access \
-D clippy::match-wildcard-for-single-variants \
- -D clippy::redundant-closure-for-method-calls
+ -D clippy::redundant-closure-for-method-calls \
"""
nitpick = """
@@ -30,5 +30,10 @@ clippy --workspace --no-deps -- \
-A clippy::if_not_else \
-A clippy::redundant_else \
-A clippy::used_underscore_binding \
- -A clippy::cast_possible_wrap
+ -A clippy::cast_possible_wrap \
+ -A clippy::unnecessary_wraps \
+ -A clippy::struct-excessive-bools \
+ -A clippy::float-cmp \
+ -A clippy::single_match_else \
+ -A clippy::unreadable_literal
"""