Run update_lints

This commit is contained in:
flip1995 2019-11-29 14:50:19 +01:00
parent 70a2a29453
commit fd7eca2baf
No known key found for this signature in database
GPG Key ID: 693086869D506637

View File

@ -1050,7 +1050,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
LintId::of(&unicode::NON_ASCII_LITERAL),
LintId::of(&unicode::UNICODE_NOT_NFC),
LintId::of(&unused_self::UNUSED_SELF),
LintId::of(&use_self::USE_SELF),
]);
store.register_group(true, "clippy::internal", Some("clippy_internal"), vec![
@ -1579,6 +1578,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
LintId::of(&mutex_atomic::MUTEX_INTEGER),
LintId::of(&needless_borrow::NEEDLESS_BORROW),
LintId::of(&path_buf_push_overwrite::PATH_BUF_PUSH_OVERWRITE),
LintId::of(&use_self::USE_SELF),
]);
}