Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions yarn-project/.claude/rules/typescript-style.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
globs: "*.ts,*.tsx,*.mts,*.cts"
---

# TypeScript Code Style

## Type Safety
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ For long-running tests or verbose output, redirect to a temp file and use native
yarn workspace @aztec/<package-name> test src/file.test.ts > /tmp/test-output.log 2>&1
```

Then use **Read** or **Grep** to examine `/tmp/test-output.log`. Never use `| tail` or `| head` to limit output—use native tools instead.
Then use **Read** or **Grep** to examine `/tmp/test-output.log`. Never use `| tail` or `| head` to limit output—use native tools instead. Never append `; echo "EXIT: $?"` or similar—the Bash tool already reports exit codes directly.

### End-to-End Tests

Expand Down
Loading