kindergarten_java/.gitignore

77 lines
824 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# === 操作系统 ===
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# === 备份文件 ===
backups/
*.db
# === 例外Flyway 迁移脚本必须提交 ===
!**/db/migration/*.sql
# === IDE 和编辑器 ===
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
# === Python ===
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
venv/
env/
ENV/
# === Node.js ===
node_modules/
dist/
build/
# === 前端自动生成 ===
**/components.d.ts
**/typed-router.d.ts
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
# === Java ===
target/
*.class
*.jar
*.war
*.ear
# === 测试结果 ===
screenshots/
*.png
*.webm
test-results/
playwright-report/
# === 临时文件 ===
*.tmp
*.temp
*.bak
*.swp
.cache/
# === 上传文件 ===
uploads/
# === 文档生成 ===
docs/node_modules/