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:
David Tolnay 2023-07-16 13:49:17 -07:00
parent 58201ca96b
commit 7f4107d810
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -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,