X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=README.md;h=222b81023a7705aa87847ea6fd913d50a380036c;hb=955a25ee7db234a8ab697176a433070702aabe59;hp=5ab3ab128a84d28ccc5335e36c25963863664530;hpb=8fbf02c8fb3c87c25ec364aa5d43f47d8c3b9c87;p=rust.git diff --git a/README.md b/README.md index 5ab3ab128a8..222b81023a7 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code. -[There are 362 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html) +[There are over 350 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html) We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you: @@ -83,11 +83,11 @@ cargo clippy #### Automatically applying Clippy suggestions -Some Clippy lint suggestions can be automatically applied by `cargo fix`. +Clippy can automatically apply some lint suggestions. Note that this is still experimental and only supported on the nightly channel: ```terminal -cargo fix -Z unstable-options --clippy +cargo clippy --fix -Z unstable-options ``` ### Running Clippy from the command line without installing it