@@ -158,7 +158,6 @@ mod atomic_ordering;
158158mod attrs;
159159mod await_holding_lock;
160160mod bit_mask;
161- mod disallowed_name;
162161mod blocks_in_if_conditions;
163162mod booleans;
164163mod bytecount;
@@ -173,6 +172,7 @@ mod dbg_macro;
173172mod default_trait_access;
174173mod dereference;
175174mod derive;
175+ mod disallowed_name;
176176mod doc;
177177mod double_comparison;
178178mod double_parens;
@@ -492,7 +492,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
492492 & bit_mask:: BAD_BIT_MASK ,
493493 & bit_mask:: INEFFECTIVE_BIT_MASK ,
494494 & bit_mask:: VERBOSE_BIT_MASK ,
495- & disallowed_name:: DISALLOWED_NAME ,
496495 & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ,
497496 & booleans:: LOGIC_BUG ,
498497 & booleans:: NONMINIMAL_BOOL ,
@@ -514,6 +513,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
514513 & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ,
515514 & derive:: EXPL_IMPL_CLONE_ON_COPY ,
516515 & derive:: UNSAFE_DERIVE_DESERIALIZE ,
516+ & disallowed_name:: DISALLOWED_NAME ,
517517 & doc:: DOC_MARKDOWN ,
518518 & doc:: MISSING_ERRORS_DOC ,
519519 & doc:: MISSING_SAFETY_DOC ,
@@ -1227,7 +1227,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12271227 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
12281228 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
12291229 LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1230- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
12311230 LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
12321231 LintId :: of( & booleans:: LOGIC_BUG ) ,
12331232 LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
@@ -1238,6 +1237,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12381237 LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
12391238 LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
12401239 LintId :: of( & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
1240+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
12411241 LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
12421242 LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
12431243 LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
@@ -1480,10 +1480,10 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14801480 LintId :: of( & attrs:: BLANKET_CLIPPY_RESTRICTION_LINTS ) ,
14811481 LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
14821482 LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1483- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
14841483 LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
14851484 LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
14861485 LintId :: of( & comparison_chain:: COMPARISON_CHAIN ) ,
1486+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
14871487 LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
14881488 LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
14891489 LintId :: of( & enum_variants:: ENUM_VARIANT_NAMES ) ,
0 commit comments