stabilize lint handling in rustdoc
This commit is contained in:
parent
bce32b532d
commit
8f1ebbc03c
1 changed files with 5 additions and 5 deletions
|
@ -309,19 +309,19 @@ pub fn opts() -> Vec<RustcOptGroup> {
|
||||||
"disable-minification",
|
"disable-minification",
|
||||||
"Disable minification applied on JS files")
|
"Disable minification applied on JS files")
|
||||||
}),
|
}),
|
||||||
unstable("warn", |o| {
|
stable("warn", |o| {
|
||||||
o.optmulti("W", "warn", "Set lint warnings", "OPT")
|
o.optmulti("W", "warn", "Set lint warnings", "OPT")
|
||||||
}),
|
}),
|
||||||
unstable("allow", |o| {
|
stable("allow", |o| {
|
||||||
o.optmulti("A", "allow", "Set lint allowed", "OPT")
|
o.optmulti("A", "allow", "Set lint allowed", "OPT")
|
||||||
}),
|
}),
|
||||||
unstable("deny", |o| {
|
stable("deny", |o| {
|
||||||
o.optmulti("D", "deny", "Set lint denied", "OPT")
|
o.optmulti("D", "deny", "Set lint denied", "OPT")
|
||||||
}),
|
}),
|
||||||
unstable("forbid", |o| {
|
stable("forbid", |o| {
|
||||||
o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
|
o.optmulti("F", "forbid", "Set lint forbidden", "OPT")
|
||||||
}),
|
}),
|
||||||
unstable("cap-lints", |o| {
|
stable("cap-lints", |o| {
|
||||||
o.optmulti(
|
o.optmulti(
|
||||||
"",
|
"",
|
||||||
"cap-lints",
|
"cap-lints",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue