I downloaded the rust 1.3.0 distribution; rustc -W help says, in part:
Available lint options:
-W <foo> Warn about <foo>
-A <foo> Allow <foo>
-D <foo> Deny <foo>
-F <foo> Forbid <foo> (deny, and deny all overrides)
The documentation here for -F suggests to me that -F all would be acceptable (perhaps -W all or -A all too, perhaps). But that doesn't seem to work; rustc says:
error: unknown forbid flag: all
error: aborting due to previous error
Either adding the all group or clarifying the help output around -F would be most welcome. (It's also not immediately clear what the difference between -D and -F is, especially since -D would apparently override the presence of an earlier -F...?)
I downloaded the rust 1.3.0 distribution;
rustc -W helpsays, in part:The documentation here for
-Fsuggests to me that-F allwould be acceptable (perhaps-W allor-A alltoo, perhaps). But that doesn't seem to work;rustcsays:Either adding the
allgroup or clarifying the help output around-Fwould be most welcome. (It's also not immediately clear what the difference between-Dand-Fis, especially since-Dwould apparently override the presence of an earlier-F...?)