We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cb4e86 commit b1f3340Copy full SHA for b1f3340
clippy_lints/src/lib.rs
@@ -943,7 +943,8 @@ pub fn register_lints(store: &mut rustc_lint::LintStore, conf: &'static Conf) {
943
store.register_late_pass(move |_| Box::new(non_std_lazy_statics::NonStdLazyStatic::new(conf)));
944
store.register_late_pass(|_| Box::new(manual_option_as_slice::ManualOptionAsSlice::new(conf)));
945
store.register_late_pass(|_| Box::new(single_option_map::SingleOptionMap));
946
- store.register_late_pass(move |_| Box::new(redundant_test_prefix::RedundantTestPrefix));
947
store.register_late_pass(move |_| Box::new(manual_checked_sub::ManualCheckedSub::new(conf)));
+ store.register_late_pass(move |_| Box::new(redundant_test_prefix::RedundantTestPrefix));
948
+
949
// add lints here, do not remove this comment, it's used in `new_lint`
950
}
0 commit comments