filepath |
---|
AGENTS.md |
- Before making changes, read
.instructions/general.instructions.md
and any relevant instructions inside.instructions/apps
or.instructions/packages
for the files you plan to modify. - Keep TypeScript strictly typed. Do not use
@ts-ignore
or ESLint disable comments. - Always run
pnpm typecheck
to ensure your code is working. This also builds any needed deps. So do this anytime you cross a package boundary. - Use
pnpm lint
to check for linting errors and code style. - Use
pnpm format -w
to format all packages before committing.