Skip to content

Commit 7a73e09

Browse files
author
bing
committed
Update lints
1 parent 7a4d071 commit 7a73e09

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

clippy_lints/src/lib.register_all.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
278278
LintId::of(single_component_path_imports::SINGLE_COMPONENT_PATH_IMPORTS),
279279
LintId::of(size_of_in_element_count::SIZE_OF_IN_ELEMENT_COUNT),
280280
LintId::of(slow_vector_initialization::SLOW_VECTOR_INITIALIZATION),
281-
LintId::of(stable_sort_primitive::STABLE_SORT_PRIMITIVE),
282281
LintId::of(strings::STRING_FROM_UTF8_AS_BYTES),
283282
LintId::of(strlen_on_c_strings::STRLEN_ON_C_STRINGS),
284283
LintId::of(suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL),

clippy_lints/src/lib.register_pedantic.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ store.register_group(true, "clippy::pedantic", Some("clippy_pedantic"), vec![
8282
LintId::of(ref_option_ref::REF_OPTION_REF),
8383
LintId::of(return_self_not_must_use::RETURN_SELF_NOT_MUST_USE),
8484
LintId::of(semicolon_if_nothing_returned::SEMICOLON_IF_NOTHING_RETURNED),
85+
LintId::of(stable_sort_primitive::STABLE_SORT_PRIMITIVE),
8586
LintId::of(strings::STRING_ADD_ASSIGN),
8687
LintId::of(trait_bounds::TRAIT_DUPLICATION_IN_BOUNDS),
8788
LintId::of(trait_bounds::TYPE_REPETITION_IN_BOUNDS),

clippy_lints/src/lib.register_perf.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ store.register_group(true, "clippy::perf", Some("clippy_perf"), vec![
2424
LintId::of(misc::CMP_OWNED),
2525
LintId::of(redundant_clone::REDUNDANT_CLONE),
2626
LintId::of(slow_vector_initialization::SLOW_VECTOR_INITIALIZATION),
27-
LintId::of(stable_sort_primitive::STABLE_SORT_PRIMITIVE),
2827
LintId::of(types::BOX_COLLECTION),
2928
LintId::of(types::REDUNDANT_ALLOCATION),
3029
LintId::of(vec::USELESS_VEC),

0 commit comments

Comments
 (0)