We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
readon
reason
1 parent 0086057 commit 402e239Copy full SHA for 402e239
1 file changed
clippy.toml
@@ -39,9 +39,9 @@ disallowed-methods = [
39
# but we cannot disable them all here (because of e.g. https://github.com/rust-lang/rust-clippy/issues/10406)
40
# so we do that in `clipppy_wasm.toml` instead.
41
42
- { path = "std::env::temp_dir", readon = "Use the tempfile crate instead" },
+ { path = "std::env::temp_dir", reason = "Use the tempfile crate instead" },
43
{ path = "std::panic::catch_unwind", reason = "We compile with `panic = abort" },
44
- { path = "std::thread::spawn", readon = "Use `std::thread::Builder` and name the thread" },
+ { path = "std::thread::spawn", reason = "Use `std::thread::Builder` and name the thread" },
45
]
46
47
# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names
0 commit comments