@@ -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;
@@ -494,7 +494,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
494494 & bit_mask:: BAD_BIT_MASK ,
495495 & bit_mask:: INEFFECTIVE_BIT_MASK ,
496496 & bit_mask:: VERBOSE_BIT_MASK ,
497- & disallowed_name:: DISALLOWED_NAME ,
498497 & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ,
499498 & booleans:: LOGIC_BUG ,
500499 & booleans:: NONMINIMAL_BOOL ,
@@ -516,6 +515,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
516515 & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ,
517516 & derive:: EXPL_IMPL_CLONE_ON_COPY ,
518517 & derive:: UNSAFE_DERIVE_DESERIALIZE ,
518+ & disallowed_name:: DISALLOWED_NAME ,
519519 & doc:: DOC_MARKDOWN ,
520520 & doc:: MISSING_ERRORS_DOC ,
521521 & doc:: MISSING_SAFETY_DOC ,
@@ -1235,7 +1235,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12351235 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
12361236 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
12371237 LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1238- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
12391238 LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
12401239 LintId :: of( & booleans:: LOGIC_BUG ) ,
12411240 LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
@@ -1246,6 +1245,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12461245 LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
12471246 LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
12481247 LintId :: of( & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
1248+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
12491249 LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
12501250 LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
12511251 LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
@@ -1492,10 +1492,10 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14921492 LintId :: of( & attrs:: BLANKET_CLIPPY_RESTRICTION_LINTS ) ,
14931493 LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
14941494 LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1495- LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
14961495 LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
14971496 LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
14981497 LintId :: of( & comparison_chain:: COMPARISON_CHAIN ) ,
1498+ LintId :: of( & disallowed_name:: DISALLOWED_NAME ) ,
14991499 LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
15001500 LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
15011501 LintId :: of( & enum_variants:: ENUM_VARIANT_NAMES ) ,
0 commit comments