We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce32b5 commit 8f1ebbcCopy full SHA for 8f1ebbc
src/librustdoc/lib.rs
@@ -309,19 +309,19 @@ pub fn opts() -> Vec<RustcOptGroup> {
309
"disable-minification",
310
"Disable minification applied on JS files")
311
}),
312
- unstable("warn", |o| {
+ stable("warn", |o| {
313
o.optmulti("W", "warn", "Set lint warnings", "OPT")
314
315
- unstable("allow", |o| {
+ stable("allow", |o| {
316
o.optmulti("A", "allow", "Set lint allowed", "OPT")
317
318
- unstable("deny", |o| {
+ stable("deny", |o| {
319
o.optmulti("D", "deny", "Set lint denied", "OPT")
320
321
- unstable("forbid", |o| {
+ stable("forbid", |o| {
322
o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
323
324
- unstable("cap-lints", |o| {
+ stable("cap-lints", |o| {
325
o.optmulti(
326
"",
327
"cap-lints",
0 commit comments