@@ -170,6 +170,7 @@ mod collapsible_if;
170
170
mod comparison_chain;
171
171
mod copies;
172
172
mod copy_iterator;
173
+ mod create_dir;
173
174
mod dbg_macro;
174
175
mod default_trait_access;
175
176
mod dereference;
@@ -513,6 +514,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
513
514
& copies:: MATCH_SAME_ARMS ,
514
515
& copies:: SAME_FUNCTIONS_IN_IF_CONDITION ,
515
516
& copy_iterator:: COPY_ITERATOR ,
517
+ & create_dir:: CREATE_DIR ,
516
518
& dbg_macro:: DBG_MACRO ,
517
519
& default_trait_access:: DEFAULT_TRAIT_ACCESS ,
518
520
& dereference:: EXPLICIT_DEREF_METHODS ,
@@ -1044,6 +1046,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1044
1046
store. register_early_pass ( || box items_after_statements:: ItemsAfterStatements ) ;
1045
1047
store. register_early_pass ( || box precedence:: Precedence ) ;
1046
1048
store. register_early_pass ( || box needless_continue:: NeedlessContinue ) ;
1049
+ store. register_late_pass ( || box create_dir:: CreateDir ) ;
1047
1050
store. register_early_pass ( || box needless_arbitrary_self_type:: NeedlessArbitrarySelfType ) ;
1048
1051
store. register_early_pass ( || box redundant_static_lifetimes:: RedundantStaticLifetimes ) ;
1049
1052
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:
1107
1110
LintId :: of( & arithmetic:: FLOAT_ARITHMETIC ) ,
1108
1111
LintId :: of( & arithmetic:: INTEGER_ARITHMETIC ) ,
1109
1112
LintId :: of( & as_conversions:: AS_CONVERSIONS ) ,
1113
+ LintId :: of( & create_dir:: CREATE_DIR ) ,
1110
1114
LintId :: of( & dbg_macro:: DBG_MACRO ) ,
1111
1115
LintId :: of( & else_if_without_else:: ELSE_IF_WITHOUT_ELSE ) ,
1112
1116
LintId :: of( & exit:: EXIT ) ,
0 commit comments