We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986fdef commit 6a100ebCopy full SHA for 6a100eb
CHANGELOG.md
@@ -679,8 +679,10 @@ All notable changes to this project will be documented in this file.
679
[`expect_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
680
[`expl_impl_clone_on_copy`]: https://rust-lang.github.io/rust-clippy/master/index.html#expl_impl_clone_on_copy
681
[`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
683
[`explicit_into_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
684
[`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
686
[`explicit_write`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_write
687
[`extend_from_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_from_slice
688
[`extra_unused_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
README.md
@@ -7,7 +7,7 @@
7
8
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
9
10
-[There are 291 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
+[There are 293 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
11
12
We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
13
clippy_lints/src/lib.rs
@@ -562,8 +562,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
562
563
reg.register_lint_group("clippy::all", Some("clippy"), vec![
564
approx_const::APPROX_CONSTANT,
565
- assert_checks::EXPLICIT_TRUE,
566
assert_checks::EXPLICIT_FALSE,
+ assert_checks::EXPLICIT_TRUE,
567
assign_ops::ASSIGN_OP_PATTERN,
568
assign_ops::MISREFACTORED_ASSIGN_OP,
569
attrs::DEPRECATED_CFG_ATTR,
@@ -943,8 +943,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
943
944
reg.register_lint_group("clippy::correctness", Some("clippy_correctness"), vec![
945
946
947
948
attrs::DEPRECATED_SEMVER,
949
attrs::USELESS_ATTRIBUTE,
950
bit_mask::BAD_BIT_MASK,
0 commit comments