-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Support --cap-lints in rustdoc. #5765
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
I'm not sure if Also, I just wanted to verify that there is still a problem with the |
@bors: r+ thanks! |
📌 Commit c3b477d has been approved by |
Support --cap-lints in rustdoc. Fixes #5749.
☀️ Test successful - status-appveyor, status-travis |
@ehuss Yes, this won't fix the |
[beta] Disable lints in rustdoc The lint handling in rustdoc 1.28 is still incomplete so I think it would be best to disable it for the stable release. The main thing that's missing is that cargo doesn't cap lints for dependencies. This was fixed in master by #52354 and rust-lang/cargo#5765 but they haven't been backported. Additionally rustdoc is still emitting lints that are not on its whitelist #51661 (comment). cc. @rust-lang/rustdoc
[beta] Disable lints in rustdoc The lint handling in rustdoc 1.28 is still incomplete so I think it would be best to disable it for the stable release. The main thing that's missing is that cargo doesn't cap lints for dependencies. This was fixed in master by #52354 and rust-lang/cargo#5765 but they haven't been backported. Additionally rustdoc is still emitting lints that are not on its whitelist rust-lang/rust#51661 (comment). cc. @rust-lang/rustdoc
Fixes #5749.