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
16 changes: 15 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
- **No Amending:** Never use `git commit --amend`. Always create new, discrete commits for every set of changes.
This is my personal watch-list app.
The main function is to show me what tv series or movie I should watch next.

## Development

### Taste

- No Amending. Never use `git commit --amend`. Always create new, discrete commits for every set of changes.
- Inferred types over annotations. `any` is the enemy.

### Build and Test

- This project uses bun. Examples: `bun run lint`, `bun run build`, `bun run test --no-watch`.
- Run a single spec file: `bun run test -- --include="src/app/utils/form.utils.spec.ts" --no-watch`
- Run a single test by name (regex): `bun run test -- --filter="toPositiveNumber" --no-watch`
- To get test code coverage run: `bun run test -- --coverage --no-watch`
Loading
Loading