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
9 changes: 9 additions & 0 deletions docs/docs/sidebar/development/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ single table — never split into separate `TestFoo`, `TestFooError`,
Avoid generic file names like `helpers.go` or `utils.go`. Name files after what
they contain.

## Before committing

Run `just ready` before committing to ensure generated code, package docs,
formatting, and lint are all up to date:

```bash
just ready # generate, go::docs, docs::fmt, go::fmt, go::vet
```

## Branching

All changes should be developed on feature branches. Create a branch from `main`
Expand Down
Loading