]> git.lizzy.rs Git - rust.git/commit - src/tools/rust-analyzer
Auto merge of #85788 - rylev:force-warns, r=nikomatsakis
authorbors <bors@rust-lang.org>
Fri, 4 Jun 2021 13:31:51 +0000 (13:31 +0000)
committerbors <bors@rust-lang.org>
Fri, 4 Jun 2021 13:31:51 +0000 (13:31 +0000)
commit595088d602049d821bf9a217f2d79aea40715208
tree2b3361a54d36e5381071da8bd4a77207de2c4ec3
parent289ada5ed41fd1b9a3ffe2b694e6e73079528587
parent896898ed43bb776db830717755bcccc404c20277
Auto merge of #85788 - rylev:force-warns, r=nikomatsakis

Support for force-warns

Implements https://github.com/rust-lang/rust/issues/85512.

This PR adds a new command line option `force-warns` which will force the provided lints to warn even if they are allowed by some other mechanism such as `#![allow(warnings)]`.

Some remaining issues:
* https://github.com/rust-lang/rust/issues/85512 mentions that `force-warns` should also be capable of taking lint groups instead of individual lints. This is not implemented.
* If a lint has a higher warning level than `warn`, this will cause that lint to warn instead. We probably want to allow the lint to error if it is set to a higher lint and is not allowed somewhere else.
* One test is currently ignored because it's not working - when a deny-by-default lint is allowed, it does not currently warn under `force-warns`. I'm not sure why, but I wanted to get this in before the weekend.

r? `@nikomatsakis`
compiler/rustc_lint/src/context.rs
compiler/rustc_session/src/config.rs
compiler/rustc_session/src/options.rs
src/librustdoc/config.rs
src/librustdoc/lib.rs