@@ -779,6 +779,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
779779 methods:: SINGLE_CHAR_PATTERN ,
780780 methods:: SKIP_WHILE_NEXT ,
781781 methods:: STRING_EXTEND_CHARS ,
782+ methods:: APPEND_INSTEAD_OF_EXTEND ,
782783 methods:: SUSPICIOUS_MAP ,
783784 methods:: SUSPICIOUS_SPLITN ,
784785 methods:: UNINIT_ASSUMED_INIT ,
@@ -1314,6 +1315,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13141315 LintId :: of( methods:: SINGLE_CHAR_PATTERN ) ,
13151316 LintId :: of( methods:: SKIP_WHILE_NEXT ) ,
13161317 LintId :: of( methods:: STRING_EXTEND_CHARS ) ,
1318+ LintId :: of( methods:: APPEND_INSTEAD_OF_EXTEND ) ,
13171319 LintId :: of( methods:: SUSPICIOUS_MAP ) ,
13181320 LintId :: of( methods:: SUSPICIOUS_SPLITN ) ,
13191321 LintId :: of( methods:: UNINIT_ASSUMED_INIT ) ,
@@ -1740,6 +1742,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17401742 LintId :: of( methods:: MANUAL_STR_REPEAT ) ,
17411743 LintId :: of( methods:: OR_FUN_CALL ) ,
17421744 LintId :: of( methods:: SINGLE_CHAR_PATTERN ) ,
1745+ LintId :: of( methods:: APPEND_INSTEAD_OF_EXTEND ) ,
17431746 LintId :: of( misc:: CMP_OWNED ) ,
17441747 LintId :: of( mutex_atomic:: MUTEX_ATOMIC ) ,
17451748 LintId :: of( redundant_clone:: REDUNDANT_CLONE ) ,
@@ -2066,7 +2069,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
20662069 store. register_late_pass ( move || box if_then_some_else_none:: IfThenSomeElseNone :: new ( msrv) ) ;
20672070 store. register_early_pass ( || box bool_assert_comparison:: BoolAssertComparison ) ;
20682071 store. register_late_pass ( || box unused_async:: UnusedAsync ) ;
2069-
20702072}
20712073
20722074#[ rustfmt:: skip]
0 commit comments