You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose we have a lint section that looks like this:
[lints.clippy]
missing_docs = "warn"
Then, clippy will emit:
warning[E0602]: unknown lint: `clippy::missing_docs`
|
= help: did you mean: `clippy::erasing_op`
= note: requested on the command line with `-W clippy::missing_docs`
= note: `#[warn(unknown_lints)]` on by default
Instead, clippy could check the lints provided by Rust, and provide a more helpful suggestion: that the lint is actually a Rust lint.
Description
Suppose we have a lint section that looks like this:
Then, clippy will emit:
Instead, clippy could check the lints provided by Rust, and provide a more helpful suggestion: that the lint is actually a Rust lint.
Version
Additional Labels
No response
The text was updated successfully, but these errors were encountered: