@@ -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;
@@ -492,7 +492,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
492
492
& bit_mask:: BAD_BIT_MASK ,
493
493
& bit_mask:: INEFFECTIVE_BIT_MASK ,
494
494
& bit_mask:: VERBOSE_BIT_MASK ,
495
- & disallowed_name:: DISALLOWED_NAME ,
496
495
& blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ,
497
496
& booleans:: LOGIC_BUG ,
498
497
& booleans:: NONMINIMAL_BOOL ,
@@ -514,6 +513,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
514
513
& derive:: DERIVE_ORD_XOR_PARTIAL_ORD ,
515
514
& derive:: EXPL_IMPL_CLONE_ON_COPY ,
516
515
& derive:: UNSAFE_DERIVE_DESERIALIZE ,
516
+ & disallowed_name:: DISALLOWED_NAME ,
517
517
& doc:: DOC_MARKDOWN ,
518
518
& doc:: MISSING_ERRORS_DOC ,
519
519
& doc:: MISSING_SAFETY_DOC ,
@@ -1227,7 +1227,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1227
1227
LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
1228
1228
LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1229
1229
LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1230
- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1231
1230
LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
1232
1231
LintId :: of( & booleans:: LOGIC_BUG ) ,
1233
1232
LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
@@ -1238,6 +1237,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1238
1237
LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
1239
1238
LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
1240
1239
LintId :: of( & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
1240
+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1241
1241
LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
1242
1242
LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
1243
1243
LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
@@ -1480,10 +1480,10 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1480
1480
LintId :: of( & attrs:: BLANKET_CLIPPY_RESTRICTION_LINTS ) ,
1481
1481
LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
1482
1482
LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1483
- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1484
1483
LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
1485
1484
LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
1486
1485
LintId :: of( & comparison_chain:: COMPARISON_CHAIN ) ,
1486
+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
1487
1487
LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
1488
1488
LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
1489
1489
LintId :: of( & enum_variants:: ENUM_VARIANT_NAMES ) ,
0 commit comments