Skip to content

Commit 9605861

Browse files
author
A.A.Abroskin
committed
run ./util/dev update_lints
1 parent 3d9535a commit 9605861

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77

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

10+
<<<<<<< HEAD
1011
[There are 290 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
12+
||||||| merged common ancestors
13+
[There are 291 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
14+
=======
15+
[There are 293 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
16+
>>>>>>> run ./util/dev update_lints
1117
1218
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
1319

clippy_lints/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,8 +565,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
565565

566566
reg.register_lint_group("clippy::all", Some("clippy"), vec![
567567
approx_const::APPROX_CONSTANT,
568-
assert_checks::EXPLICIT_TRUE,
569568
assert_checks::EXPLICIT_FALSE,
569+
assert_checks::EXPLICIT_TRUE,
570570
assign_ops::ASSIGN_OP_PATTERN,
571571
assign_ops::MISREFACTORED_ASSIGN_OP,
572572
attrs::DEPRECATED_CFG_ATTR,
@@ -944,8 +944,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
944944

945945
reg.register_lint_group("clippy::correctness", Some("clippy_correctness"), vec![
946946
approx_const::APPROX_CONSTANT,
947-
assert_checks::EXPLICIT_TRUE,
948947
assert_checks::EXPLICIT_FALSE,
948+
assert_checks::EXPLICIT_TRUE,
949949
attrs::DEPRECATED_SEMVER,
950950
attrs::USELESS_ATTRIBUTE,
951951
bit_mask::BAD_BIT_MASK,

0 commit comments

Comments
 (0)