@@ -158,7 +158,6 @@ mod atomic_ordering;
158
158
mod attrs;
159
159
mod await_holding_lock;
160
160
mod bit_mask;
161
- mod disallowed_name;
162
161
mod blocks_in_if_conditions;
163
162
mod booleans;
164
163
mod bytecount;
@@ -173,6 +172,7 @@ mod dbg_macro;
173
172
mod default_trait_access;
174
173
mod dereference;
175
174
mod derive;
175
+ mod disallowed_name;
176
176
mod doc;
177
177
mod double_comparison;
178
178
mod double_parens;
@@ -494,7 +494,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
494
494
& bit_mask:: BAD_BIT_MASK ,
495
495
& bit_mask:: INEFFECTIVE_BIT_MASK ,
496
496
& bit_mask:: VERBOSE_BIT_MASK ,
497
- & disallowed_name:: DISALLOWED_NAME ,
498
497
& blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ,
499
498
& booleans:: LOGIC_BUG ,
500
499
& booleans:: NONMINIMAL_BOOL ,
@@ -516,6 +515,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
516
515
& derive:: DERIVE_ORD_XOR_PARTIAL_ORD ,
517
516
& derive:: EXPL_IMPL_CLONE_ON_COPY ,
518
517
& derive:: UNSAFE_DERIVE_DESERIALIZE ,
518
+ & disallowed_name:: DISALLOWED_NAME ,
519
519
& doc:: DOC_MARKDOWN ,
520
520
& doc:: MISSING_ERRORS_DOC ,
521
521
& doc:: MISSING_SAFETY_DOC ,
@@ -1235,7 +1235,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1235
1235
LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
1236
1236
LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1237
1237
LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1238
- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1239
1238
LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
1240
1239
LintId :: of( & booleans:: LOGIC_BUG ) ,
1241
1240
LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
@@ -1246,6 +1245,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1246
1245
LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
1247
1246
LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
1248
1247
LintId :: of( & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
1248
+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1249
1249
LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
1250
1250
LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
1251
1251
LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
@@ -1492,10 +1492,10 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1492
1492
LintId :: of( & attrs:: BLANKET_CLIPPY_RESTRICTION_LINTS ) ,
1493
1493
LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
1494
1494
LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1495
- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1496
1495
LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
1497
1496
LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
1498
1497
LintId :: of( & comparison_chain:: COMPARISON_CHAIN ) ,
1498
+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1499
1499
LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
1500
1500
LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
1501
1501
LintId :: of( & enum_variants:: ENUM_VARIANT_NAMES ) ,
0 commit comments