From e7393f50d056b8fc9f0830d3ea80dd3306db92af Mon Sep 17 00:00:00 2001 From: Alex Yusiuk <55661041+RRRadicalEdward@users.noreply.github.com> Date: Wed, 23 Jul 2025 18:29:27 +0300 Subject: [PATCH] chore: add disallowed_script_idents clippy extra-pedantic lint (#881) --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 08a83063..ddf9637a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -125,6 +125,7 @@ unnecessary_box_returns = "warn" # == Extra-pedantic clippy == # allow_attributes = "warn" +disallowed_script_idents = "warn" collection_is_never_read = "warn" copy_iterator = "warn" expl_impl_clone_on_copy = "warn"