diff options
author | 2024-12-02 19:53:16 +0100 | |
---|---|---|
committer | 2024-12-02 19:56:27 +0100 | |
commit | 602661372c921ef5079283ccd5f477c63977239f (patch) | |
tree | 1dfc3dc27986a2f0e8700b887a6dab8a1b3b77bc /.cargo | |
parent | e8f8216ea1f9deef7f2d02fa2600a0b4e247f8fa (diff) | |
download | iced-602661372c921ef5079283ccd5f477c63977239f.tar.gz iced-602661372c921ef5079283ccd5f477c63977239f.tar.bz2 iced-602661372c921ef5079283ccd5f477c63977239f.zip |
Fix new `clippy` lints
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 49ca3252..df979396 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,3 @@ [alias] lint = "clippy --workspace --benches --all-features --no-deps -- -D warnings" +lint-fix = "clippy --fix --allow-dirty --workspace --benches --all-features --no-deps -- -D warnings" |