Skip to content

Commit 8f1ebbc

Browse files
stabilize lint handling in rustdoc
1 parent bce32b5 commit 8f1ebbc

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
@@ -309,19 +309,19 @@ pub fn opts() -> Vec<RustcOptGroup> {
309309
"disable-minification",
310310
"Disable minification applied on JS files")
311311
}),
312-
unstable("warn", |o| {
312+
stable("warn", |o| {
313313
o.optmulti("W", "warn", "Set lint warnings", "OPT")
314314
}),
315-
unstable("allow", |o| {
315+
stable("allow", |o| {
316316
o.optmulti("A", "allow", "Set lint allowed", "OPT")
317317
}),
318-
unstable("deny", |o| {
318+
stable("deny", |o| {
319319
o.optmulti("D", "deny", "Set lint denied", "OPT")
320320
}),
321-
unstable("forbid", |o| {
321+
stable("forbid", |o| {
322322
o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
323323
}),
324-
unstable("cap-lints", |o| {
324+
stable("cap-lints", |o| {
325325
o.optmulti(
326326
"",
327327
"cap-lints",

0 commit comments

Comments
 (0)