Skip to content

Commit 453987c

Browse files
committed
fix: update AGENTS.md
1 parent 55595be commit 453987c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

AGENTS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- Lint fix: `bun run lint:fix` (runs biome check --write)
88
- Format: `bun run format` (runs biome format --write)
99
- Test: `bun run test` (runs all tests)
10-
- Single test: `cd packages/test-node && bun test <test-file.test.ts>` (Bun test runner)
10+
- Single test: `cd packages/test-js && bun test <test-file.test.ts>` (Bun test runner)
1111
- CI: `bun run ci` (lint + build + test)
1212

1313
## Code Style
@@ -20,5 +20,6 @@
2020
- Exports: Named exports only (no default exports)
2121
- Files: One primary export per file matching filename (e.g., `getCountryData.ts` exports `getCountryData`)
2222
- Format: Run `bun run format` before committing (enforced by husky pre-commit hook)
23+
- Code should be clear and self-explanatory as much as possible
2324
- Do not write any documentation unless it was asked for
2425
- Do not write unnecessary comments in code, unless: code is not obvious, URLs should be linked to the issue, docs etc

0 commit comments

Comments
 (0)