-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (48 loc) · 971 Bytes
/
Copy path.gitignore
File metadata and controls
62 lines (48 loc) · 971 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Binaries
*.exe
*.dll
*.so
*.dylib
*.test
/sandman
# Output of the go coverage tool
*.out
coverage.html
# Dependency directories
vendor/
# Go workspace file
go.work
# Sandman runtime state
.sandman/
# The .sandman/ rule above covers everything under state/ (including
# state/.built_with_sandman and state/<N>.head_sha / state/<N>.addressed_comments).
# Environment files
.env
.env.local
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Node.js
node_modules/
package.json
package-lock.json
# Worktrees
.worktrees/
# Token optimizer sessions
token-optimizer/
# Test fixtures and test-only artifacts produced locally by go test (perf
# baselines, ad-hoc test reports). The portal perf tests write JSON
# baselines under testdata/portal_perf_baseline/ on every run; they are
# reproducible from a test invocation and should not be tracked.
testdata/
TEST_REPORT.md
# OpenCode sessions
.opencode/
# Review state files
state/*.addressed_comments
# OS
.DS_Store
Thumbs.db