Files
aha/clippy.toml
T

12 lines
347 B
TOML
Raw Normal View History

2025-10-15 21:03:49 +08:00
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." },
]
2025-11-22 23:27:14 +08:00
too-many-arguments-threshold = 20
2025-10-15 21:03:49 +08:00
upper-case-acronyms-aggressive = false
2025-11-22 23:27:14 +08:00
enum-variant-size-threshold = 200