From 39e3eb02fd1b95a990f938bf695fa5e96df49df5 Mon Sep 17 00:00:00 2001 From: SoKingwah Date: Sat, 11 Apr 2026 23:03:24 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20.gitignore=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加标准忽略规则 - 排除 .spec-workflow 目录 --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..757d286 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# Dependencies +node_modules/ +.pnpm-store/ +.spec-workflow + +# Build outputs +dist/ +build/ +out/ + +# IDE & Editor +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store +Thumbs.db + +# Logs +logs/ +*.log +npm-debug.log* + +# Environment files +.env +.env.local +.env.*.local + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db + +# Temporary files +*.tmp +*.temp +.cache/ + +# Claude Code +.claude/worktrees/ +.claude/scheduled_tasks.json \ No newline at end of file