Files
aha/clippy.toml
T
2025-11-22 23:27:14 +08:00

12 lines
347 B
TOML

disallowed-types = [
{ path = "once_cell::sync::Lazy", reason = "Please use `std::sync::LazyLock` instead." },
]
disallowed-macros = [
{ path = "lazy_static::lazy_static", reason = "Please use `std::sync::LazyLock` instead." },
]
too-many-arguments-threshold = 20
upper-case-acronyms-aggressive = false
enum-variant-size-threshold = 200