104 lines
1.3 KiB
Plaintext
104 lines
1.3 KiB
Plaintext
# =====================
|
|
# 依赖 / Dependencies
|
|
# =====================
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
.pnp.cjs
|
|
|
|
# =====================
|
|
# 构建输出 / Build
|
|
# =====================
|
|
/build
|
|
dist/
|
|
out/
|
|
.next/
|
|
.nuxt/
|
|
|
|
# =====================
|
|
# 包管理器锁文件 & 缓存
|
|
# =====================
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
.yarn/
|
|
.npm/
|
|
.eslintcache
|
|
.stylelintcache
|
|
.prettiercache
|
|
|
|
# =====================
|
|
# 环境变量 / Env
|
|
# =====================
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# =====================
|
|
# 日志 / Logs
|
|
# =====================
|
|
log/
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# =====================
|
|
# 测试覆盖率 / Testing
|
|
# =====================
|
|
/coverage
|
|
|
|
# =====================
|
|
# 编辑器 & IDE
|
|
# =====================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# =====================
|
|
# 系统文件 / OS
|
|
# =====================
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
._*
|
|
|
|
# =====================
|
|
# Python (backend)
|
|
# =====================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
*.egg
|
|
.eggs/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pytest_cache/
|
|
.pytype/
|
|
htmlcov/
|
|
*.pyo
|
|
|
|
# =====================
|
|
# Node.js Server
|
|
# =====================
|
|
/Server/log
|
|
|
|
# =====================
|
|
# 其他 / Misc
|
|
# =====================
|
|
*.tsbuildinfo
|
|
.turbo/
|
|
.vercel/
|
|
.output/ |