-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
87 lines (74 loc) · 1.37 KB
/
Copy path.gitignore
File metadata and controls
87 lines (74 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# ==============================
# 排除所有 . 开头的文件和文件夹
# ==============================
.*
# 白名单:需要提交的 dot 文件
!.gitignore
!.gitattributes
!.editorconfig
!.github/
!.github/workflows/
!.github/workflows/*.yml
!.github/workflows/*.yaml
# ==============================
# 日志文件 (忽略所有日志文件)
# ==============================
*.log
*.log.*
*.out
*.tmp
pyright-*.out.json
pyright-one.json
logs/
*.logs/
# ==============================
# Python 打包和编译生成的文件
# ==============================
# 构建目录
/build/
dist/
*.egg-info/
*.egg
*.whl
# 缓存和字节码
**/__pycache__/
*.pyc
*.pyo
*.pyd
*.spec
license.dat
# Cython编译生成的文件
*.c
*.so
*.pyx
# 安装包
*.tar.gz
*.dist-info/
# 虚拟环境 (通常也需要忽略)
venv/
env/
# ==============================
# 其他常见忽略项
# ==============================
# 编辑器临时文件
*~
*.swp
*.swo
# 测试覆盖率报告
htmlcov/
coverage.xml
# 测试临时文件
tests/temp/
tests/output/
# 模板生成临时/输出文件
templates/空白模板.docx
samples/generated_templates/
samples/style_injection_output/
# ==============================
# Obsidian 插件开发
# ==============================
/docwen-obsidian/
# ==============================
# OpenClaw 插件/Skill
# ==============================
/docwen-openclaw/