summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-06 20:18:52 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-06 20:18:52 +0800
commite68e1230d4157c32592900372699411c7151b4e5 (patch)
tree36b294fffd1ffd4e56718c89dc9a2ad643fd33a0
parent10bf8bdfe09e3ab80edcd45b9018b1412ef14f64 (diff)
Remove check_all.sh script
-rwxr-xr-xcheck_all.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/check_all.sh b/check_all.sh
deleted file mode 100755
index 3ab7d9e..0000000
--- a/check_all.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-# Change to the directory where the script is located
-cd "$(dirname "$0")"
-
-# Run cargo clippy in mingling_core
-cd mingling_core
-cargo clippy --fix --allow-dirty
-cd ..
-
-# Run cargo clippy in mingling_macros
-cd mingling_macros
-cargo clippy --fix --allow-dirty
-cd ..
-
-# Run cargo clippy in mingling
-cd mingling
-cargo clippy --fix --allow-dirty
-cd ..