28 lines
489 B
Plaintext
28 lines
489 B
Plaintext
# 忽略 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 |