@@ -275,6 +275,7 @@ pub mod slow_vector_initialization;
275275pub mod strings;
276276pub mod suspicious_trait_impl;
277277pub mod swap;
278+ pub mod tabs_in_doc_comments;
278279pub mod temporary_assignment;
279280pub mod to_digit_is_some;
280281pub mod trait_bounds;
@@ -717,6 +718,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
717718 & suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL ,
718719 & swap:: ALMOST_SWAPPED ,
719720 & swap:: MANUAL_SWAP ,
721+ & tabs_in_doc_comments:: TABS_IN_DOC_COMMENTS ,
720722 & temporary_assignment:: TEMPORARY_ASSIGNMENT ,
721723 & to_digit_is_some:: TO_DIGIT_IS_SOME ,
722724 & trait_bounds:: TYPE_REPETITION_IN_BOUNDS ,
@@ -947,6 +949,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
947949 store. register_early_pass ( || box utils:: internal_lints:: ClippyLintsInternal ) ;
948950 let enum_variant_name_threshold = conf. enum_variant_name_threshold ;
949951 store. register_early_pass ( move || box enum_variants:: EnumVariantNames :: new ( enum_variant_name_threshold) ) ;
952+ store. register_early_pass ( || box tabs_in_doc_comments:: TabsInDocComments ) ;
950953 store. register_late_pass ( || box unused_self:: UnusedSelf ) ;
951954 store. register_late_pass ( || box mutable_debug_assertion:: DebugAssertWithMutCall ) ;
952955 store. register_late_pass ( || box exit:: Exit ) ;
@@ -1244,6 +1247,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
12441247 LintId :: of( & suspicious_trait_impl:: SUSPICIOUS_OP_ASSIGN_IMPL ) ,
12451248 LintId :: of( & swap:: ALMOST_SWAPPED ) ,
12461249 LintId :: of( & swap:: MANUAL_SWAP ) ,
1250+ LintId :: of( & tabs_in_doc_comments:: TABS_IN_DOC_COMMENTS ) ,
12471251 LintId :: of( & temporary_assignment:: TEMPORARY_ASSIGNMENT ) ,
12481252 LintId :: of( & to_digit_is_some:: TO_DIGIT_IS_SOME ) ,
12491253 LintId :: of( & transmute:: CROSSPOINTER_TRANSMUTE ) ,
@@ -1371,6 +1375,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
13711375 LintId :: of( & returns:: NEEDLESS_RETURN ) ,
13721376 LintId :: of( & returns:: UNUSED_UNIT ) ,
13731377 LintId :: of( & strings:: STRING_LIT_AS_BYTES ) ,
1378+ LintId :: of( & tabs_in_doc_comments:: TABS_IN_DOC_COMMENTS ) ,
13741379 LintId :: of( & to_digit_is_some:: TO_DIGIT_IS_SOME ) ,
13751380 LintId :: of( & try_err:: TRY_ERR ) ,
13761381 LintId :: of( & types:: FN_TO_NUMERIC_CAST ) ,
0 commit comments