TemplateProject/.gitignore
2026-05-21 20:32:32 +08:00

50 lines
491 B
Plaintext

# === 操作系统生成文件 ===
.DS_Store
Thumbs.db
# === IDE & 编辑器 ===
.vscode/
.idea/
*.swp
*.swo
# === 构建产物 ===
dist/
build/
target/
out/
*.class
*.jar
*.war
# === 依赖 ===
node_modules/
vendor/
__pycache__/
*.pyc
.venv/
venv/
.env
# === 日志 ===
*.log
logs/
# === 临时文件 ===
*.tmp
*.temp
tmp/
# === 测试 ===
coverage/
.nyc_output/
*.coverage
# === 环境变量(敏感信息) ===
.env.local
.env.production
# === 缓存 ===
.cache/
.pytest_cache/