Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ cast_possible_truncation = "allow" # TODO: consider
cast_precision_loss = "allow" # TODO: consider
checked_conversions = "allow"
collapsible_match = "allow"
decimal_literal_representation = "allow" # TODO: consider
else_if_without_else = "allow"
enum_glob_use = "allow"
float_arithmetic = "allow"
Expand Down Expand Up @@ -160,6 +159,7 @@ arbitrary_source_item_ordering = "allow" # order: std, deps, crate
blanket_clippy_restriction_lints = "allow" # allowlist is better
clone_on_ref_ptr = "allow" # Arc::clone(blah) is needlessly noisy
cognitive_complexity = "allow" # is this ever useful?
decimal_literal_representation = "allow" # arguably more human-readable
default_numeric_fallback = "allow" # too many false positives
expect_used = "allow" # expect is self-documenting
error_impl_error = "allow" # mod::Error is a fine name
Expand Down
Loading