zsw/clippy.toml

15 lines
386 B
TOML

absolute-paths-allowed-crates = [
# `tokio` mirrors a lot of `std`'s api, so we want to explicitly mention when
# using `tokio`,
"tokio",
# `tracing_subscriber::fmt` makes this ambiguous with `std::fmt`
"tracing_subscriber",
# Crate consists of only nondescript modules
"naga_oil",
# Some modules are named generically, so we can't import them (e.g. `egui::util`)
"egui",
]