File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -760,6 +760,7 @@ All notable changes to this project will be documented in this file.
760
760
[ `mistyped_literal_suffixes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#mistyped_literal_suffixes
761
761
[ `mixed_case_hex_literals` ] : https://rust-lang.github.io/rust-clippy/master/index.html#mixed_case_hex_literals
762
762
[ `module_inception` ] : https://rust-lang.github.io/rust-clippy/master/index.html#module_inception
763
+ [ `module_name_repeat` ] : https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repeat
763
764
[ `modulo_one` ] : https://rust-lang.github.io/rust-clippy/master/index.html#modulo_one
764
765
[ `multiple_crate_versions` ] : https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions
765
766
[ `multiple_inherent_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#multiple_inherent_impl
@@ -850,7 +851,6 @@ All notable changes to this project will be documented in this file.
850
851
[ `string_extend_chars` ] : https://rust-lang.github.io/rust-clippy/master/index.html#string_extend_chars
851
852
[ `string_lit_as_bytes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#string_lit_as_bytes
852
853
[ `string_to_string` ] : https://rust-lang.github.io/rust-clippy/master/index.html#string_to_string
853
- [ `stutter` ] : https://rust-lang.github.io/rust-clippy/master/index.html#stutter
854
854
[ `suspicious_arithmetic_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_arithmetic_impl
855
855
[ `suspicious_assignment_formatting` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting
856
856
[ `suspicious_else_formatting` ] : https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_else_formatting
Original file line number Diff line number Diff line change @@ -517,8 +517,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
517
517
doc:: DOC_MARKDOWN ,
518
518
empty_enum:: EMPTY_ENUM ,
519
519
enum_glob_use:: ENUM_GLOB_USE ,
520
- enum_variants:: PUB_ENUM_VARIANT_NAMES ,
521
520
enum_variants:: MODULE_NAME_REPEAT ,
521
+ enum_variants:: PUB_ENUM_VARIANT_NAMES ,
522
522
if_not_else:: IF_NOT_ELSE ,
523
523
infinite_iter:: MAYBE_INFINITE_ITER ,
524
524
items_after_statements:: ITEMS_AFTER_STATEMENTS ,
@@ -1028,6 +1028,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
1028
1028
unwrap:: PANICKING_UNWRAP ,
1029
1029
unwrap:: UNNECESSARY_UNWRAP ,
1030
1030
] ) ;
1031
+
1032
+ store. register_renamed ( "stutter" , "module_name_repeat" ) ;
1031
1033
}
1032
1034
1033
1035
// only exists to let the dogfood integration test works.
You can’t perform that action at this time.
0 commit comments