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 d0edc98 commit aecefa2Copy full SHA for aecefa2
clippy_lints/src/lib.rs
@@ -575,6 +575,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
575
reg.register_late_lint_pass(box missing_const_for_fn::MissingConstForFn);
576
reg.register_late_lint_pass(box transmuting_null::TransmutingNull);
577
reg.register_late_lint_pass(box path_buf_push_overwrite::PathBufPushOverwrite);
578
+ reg.register_late_lint_pass(box checked_conversions::CheckedConversions);
579
580
reg.register_lint_group("clippy::restriction", Some("clippy_restriction"), vec![
581
arithmetic::FLOAT_ARITHMETIC,
0 commit comments