@@ -212,9 +212,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
212212 LintId :: of( methods:: WRONG_SELF_CONVENTION ) ,
213213 LintId :: of( methods:: ZST_OFFSET ) ,
214214 LintId :: of( minmax:: MIN_MAX ) ,
215- LintId :: of( misc:: CMP_NAN ) ,
216- LintId :: of( misc:: CMP_OWNED ) ,
217- LintId :: of( misc:: MODULO_ONE ) ,
218215 LintId :: of( misc:: SHORT_CIRCUIT_STATEMENT ) ,
219216 LintId :: of( misc:: TOPLEVEL_REF_ARG ) ,
220217 LintId :: of( misc:: ZERO_PTR ) ,
@@ -251,6 +248,8 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
251248 LintId :: of( operators:: ABSURD_EXTREME_COMPARISONS ) ,
252249 LintId :: of( operators:: ASSIGN_OP_PATTERN ) ,
253250 LintId :: of( operators:: BAD_BIT_MASK ) ,
251+ LintId :: of( operators:: CMP_NAN ) ,
252+ LintId :: of( operators:: CMP_OWNED ) ,
254253 LintId :: of( operators:: DOUBLE_COMPARISONS ) ,
255254 LintId :: of( operators:: DURATION_SUBSEC ) ,
256255 LintId :: of( operators:: EQ_OP ) ,
@@ -259,6 +258,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
259258 LintId :: of( operators:: IDENTITY_OP ) ,
260259 LintId :: of( operators:: INEFFECTIVE_BIT_MASK ) ,
261260 LintId :: of( operators:: MISREFACTORED_ASSIGN_OP ) ,
261+ LintId :: of( operators:: MODULO_ONE ) ,
262262 LintId :: of( operators:: OP_REF ) ,
263263 LintId :: of( option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
264264 LintId :: of( overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
0 commit comments