-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (37 loc) · 752 Bytes
/
.gitignore
File metadata and controls
47 lines (37 loc) · 752 Bytes
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
# User data - NEVER commit
/data/
!/data/.gitkeep
# Historical price data for backtest (OK to commit)
!packages/web/public/data/
data.backup
# Dependencies
node_modules/
# Build artifacts
dist/
*.tsbuildinfo
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
*.log
# Raw test coverage (contains absolute paths - use sanitized public versions instead)
packages/*/coverage/
test-results/
# Shipped reports (sanitized, commented to track in git)
#packages/web/public/playwright-report/
#packages/web/public/code-coverage/
packages/web/public/playwright-report/data/
# Legacy test directory at repo root (defunct - using e2e/ now)
/test/
# Editor/terminal config
.ghostty-theme
# Temp files
*.tmp
.*.tmp
.browser
.playwright-mcp/