Skip to content

Commit 3963e3a

Browse files
committed
Run util/dev update_lints
1 parent f915d65 commit 3963e3a

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,6 @@ All notable changes to this project will be documented in this file.
784784
[`never_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#never_loop
785785
[`new_ret_no_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_ret_no_self
786786
[`new_without_default`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
787-
[`new_without_default_derive`]: https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default_derive
788787
[`no_effect`]: https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
789788
[`non_ascii_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#non_ascii_literal
790789
[`nonminimal_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool

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 290 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

-4
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
336336
"unsafe_vector_initialization",
337337
"the replacement suggested by this lint had substantially different behavior",
338338
);
339-
store.register_removed(
340-
"new_without_default_derive",
341-
"this lint has been moved into new_without_default"
342-
);
343339
// end deprecated lints, do not remove this comment, it’s used in `update_lints`
344340

345341
reg.register_late_lint_pass(box serde_api::Serde);

0 commit comments

Comments
 (0)