mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
error: unknown lint: `stutter`
|
|
--> $DIR/rename.rs:1:10
|
|
|
|
|
LL | #![allow(stutter)]
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D unknown-lints` implied by `-D warnings`
|
|
|
|
error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
|
|
--> $DIR/rename.rs:3:8
|
|
|
|
|
LL | #[warn(clippy::stutter)]
|
|
| ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
|
|
|
|
|
= note: `-D renamed-and-removed-lints` implied by `-D warnings`
|
|
|
|
error: lint `clippy::new_without_default_derive` has been renamed to `clippy::new_without_default`
|
|
--> $DIR/rename.rs:6:8
|
|
|
|
|
LL | #[warn(clippy::new_without_default_derive)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::new_without_default`
|
|
|
|
error: unknown lint: `stutter`
|
|
--> $DIR/rename.rs:1:10
|
|
|
|
|
LL | #![allow(stutter)]
|
|
| ^^^^^^^
|
|
|
|
error: lint `clippy::stutter` has been renamed to `clippy::module_name_repetitions`
|
|
--> $DIR/rename.rs:3:8
|
|
|
|
|
LL | #[warn(clippy::stutter)]
|
|
| ^^^^^^^^^^^^^^^ help: use the new name: `clippy::module_name_repetitions`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|