-
Notifications
You must be signed in to change notification settings - Fork 456
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (44 loc) · 1.12 KB
/
Copy path.gitignore
File metadata and controls
52 lines (44 loc) · 1.12 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
node_modules/
dist/
.env
*.tsbuildinfo
coverage/
.vscode/
*.log
# npm pack output / pre-built tarballs (publish via release artifacts, not git)
packages/**/*.tgz
# Squad: ignore runtime state (logs, inbox, sessions)
.squad/orchestration-log/
.squad/log/
.squad/decisions/inbox/
.squad/sessions/
.squad/config.json
# Test temp dirs (created in cwd by vitest tests, cleaned in afterEach)
.test-*
# Docs site generated files
docs/dist/
docs/src/content/docs/reference/api/
# Docs test screenshots (local verification only)
docs/tests/screenshots/
# Squad: SubSquad activation file (local to this machine)
.squad-workstream
.squad/.first-run
.squad/.watch-pids
.squad/.cache/
# Images folder (root only — don't ignore docs/public/images/)
/images/
# Squad: ignore runtime state (logs, inbox, sessions)
.squad/.scratch/
# Squad: PR-1200 picard local artifacts (do not commit)
.pr-body-new.md
.followup-issue-body.md
# .NET build output
bin/
obj/
artifacts/
# Visual Studio IDE artifacts
.vs/
*.user
*.userprefs
# NOTE: .squad/casting/* is AUTHORITATIVE IDENTITY and MUST be committed to main.
# Do not add .squad/casting/ to this ignore list.