.clippy.toml 374 B

1234567891011
  1. # SPDX-License-Identifier: GPL-2.0
  2. msrv = "1.78.0"
  3. check-private-items = true
  4. disallowed-macros = [
  5. # The `clippy::dbg_macro` lint only works with `std::dbg!`, thus we simulate
  6. # it here, see: https://github.com/rust-lang/rust-clippy/issues/11303.
  7. { path = "kernel::dbg", reason = "the `dbg!` macro is intended as a debugging tool", allow-invalid = true },
  8. ]