You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ go build -o /tmp/gox ./cmd/gox
37
37
38
38
## Code Generation
39
39
40
-
Generated files use the `_gox.go` suffix (e.g., `app.gox` → `app_gox.go`).
40
+
Generated files use the `_gox.go` suffix (e.g., `app.gox` → `app_gox.go`). Test files use `_gox_test.go` (e.g., `features_test.gox` → `features_gox_test.go`).
41
41
42
42
The generator produces code like:
43
43
```go
@@ -69,4 +69,4 @@ The LSP proxies to gopls for Go intelligence. Key behaviors:
69
69
70
70
Generated files should NOT be committed. They are:
71
71
- Created in temp directories during `gox run/build` (overlay mode)
72
-
- Gitignored via `*_gox.go`pattern
72
+
- Gitignored via `*_gox.go`and `*_gox_test.go` patterns
0 commit comments