From ae55365f19c1bfe0d1479122fef43da6479c9775 Mon Sep 17 00:00:00 2001 From: beabigegg Date: Thu, 6 Nov 2025 11:41:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=E6=B8=AC=E8=A9=A6=E7=9B=AE?= =?UTF-8?q?=E9=8C=84=EF=BC=9A=E5=88=AA=E9=99=A4=E8=87=A8=E6=99=82=E5=92=8C?= =?UTF-8?q?=E7=A9=BA=E7=9B=AE=E9=8C=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 刪除項目: - tests/e2e/ (空目錄) - tests/temp_output/ (測試臨時輸出) - tests/__pycache__/ (Python快取) 更新 .gitignore: - 新增 tests/temp_output/, tests/e2e/, .benchmarks/ 到忽略清單 保留項目: - tests/unit/ (單元測試) - tests/integration/ (整合測試) - tests/fixtures/ (測試用範例檔案) 🤖 Generated with Claude Code Co-Authored-By: Claude --- .claude/settings.local.json | 3 ++- .gitignore | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 0cd01f7..f5e92b7 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -3,7 +3,8 @@ "allow": [ "Bash(if exist nul del nul)", "Bash(git reset:*)", - "Bash(git commit:*)" + "Bash(git commit:*)", + "Bash(find:*)" ], "deny": [], "ask": [] diff --git a/.gitignore b/.gitignore index 4dbea00..c8c9ba4 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,9 @@ env/ htmlcov/ *.cover .hypothesis/ +tests/temp_output/ +tests/e2e/ +.benchmarks/ # IDEs .vscode/