-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
79 lines (65 loc) · 1.5 KB
/
Copy path.gitignore
File metadata and controls
79 lines (65 loc) · 1.5 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
# Dependencies
node_modules/
# Build outputs
dist/
build/
# Rust / Cargo
target/
Cargo.lock
# Tauri
src-tauri/target/
src-tauri/Cargo.lock
# Environment files
.env
.env.local
.env.*.local
# IDE
.idea/
.vscode/
*.swp
*.swo
.DS_Store
# Logs
*.log
npm-debug.log*
# Test coverage
coverage/
# TypeScript cache
*.tsbuildinfo
# Vite
.vite/
# SQLite database (user data, not committed)
*.db
*.sqlite
*.sqlite3
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Generated test data (regenerate with npm run generate-test-data)
# scripts/generated/ — now committed for CI builds
demo-frames/
# Overnight agent state (runtime artifacts)
state/
# Dev/strategy docs (stay local, not public)
CLAUDE.md
PROGRESS.md
PROGRESS_ARCHIVE.md
PROJECT_STATE.md
ROADMAP.md
DECISIONS.md
features.json
docs/
# Root-only: ignore the top-level ./prompts scratch dir, NOT nested source dirs.
# A bare `prompts/` also swallowed src-tauri/src/recruiting/scoring/prompts/, whose
# vendored *.md templates are include_str!'d — that broke CI (files absent on fresh
# checkout) while passing locally. Anchored to repo root to keep the templates tracked.
/prompts/
test-data/
# scripts/ is local-only EXCEPT the generated synthetic test-data JSONs,
# which release CI imports at build time via Vite (no generator in CI).
# Using `scripts/*` (not `scripts/`) so negations below can re-include
# specific paths — git's rule is that you can't re-include children of a
# directory that's itself excluded via a trailing-slash pattern.
scripts/*
!scripts/generated/