Files
fish-shell/clippy.toml
Mahmoud Al-Qudsi e37cad7fef Add disallowed-methods to clippy.toml
We should probably be using `disallowed-methods` more; this is one I had
locally before `clippy.toml` was included in the repo.
2026-06-08 12:28:48 -05:00

7 lines
226 B
TOML

allow-print-in-tests = true
disallowed-methods = [
# Not allowed to use libc::setlocale() directly, need to use the wrappers
# in src/locale.rs which takes a lock for the duration of the call.
"libc::setlocale",
]