Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d2e2f64

Browse files
committedFeb 11, 2021
Merge commit '70c0f90453701e7d6d9b99aaa1fc6a765937b736' into clippyup
2 parents 2918062 + 70c0f90 commit d2e2f64

File tree

80 files changed

+1802
-610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1802
-610
lines changed
 

‎src/tools/clippy/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1877,6 +1877,7 @@ Released 2018-09-13
18771877
[`box_vec`]: https://rust-lang.github.io/rust-clippy/master/index.html#box_vec
18781878
[`boxed_local`]: https://rust-lang.github.io/rust-clippy/master/index.html#boxed_local
18791879
[`builtin_type_shadow`]: https://rust-lang.github.io/rust-clippy/master/index.html#builtin_type_shadow
1880+
[`bytes_nth`]: https://rust-lang.github.io/rust-clippy/master/index.html#bytes_nth
18801881
[`cargo_common_metadata`]: https://rust-lang.github.io/rust-clippy/master/index.html#cargo_common_metadata
18811882
[`case_sensitive_file_extension_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#case_sensitive_file_extension_comparisons
18821883
[`cast_lossless`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
@@ -1955,6 +1956,7 @@ Released 2018-09-13
19551956
[`field_reassign_with_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#field_reassign_with_default
19561957
[`filetype_is_file`]: https://rust-lang.github.io/rust-clippy/master/index.html#filetype_is_file
19571958
[`filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map
1959+
[`filter_map_identity`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_identity
19581960
[`filter_map_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_map_next
19591961
[`filter_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#filter_next
19601962
[`find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#find_map
@@ -2039,6 +2041,7 @@ Released 2018-09-13
20392041
[`manual_async_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
20402042
[`manual_filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_filter_map
20412043
[`manual_find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_find_map
2044+
[`manual_flatten`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_flatten
20422045
[`manual_memcpy`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
20432046
[`manual_non_exhaustive`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
20442047
[`manual_ok_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_or
@@ -2184,6 +2187,7 @@ Released 2018-09-13
21842187
[`same_item_push`]: https://rust-lang.github.io/rust-clippy/master/index.html#same_item_push
21852188
[`search_is_some`]: https://rust-lang.github.io/rust-clippy/master/index.html#search_is_some
21862189
[`self_assignment`]: https://rust-lang.github.io/rust-clippy/master/index.html#self_assignment
2190+
[`semicolon_if_nothing_returned`]: https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned
21872191
[`serde_api_misuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#serde_api_misuse
21882192
[`shadow_reuse`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_reuse
21892193
[`shadow_same`]: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_same

‎src/tools/clippy/clippy_dev/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ edition = "2018"
99
bytecount = "0.6"
1010
clap = "2.33"
1111
flate2 = { version = "1.0.19", optional = true }
12+
fs_extra = { version = "1.2.0", optional = true }
1213
itertools = "0.9"
1314
opener = "0.4"
1415
regex = "1"
@@ -21,5 +22,5 @@ ureq = { version = "2.0.0-rc3", optional = true }
2122
walkdir = "2"
2223

2324
[features]
24-
lintcheck = ["flate2", "serde_json", "tar", "toml", "ureq", "serde"]
25+
lintcheck = ["flate2", "serde_json", "tar", "toml", "ureq", "serde", "fs_extra"]
2526
deny-warnings = []

0 commit comments

Comments
 (0)
Please sign in to comment.