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
11 changes: 11 additions & 0 deletions .no-mistakes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# no-mistakes' own dogfood config.
# Makes the gate deterministic: every gated PR runs the exact test/lint/format
# commands the maintainers run locally, instead of leaving it to agent
# auto-detection. `go test -race` is the key addition — concurrency races (the
# #1311 class) are caught automatically on every push.
# See docs/src/content/docs/reference/repo-config.md

commands:
test: "go test -race ./..."
lint: "make lint"
format: "gofmt -w ."
Loading