Skip to content

Commit 6a100eb

Browse files
author
A.A.Abroskin
committed
run ./util/dev update_lints
1 parent 986fdef commit 6a100eb

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -679,8 +679,10 @@ All notable changes to this project will be documented in this file.
679679
[`expect_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
680680
[`expl_impl_clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#expl_impl_clone_on_copy
681681
[`explicit_counter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_counter_loop
682+
[`explicit_false`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_false
682683
[`explicit_into_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
683684
[`explicit_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop
685+
[`explicit_true`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_true
684686
[`explicit_write`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_write
685687
[`extend_from_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_from_slice
686688
[`extra_unused_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
99

10-
[There are 291 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
10+
[There are 293 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
1111

1212
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
1313

clippy_lints/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
562562

563563
reg.register_lint_group("clippy::all", Some("clippy"), vec![
564564
approx_const::APPROX_CONSTANT,
565-
assert_checks::EXPLICIT_TRUE,
566565
assert_checks::EXPLICIT_FALSE,
566+
assert_checks::EXPLICIT_TRUE,
567567
assign_ops::ASSIGN_OP_PATTERN,
568568
assign_ops::MISREFACTORED_ASSIGN_OP,
569569
attrs::DEPRECATED_CFG_ATTR,
@@ -943,8 +943,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
943943

944944
reg.register_lint_group("clippy::correctness", Some("clippy_correctness"), vec![
945945
approx_const::APPROX_CONSTANT,
946-
assert_checks::EXPLICIT_TRUE,
947946
assert_checks::EXPLICIT_FALSE,
947+
assert_checks::EXPLICIT_TRUE,
948948
attrs::DEPRECATED_SEMVER,
949949
attrs::USELESS_ATTRIBUTE,
950950
bit_mask::BAD_BIT_MASK,

0 commit comments

Comments
 (0)