Files
daily-opencode-workspace/.gitignore

28 lines
489 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.
# 忽略 Obsidian 的软件运行配置和缓存
.obsidian/
.trash/
# 忽略 OpenCode 的运行时文件
node_modules/
npm-debug.log*
# 忽略敏感信息
.env
.env.*
# 忽略技能配置目录(所有 skills 的 config
.opencode/skills/*/config/
# 但保留 .example 模板文件
!.opencode/skills/*/config/settings.json.example
# 允许 Git 追踪 .opencode 下的技能定义
!.opencode/skills/
# 忽略临时文件目录
temp/
# 忽略 Python 缓存
__pycache__/
*.pyc
*.pyo