@@ -170,6 +170,7 @@ mod collapsible_if;
170170mod comparison_chain;
171171mod copies;
172172mod copy_iterator;
173+ mod create_dir;
173174mod dbg_macro;
174175mod default_trait_access;
175176mod dereference;
@@ -513,6 +514,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
513514 & copies:: MATCH_SAME_ARMS ,
514515 & copies:: SAME_FUNCTIONS_IN_IF_CONDITION ,
515516 & copy_iterator:: COPY_ITERATOR ,
517+ & create_dir:: CREATE_DIR ,
516518 & dbg_macro:: DBG_MACRO ,
517519 & default_trait_access:: DEFAULT_TRAIT_ACCESS ,
518520 & dereference:: EXPLICIT_DEREF_METHODS ,
@@ -1044,6 +1046,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
10441046 store. register_early_pass ( || box items_after_statements:: ItemsAfterStatements ) ;
10451047 store. register_early_pass ( || box precedence:: Precedence ) ;
10461048 store. register_early_pass ( || box needless_continue:: NeedlessContinue ) ;
1049+ store. register_late_pass ( || box create_dir:: CreateDir ) ;
10471050 store. register_early_pass ( || box needless_arbitrary_self_type:: NeedlessArbitrarySelfType ) ;
10481051 store. register_early_pass ( || box redundant_static_lifetimes:: RedundantStaticLifetimes ) ;
10491052 store. register_late_pass ( || box cargo_common_metadata:: CargoCommonMetadata ) ;
@@ -1107,6 +1110,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11071110 LintId :: of( & arithmetic:: FLOAT_ARITHMETIC ) ,
11081111 LintId :: of( & arithmetic:: INTEGER_ARITHMETIC ) ,
11091112 LintId :: of( & as_conversions:: AS_CONVERSIONS ) ,
1113+ LintId :: of( & create_dir:: CREATE_DIR ) ,
11101114 LintId :: of( & dbg_macro:: DBG_MACRO ) ,
11111115 LintId :: of( & else_if_without_else:: ELSE_IF_WITHOUT_ELSE ) ,
11121116 LintId :: of( & exit:: EXIT ) ,
0 commit comments