71 lines
722 B
Plaintext
71 lines
722 B
Plaintext
|
|
# Lobster 记忆忽略文件示例
|
|||
|
|
# 类似 .gitignore,用于排除不需要同步的文件
|
|||
|
|
|
|||
|
|
# 系统文件
|
|||
|
|
.DS_Store
|
|||
|
|
.DS_Store?
|
|||
|
|
._*
|
|||
|
|
.Spotlight-V100
|
|||
|
|
.Trashes
|
|||
|
|
ehthumbs.db
|
|||
|
|
Thumbs.db
|
|||
|
|
|
|||
|
|
# IDE 和编辑器
|
|||
|
|
.vscode/
|
|||
|
|
.idea/
|
|||
|
|
*.swp
|
|||
|
|
*.swo
|
|||
|
|
*~
|
|||
|
|
.project
|
|||
|
|
.classpath
|
|||
|
|
.settings/
|
|||
|
|
|
|||
|
|
# Python
|
|||
|
|
__pycache__/
|
|||
|
|
*.py[cod]
|
|||
|
|
*$py.class
|
|||
|
|
*.so
|
|||
|
|
.Python
|
|||
|
|
*.egg-info/
|
|||
|
|
dist/
|
|||
|
|
build/
|
|||
|
|
.pytest_cache/
|
|||
|
|
|
|||
|
|
# Node.js
|
|||
|
|
node_modules/
|
|||
|
|
npm-debug.log*
|
|||
|
|
yarn-debug.log*
|
|||
|
|
yarn-error.log*
|
|||
|
|
.pnpm-debug.log*
|
|||
|
|
|
|||
|
|
# 日志文件(根据需要调整)
|
|||
|
|
*.log
|
|||
|
|
logs/
|
|||
|
|
*.log.*
|
|||
|
|
|
|||
|
|
# 临时文件
|
|||
|
|
*.tmp
|
|||
|
|
*.temp
|
|||
|
|
*.bak
|
|||
|
|
*.cache/
|
|||
|
|
|
|||
|
|
# 大文件(可选)
|
|||
|
|
*.zip
|
|||
|
|
*.tar
|
|||
|
|
*.tar.gz
|
|||
|
|
*.rar
|
|||
|
|
*.7z
|
|||
|
|
|
|||
|
|
# 敏感文件
|
|||
|
|
.env
|
|||
|
|
*.env.local
|
|||
|
|
secrets/
|
|||
|
|
*.pem
|
|||
|
|
*.key
|
|||
|
|
|
|||
|
|
# 其他
|
|||
|
|
.git/
|
|||
|
|
.gitignore
|
|||
|
|
README.md
|
|||
|
|
CHANGELOG.md
|
|||
|
|
LICENSE
|