-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add --print=crate-root-lint-levels
to retrieve lints levels
#833
Comments
This issue is not meant to be used for technical discussion. There is a Zulip stream for that. Use this issue to leave procedural comments, such as volunteering to review, indicating that you second the proposal (or third, etc), or raising a concern that you would like to be addressed. Concerns or objections to the proposal should be discussed on Zulip and formally registered here by adding a comment with the following syntax:
Concerns can be lifted with:
See documentation at https://forge.rust-lang.org cc @rust-lang/compiler |
Note that we've not committed to this being how we want to handle lints within Cargo. |
--print=lint-levels
to retrieve lints levels--print=crate-root-lint-levels
to retrieve lints levels
@rustbot second |
@rustbot label -final-comment-period +major-change-accepted |
…eyouxu Add unstable `--print=crate-root-lint-levels` This PR implements `--print=crate-root-lint-levels` from MCP 833 rust-lang/compiler-team#833. Tracking issue: rust-lang#139180 Best reviewed commit by commit.
…eyouxu Add unstable `--print=crate-root-lint-levels` This PR implements `--print=crate-root-lint-levels` from MCP 833 rust-lang/compiler-team#833. Tracking issue: rust-lang#139180 Best reviewed commit by commit.
Rollup merge of rust-lang#139184 - Urgau:crate-root-lint-levels, r=jieyouxu Add unstable `--print=crate-root-lint-levels` This PR implements `--print=crate-root-lint-levels` from MCP 833 rust-lang/compiler-team#833. Tracking issue: rust-lang#139180 Best reviewed commit by commit.
Proposal
Add a new unstable
--print
variantcrate-root-lint-levels
(formally proposed aslint-levels
) (--print=crate-root-lint-levels -Zunstable-options
) that would print out all the lints and their associated levels (allow
,warn
,deny
,forbid
) based on the regular Rust rules at crate root, that is:-W
,-A
, ...)#![allow]
,#![warn]
, ...)warnings
lint groupThe output format would be
LINT_NAME=LINT_LEVEL
, e.g.:Motivation
Exposing more stuff for external tools. 😄
In particular, exposing the actual lint level for lints could help external tools (like Cargo) extend some built-ins lints, e.g.
unknown_lints
for Cargo[lints]
table1, which would not need to try to compute the lint level, which require knowing the default, interpreting rustc args (and dealing withRUSTFLAGS
), ... all of which are non-trivial.Delegating all that work to the source of truth (rustc), makes it nearly "trivial" for those tools to know the lint level and re-use it.
Mentors or Reviewers
My-self for the work.
Process
The main points of the Major Change Process are as follows:
@rustbot second
.-C flag
, then full team check-off is required.@rfcbot fcp merge
on either the MCP or the PR.You can read more about Major Change Proposals on forge.
Comments
This issue is not meant to be used for technical discussion. There is a Zulip stream for that. Use this issue to leave procedural comments, such as volunteering to review, indicating that you second the proposal (or third, etc), or raising a concern that you would like to be addressed.
Footnotes
Cargo has not committed to using this new flag, it should be kept as an example, but it's still a good motivation to try out the flag ↩
The text was updated successfully, but these errors were encountered: