-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
49 lines (40 loc) · 2.01 KB
/
.gitignore
File metadata and controls
49 lines (40 loc) · 2.01 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
# ── Python ────────────────────────────────────────────────────────────────────
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
# ── Test artifacts ────────────────────────────────────────────────────────────
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
# ── .NET build artifacts ──────────────────────────────────────────────────────
cue4parse_cli/obj/
cue4parse_cli/bin/
# ── User data (machine-specific paths, optional AES keys) ────────────────────
# Sync these with: .\sync.ps1 -Backup / -Restore
profiles/
cache/
# ── Generated output ──────────────────────────────────────────────────────────
outputs/
logs/
# Stray build/run logs that land at the repo root
*.log
batch_log.txt
# ── Build artifacts (PyInstaller) ─────────────────────────────────────────────
dist/
build/
*.spec
# ── OS noise ──────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini
# ── IDE ───────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.suo
*.user
# ── AI assistant scratch (project-local notes, never committed) ──────────────
.claude/