Resolve renamed_and_removed_lints warning on blacklisted_name

warning: lint `clippy::blacklisted_name` has been renamed to `clippy::disallowed_names`
     --> tests/test.rs:2:5
      |
    2 |     clippy::blacklisted_name,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::disallowed_names`
      |
      = note: `#[warn(renamed_and_removed_lints)]` on by default
This commit is contained in:
David Tolnay 2022-08-12 21:37:33 -07:00
parent 34d94b4980
commit c6e5ed54c4
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -1,5 +1,5 @@
#![allow(
clippy::blacklisted_name,
clippy::disallowed_names,
clippy::let_underscore_drop,
clippy::shadow_unrelated,
clippy::unseparated_literal_suffix,