Skip to content

Commit 242f859

Browse files
committed
Emphasize make check over individual lint targets in CLAUDE.md
1 parent fba8acc commit 242f859

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Global tools:
6060

6161
## Verification
6262

63-
**Always run before considering work done:**
63+
**Always run `make check` before considering work done.** Do NOT shortcut with individual targets like `lint` or `typecheck` — CI runs format checks that `lint` alone misses (import sorting, line length).
6464

6565
```bash
6666
make check # from repo root — validates schemas + runs Python + TS tests
@@ -69,8 +69,8 @@ make check # from repo root — validates schemas + runs Python + TS tests
6969
For a single library:
7070

7171
```bash
72-
make -C lib/python check # format + lint + typecheck + tests
73-
make -C lib/typescript check # format + lint + typecheck + tests
72+
make -C lib/python check # format-check + lint + typecheck + tests
73+
make -C lib/typescript check # format-check + lint + typecheck + tests
7474
make -C schemas validate # bundle + AJV validation
7575
```
7676

0 commit comments

Comments
 (0)