From 54aef98f3a0449baec7d3033ba5e9a239db82f5b Mon Sep 17 00:00:00 2001 From: gooker_young Date: Mon, 6 Jul 2026 13:11:59 +0800 Subject: [PATCH] =?UTF-8?q?chore(gittool):=20=E6=96=B0=E5=A2=9Eruff?= =?UTF-8?q?=E7=BC=93=E5=AD=98=E7=9B=AE=E5=BD=95=E5=88=B0=E6=8E=92=E9=99=A4?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将.ruff_cache添加到EXCLUDE_DIRS列表中,避免git工具扫描该缓存目录 --- src/pyflowx/ops/gittool.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pyflowx/ops/gittool.py b/src/pyflowx/ops/gittool.py index a7b0d5d..760c6f4 100644 --- a/src/pyflowx/ops/gittool.py +++ b/src/pyflowx/ops/gittool.py @@ -20,6 +20,7 @@ EXCLUDE_DIRS = [ # 项目相关目录 ".venv", ".git", + ".ruff_cache", ".tox", "node_modules", ]