2024-02-08 13:24:42 -06:00
|
|
|
[package]
|
|
|
|
name = "pass"
|
|
|
|
version = "0.1.0"
|
|
|
|
publish = false
|
|
|
|
|
2024-06-13 05:30:48 -05:00
|
|
|
[lints.rust]
|
|
|
|
# Warnings does not conflict with any group or lint
|
|
|
|
warnings = "deny"
|
|
|
|
# Groups & lints at the same level do not conflict
|
|
|
|
rust_2018_idioms = "warn"
|
|
|
|
unsafe_code = "warn"
|
|
|
|
|
2024-02-08 13:24:42 -06:00
|
|
|
[lints.clippy]
|
|
|
|
pedantic = { level = "warn", priority = -1 }
|
|
|
|
style = { level = "warn", priority = 1 }
|
|
|
|
similar_names = "allow"
|
|
|
|
dbg_macro = { level = "warn", priority = 2 }
|