mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
Ignore module_name_repetitions pedantic clippy lint
warning: item name ends with its containing module's name --> src/manifest.rs:9:12 | 9 | pub struct CargoManifest { | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions = note: `-W clippy::module-name-repetitions` implied by `-W clippy::pedantic`
This commit is contained in:
parent
58201ca96b
commit
7f4107d810
1 changed files with 1 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
clippy::manual_strip,
|
||||
clippy::match_like_matches_macro,
|
||||
clippy::match_same_arms, // https://github.com/rust-lang/rust-clippy/issues/10327
|
||||
clippy::module_name_repetitions,
|
||||
clippy::needless_borrow, // https://github.com/rust-lang/rust-clippy/issues/9710
|
||||
clippy::needless_pass_by_value,
|
||||
clippy::non_ascii_literal,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue