mirror of
https://github.com/Silentely/eSIM-Tools.git
synced 2026-09-03 06:24:20 +08:00
- 在 CLAUDE.md 中添加 `.context/` 目录的项目上下文说明,明确其用于管理开发决策 - 规定编码规范、工作流规则和决策历史的文件路径:`prefs/coding-style.md`、`prefs/workflow.md` 和 `history/commits.md` - 添加核心规则:修改代码前必须阅读 prefs/ 相关文档,做重要决策时需按 workflow.md 要求记录变更日志 - 在 .gitignore 中忽略 `.context/` 目录,避免将内部决策记录提交到版本库
123 lines
1.3 KiB
Plaintext
123 lines
1.3 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
.env.test
|
|
.env.production
|
|
.env.local
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# Next.js build output
|
|
.next
|
|
|
|
# Nuxt.js build / generate output
|
|
.nuxt
|
|
dist
|
|
|
|
# Storybook build outputs
|
|
.out
|
|
.storybook-out
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.serena
|
|
.ace-tool/
|
|
.omc/
|
|
.omx/
|
|
|
|
# Build outputs
|
|
build/
|
|
dist/
|
|
|
|
# Netlify
|
|
.netlify/
|
|
|
|
# Development files
|
|
*.bak
|
|
*.orig
|
|
*.tmp
|
|
|
|
# Editor files
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Local development
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
|
|
# Postman
|
|
postman/
|
|
|
|
# Claude Code 本地配置
|
|
.claude/
|
|
|
|
# Gemini 剪贴板临时文件
|
|
.gemini-clipboard/
|
|
|
|
#context
|
|
.context/
|
|
|