Skip to content

Commit

Permalink
stabilize lint handling in rustdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
QuietMisdreavus committed Jul 13, 2018
1 parent bce32b5 commit 8f1ebbc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,19 +309,19 @@ pub fn opts() -> Vec<RustcOptGroup> {
"disable-minification",
"Disable minification applied on JS files")
}),
unstable("warn", |o| {
stable("warn", |o| {
o.optmulti("W", "warn", "Set lint warnings", "OPT")
}),
unstable("allow", |o| {
stable("allow", |o| {
o.optmulti("A", "allow", "Set lint allowed", "OPT")
}),
unstable("deny", |o| {
stable("deny", |o| {
o.optmulti("D", "deny", "Set lint denied", "OPT")
}),
unstable("forbid", |o| {
stable("forbid", |o| {
o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
}),
unstable("cap-lints", |o| {
stable("cap-lints", |o| {
o.optmulti(
"",
"cap-lints",
Expand Down

0 comments on commit 8f1ebbc

Please sign in to comment.