Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pmnoxx committed Dec 31, 2021
1 parent d97bc85 commit 9c9f804
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion clippy_lints/src/lib.register_nursery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ store.register_group(true, "clippy::nursery", Some("clippy_nursery"), vec![
LintId::of(missing_const_for_fn::MISSING_CONST_FOR_FN),
LintId::of(mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL),
LintId::of(mutex_atomic::MUTEX_INTEGER),
LintId::of(methods::CLONED_LAST),
LintId::of(non_send_fields_in_send_ty::NON_SEND_FIELDS_IN_SEND_TY),
LintId::of(nonstandard_macro_braces::NONSTANDARD_MACRO_BRACES),
LintId::of(option_if_let_else::OPTION_IF_LET_ELSE),
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/cloned_last.fixed
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// run-rustfix
#![warn(clippy::nursery)]
#![warn(clippy::all)]

fn main() {
#[rustfmt::skip]
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/cloned_last.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// run-rustfix
#![warn(clippy::nursery)]
#![warn(clippy::all)]

fn main() {
#[rustfmt::skip]
Expand Down

0 comments on commit 9c9f804

Please sign in to comment.