forked from scout-off/scout-off-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
122 lines (103 loc) · 1.86 KB
/
Copy path.gitignore
File metadata and controls
122 lines (103 loc) · 1.86 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
node_modules
.next/
.vercel
out
dist
build
coverage
public/build
package-lock.json
yarn.lock
pnpm-lock.yaml
.husky/_
/.git
.vscode
public/sw.js
public/workbox-*.js
# next-pwa regenerates sourcemaps adjacent to workbox output on local builds
public/sw.js.map
public/workbox-*.js.map
.env.local
.env*.local
*.tsbuildinfo
# Jest coverage output (issue #108)
coverage/
storybook-static/
# Jest / Vitest snapshot files
__snapshots__/
**/__snapshots__/
*.snap
# Playwright E2E output (issue #673)
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
# Jest test snapshots (issues #532, #531, #530, #529)
__tests__/**/__snapshots__/
**/__snapshots__/
*.snap
# Playwright visual snapshots / screenshot baselines (issues #526 #527 #528)
# Excludes e2e/visual/**/*-snapshots/ — those are the committed visual-regression
# baselines (docs/visual-regression.md), not ad-hoc test-run screenshots.
**/__snapshots__/
e2e/**/*.png
!e2e/visual/**/*-snapshots/*.png
e2e/**/*.jpg
e2e/**/*.jpeg
e2e/**/*.webp
# Playwright trace archives
trace.zip
*.trace
# OS / editor cruft
.DS_Store
Thumbs.db
*.swp
*.swo
*~
# Temporary files
*.tmp
*.bak
# Kiro IDE directory
.kiro
.kiro/
# Pull request description files
pr-*.md
PULL_REQUEST.md
# Jest snapshot files
__snapshots__/
*.snap
# Local referral-store data (lib/referralStore.ts writes here in dev)
/data/
# Local indexer SQLite event store (packages/indexer/src/db/eventStore.ts writes here in dev)
packages/indexer/data/
*.db
*.db-journal
*.db-wal
*.db-shm
# OS artefacts
.DS_Store
Thumbs.db
# Editor swap / backup files
*.swp
*.swo
*~
# Debug logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Temporary files created by test runs (server test DB)
/tmp/
# OS-generated files
.DS_Store
Thumbs.db
# Editor / IDE swap and temp files
*.swp
*.swo
*~
.idea/
# Log files
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*