Skip to content

Commit 878dd0b

Browse files
committed
Auto merge of #52354 - QuietMisdreavus:rustdoc-lints, r=GuillaumeGomez
stabilize lint handling in rustdoc When #51732 added CLI flags to manipulate lints in rustdoc, they were added as unstable flags. This made sense as they were new additions, but since they mirrored the flags that rustc has, it's worth considering them to not need an unstable period. Stabilizing them also provides the opportunity for a critical fix: allowing Cargo to pass `--cap-lints allow` when documenting dependencies, the same as when it compiles them. r? @rust-lang/rustdoc
2 parents 509cbf3 + 8f1ebbc commit 878dd0b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/librustdoc/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -310,19 +310,19 @@ pub fn opts() -> Vec<RustcOptGroup> {
310310
"disable-minification",
311311
"Disable minification applied on JS files")
312312
}),
313-
unstable("warn", |o| {
313+
stable("warn", |o| {
314314
o.optmulti("W", "warn", "Set lint warnings", "OPT")
315315
}),
316-
unstable("allow", |o| {
316+
stable("allow", |o| {
317317
o.optmulti("A", "allow", "Set lint allowed", "OPT")
318318
}),
319-
unstable("deny", |o| {
319+
stable("deny", |o| {
320320
o.optmulti("D", "deny", "Set lint denied", "OPT")
321321
}),
322-
unstable("forbid", |o| {
322+
stable("forbid", |o| {
323323
o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
324324
}),
325-
unstable("cap-lints", |o| {
325+
stable("cap-lints", |o| {
326326
o.optmulti(
327327
"",
328328
"cap-lints",

0 commit comments

Comments
 (0)