File tree 3 files changed +4
-1
lines changed 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -764,6 +764,7 @@ All notable changes to this project will be documented in this file.
764
764
[ `needless_bool` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_bool
765
765
[ `needless_borrow` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_borrow
766
766
[ `needless_borrowed_reference` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_borrowed_reference
767
+ [ `needless_collect` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_collect
767
768
[ `needless_continue` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_continue
768
769
[ `needless_lifetimes` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_lifetimes
769
770
[ `needless_pass_by_value` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#needless_pass_by_value
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ We are currently in the process of discussing Clippy 1.0 via the RFC process in
9
9
10
10
A collection of lints to catch common mistakes and improve your [ Rust] ( https://github.com/rust-lang/rust ) code.
11
11
12
- [ There are 275 lints included in this crate!] ( https://rust-lang-nursery.github.io/rust-clippy/master/index.html )
12
+ [ There are 276 lints included in this crate!] ( https://rust-lang-nursery.github.io/rust-clippy/master/index.html )
13
13
14
14
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~ annoy~~ help you:
15
15
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ cargo build --features debugging
9
9
cargo test --features debugging
10
10
cd clippy_lints && cargo test && cd ..
11
11
cd rustc_tools_util && cargo test && cd ..
12
+ # check that the lint lists are up-to-date
13
+ ./util/update_lints.py -c
12
14
mkdir -p ~ /rust/cargo/bin
13
15
cp target/debug/cargo-clippy ~ /rust/cargo/bin/cargo-clippy
14
16
cp target/debug/clippy-driver ~ /rust/cargo/bin/clippy-driver
You can’t perform that action at this time.
0 commit comments