-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
135 lines (119 loc) · 2.28 KB
/
Copy path.gitignore
File metadata and controls
135 lines (119 loc) · 2.28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Python-generated files
__pycache__/
*.py[oc]
*.pyo
*.pyd
*.backup
build/
# dist/ - Now tracked so each branch has its versioned wheel
wheels/
*.egg-info
*.egg
.eggs/
# Virtual environments
.venv/
venv/
ENV/
env/
.uv/
tests/.venv/
tests/pyproject.toml
# Development-only folders and files
*_dev/
CLAUDE.md
**/CLAUDE.md
.claude/
/ccpm/ # Private CCPM plugin - keep local only
ccpm/**
# CCPM agent worktrees and logs (created in ~/.cache/ but list here for clarity)
.cache/svg2fbf-worktrees/
.cache/svg2fbf-audit-logs/
# Logs and temporary files
logs/
*.log
!tests/logs/ # Allow tests/logs/ directory (for unit test logs)
tests/logs/*.log # But ignore log files inside it
temp/
temp_*/
tmp/
*.tmp
*.temp
# Release process temporary files
.release-notes-*.md # git-cliff temporary release notes
# Agent / tooling reports — contain private paths, tokens, internal notes
/reports/
/reports_dev/
# Temporary analysis files (hound-agent, etc.)
hound_found_*.md
/.json
/.txt
# Test results and artifacts (pytest E2E tests - should not exist)
tests/results/
tests/samples/
tests/examples/
# AI Maestro plugin runtime state (heartbeat, drift detection logs, etc.)
.janitor/
# Plugin recheck state
.rechecker/
# tldr-code cache
.tldr/
.tldrignore
# Don't ignore tests/fixtures/ wholesale — the e2e/ subtree is required
# for the byte-exact regression test in scripts/test_release_clean.sh
# and tests/test_e2e_byte_exact.py. Ignore only the OTHER fixture dirs
# that are large/transient and shouldn't be in git.
tests/fixtures/sessions/
tests/fixtures/temp/
tests/fixtures/tmp/
tests/node_modules/
tests/package-lock.json
tests/invalid_svg_example_frames.json
.pytest_cache/
# Test sessions (regenerated from examples/ - do not track)
tests/sessions/
.coverage
coverage.xml
htmlcov/
.tox/
.nox/
# IDE and editor files
.mypy_cache/
.ruff_cache/
.serena/
.vscode/
.idea/
*.swp
*.swo
*~
.project
.pydevproject
.settings/
# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# SVG output folders (generated content)
fbfsvg_output/
frames_barca_test/
svg_folder_test/
svg_frames_input/
output/
outputs/
# Security and secrets (redundant but explicit)
*.pem
*.key
*.p12
*.pfx
.env
.env.*
!.env.example
secrets/
credentials/
# Package manager files
pip-log.txt
pip-delete-this-directory.txt
.venv