24 lines
465 B
TOML
24 lines
465 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "warn"
|
|
missing_docs = "warn"
|
|
|
|
[workspace.lints.clippy]
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
print_stdout = "warn"
|
|
print_stderr = "warn"
|
|
|
|
pedantic = { level = "warn", priority = -1 }
|
|
clone_on_ref_ptr = "warn"
|
|
|
|
todo = "warn"
|
|
unimplemented = "warn"
|
|
|
|
# Pedantic exceptions (too noisy)
|
|
module_name_repetitions = "allow"
|
|
must_use_candidate = "allow"
|
|
missing_errors_doc = "allow" |