-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Map our diagnostics to rustc and clippy's ones #14990
Conversation
Huh, I canceled an old pending review which caused it to be posted? 🤨 |
I ended up ignoring all lints in the proc macros since I think the infrastructure for handling them correctly is not there yet, and false negatives are generally better than false positives. r? @Veykril |
Let's merge this now to find its potential problems in nightly releases. |
☀️ Test successful - checks-actions |
oh sorry, I think I missed your ping back then 😅 |
That's fine :) I was just not super confident about the changes in |
And control their severity by lint attributes
#[allow]
,#[deny]
and ... .It doesn't work with proc macros and I would like to fix that before merge but I don't know how to do it.