Skip to content

Commit

Permalink
Adjust some lints
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Dec 15, 2023
1 parent 065dd7c commit 1700e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ rust_2021_compatibility = { level = "warn", priority = -1 }
unused = { level = "warn", priority = -1 }
# Rust lints.
deprecated_in_future = "warn"
ffi_unwind_calls = "warn"
macro_use_extern_crate = "warn"
meta_variable_misuse = "warn"
missing_abi = "warn"
Expand All @@ -78,7 +79,6 @@ unused_qualifications = "warn"

[lints.clippy]
# Clippy groups.
all = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
Expand Down Expand Up @@ -155,4 +155,4 @@ redundant_pub_crate = "allow"
tabs_in_doc_comments = "allow"

[lints.rustdoc]
all = "warn"
all = { level = "warn", priority = -1 }

0 comments on commit 1700e02

Please sign in to comment.