diff options
author | Florian Klink <flokli@flokli.de> | 2024-05-13T16·42+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-05-13T16·57+0000 |
commit | afcbc1d86d272527aa338f1fa8c998f54a39401a (patch) | |
tree | 150f92f6c4e6aa7959fbc13f27d68ceb026abe19 /tvix/Cargo.toml | |
parent | 14353ce7510748b8fd7daa2298ac48528c9a0c75 (diff) |
chore(tvix/clippy): configure clippy allow block_in_conditions r/8139
… in Cargo.toml. This gets an imperative `cargo clippy` run to pick up that config, so `-A clippy::blocks_in_conditions` doesn't need to be explicitly specified anymore. Change-Id: I32b6cc50c77c22cba0d816d0db508c2f94b2c383 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11659 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: edef <edef@edef.eu> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/Cargo.toml')
-rw-r--r-- | tvix/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tvix/Cargo.toml b/tvix/Cargo.toml index 6cd19831dc83..847d9aceeca0 100644 --- a/tvix/Cargo.toml +++ b/tvix/Cargo.toml @@ -30,6 +30,11 @@ members = [ "store", ] +[workspace.lints.clippy] +# Allow blocks_in_conditions due to false positives with #[tracing::instrument(…)]: +# https://github.com/rust-lang/rust-clippy/issues/12281 +blocks_in_conditions = "allow" + # Add a profile to all targets that enables release optimisations, but # retains debug symbols. This is great for use with # benchmarking/profiling tools. |