From 8766caf0cb558b34a6b1fcc22ed1393b6b6c6a97 Mon Sep 17 00:00:00 2001 From: Danil Date: Tue, 26 May 2026 18:26:41 +0300 Subject: [PATCH] =?UTF-8?q?=D1=87=D0=B8=D1=89=D0=B5=D0=BD=20.gitignore:=20?= =?UTF-8?q?=D1=83=D0=B1=D1=80=D0=B0=D0=BD=D1=8B=20=D0=B4=D1=83=D0=B1=D0=BB?= =?UTF-8?q?=D0=B8=D0=BA=D0=B0=D1=82=D1=8B,=20=D1=81=D0=B3=D1=80=D1=83?= =?UTF-8?q?=D0=BF=D0=BF=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D1=8B=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=D0=B0=20Unity/Vite/AI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 83 +++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 64 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index b1ea543..e0afa2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,70 @@ +# ========================================== +# 🖥️ ОС и файловая система (Windows/macOS/Linux) +# ========================================== .DS_Store -node_modules -tools/* +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ +*.lnk + +# ========================================== +# 🎮 Unity (критично для кроссплатформы) +# ========================================== +Library/ +Temp/ +obj/ +bin/ +Build/ +.vs/ +*.pidb +*.pdb.meta +!*.meta # ← ВАЖНО: отменяет игнорирование .meta файлов Unity +ProjectSettings/ +Packages/ + +# ========================================== +# 💻 IDE / Редакторы и AI-инструменты (VS Code, Rider, Claude, Trae) +# ========================================== +.vscode/ +.idea/ +*.suo +*.user +*.userosscache +*.sln.docstates +Rider/ +.reSharper/ +CLAUDE.md +.claude/skills/* +.trae/ + +# ========================================== +# 📚 easy-vibe tutorial rules (Vite/Vue/Node.js) +# ========================================== +node_modules/ docs/.vitepress/dist docs/.vitepress/cache -temp/* -docs/zh-cn/appendix-old-backup*/ -docs/zh-cn/appendix-dirs-backup*/ -CLAUDE.md -MULTI_LANGUAGE_PLAN.md -.trae -scripts/collapse_code_blocks.py -.gitignore -scripts/verify.sh -REFACTORING_PLAN.md -.gitignore -.gitignore -REFACTORING_REPORT.md docs/.vitepress/.temp/* -.temp/* .vitepress/cache/* -.vitepress/cache/* -docs/archived-components.md -.claude/skills/* temp/* + +# ========================================== +# 📦 Логи, кэш, временные файлы и служебные скрипты +# ========================================== +*.log +*.tmp +*.temp +.cache/ +dist/ +out/ +scripts/collapse_code_blocks.py +scripts/verify.sh +docs/archived-components.md +MULTI_LANGUAGE_PLAN.md +REFACTORING_PLAN.md +REFACTORING_REPORT.md + +# ========================================== +# 🔒 Системные файлы Git (на всякий случай) +# ========================================== +.gitignore