Skip to content

Commit

Permalink
Merge pull request #154 from Grinkers/lint_priority
Browse files Browse the repository at this point in the history
Set priority level of lints (1.78)
  • Loading branch information
naomijub authored Jun 7, 2024
2 parents bc5bc8f + cf40039 commit e5f341b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ edition = "2021"
resolver = "2"

[lints.rust]
rust_2018_idioms = "warn"
rust_2018_idioms = { level = "warn", priority = -1 }
future-incompatible = "warn"
unsafe_code = "deny"

[lints.clippy]
pedantic = "warn"
nursery = "warn"
inline_always = "allow"
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }


[features]
default = ["sets", "std"]
Expand Down

0 comments on commit e5f341b

Please sign in to comment.