Skip to content

Commit

Permalink
Allow lint since it can degrade performance and does not hurt with op…
Browse files Browse the repository at this point in the history
…timizer
  • Loading branch information
FlixCoder committed Sep 26, 2024
1 parent f3187ac commit d40b074
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ trivial_numeric_casts = "warn"
unused_extern_crates = "warn"

[workspace.lints.clippy]
tabs_in_doc_comments = "allow"
tabs_in_doc_comments = "allow" # Rustfmt setting.
unnecessary_lazy_evaluations = "allow" # Performance better, because `Drop`.
allow_attributes_without_reason = "warn"
branches_sharing_code = "warn"
cast_lossless = "warn"
Expand Down

0 comments on commit d40b074

Please sign in to comment.