Skip to content
Merged
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
8 changes: 7 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,16 @@ src/
## Commands

```bash
bunx tsc --noEmit # type-check
bun run typecheck # tsc --noEmit
bun run lint # biome check
bun run check # biome check --write (auto-fix lint + formatting)
bun publish --access public # publish to npm
```

### Before pushing: CI must pass

CI runs the shared quality gate (`flow-industries/lint` ts-check workflow): `bun run lint` and `bun run typecheck`. Both must be clean before every push — run them locally and fix everything they surface (`bun run check` auto-fixes most lint/format issues). Never push with a failing gate.

## Conventions

- No `@/` path aliases. All imports are relative within the package.
Expand Down
Loading