From 00a12ed064355eb6fc5071e6455ad82988bbfdc6 Mon Sep 17 00:00:00 2001 From: zizi Date: Wed, 20 May 2026 10:40:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20.gitignore=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- .gitignore | 116 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4e7fad42 --- /dev/null +++ b/.gitignore @@ -0,0 +1,116 @@ +# ==================== +# OS Files +# ==================== +.DS_Store +Thumbs.db +ehthumbs.db +*.swp +*.swo +*~ +.DS_Store + +# ==================== +# Editor & IDE +# ==================== +# VS Code +.vscode/ +*.code-workspace + +# JetBrains (IntelliJ, PyCharm, WebStorm, etc.) +.idea/ +*.iml + +# Vim +*.swp +*.swo + +# Emacs +*~ + +# Sublime +*.sublime-* + +# Atom +.atom/ + +# ==================== +# Build & Dependencies +# ==================== +node_modules/ +.pnp +.pnp.js +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.yarn/ +dist/ +build/ +out/ +.next/ +.nuxt/ + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +.env +.venv +env/ +venv/ +ENV/ +.eggs/ +*.egg-info/ +*.egg + +# ==================== +# Logs & Temporal +# ==================== +*.log +npm-debug.log* +yarn-debug.log* +lerna-debug.log* +.DS_Store + +# ==================== +# Testing & Coverage +# ==================== +coverage/ +.nyc_output/ +.coverage +.coverage.* + +# ==================== +# Temporary Files +# ==================== +tmp/ +temp/ +.cache/ +*.tmp +*.temp + +# ==================== +# Documentation Build +# ==================== +_site/ +.sass-cache/ +*.pdf +*.zip + +# ==================== +# Environment & Secrets +# ==================== +.env.local +.env.*.local +.envrc +secrets.yaml +credentials.json +*.pem +*.key + +# ==================== +# Git (internal use) +# ==================== +.git/ +.gitignore # 忽略自身不必要,提交时再加入 \ No newline at end of file