Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
214df3976f |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"tabWidth": 4,
|
||||||
|
"proseWrap": "always"
|
||||||
|
}
|
||||||
@@ -20,6 +20,10 @@ main cannot regress.
|
|||||||
|
|
||||||
# Completed Steps
|
# Completed Steps
|
||||||
|
|
||||||
|
- 2026-09-22: Added a root `.prettierrc` (`tabWidth: 4`,
|
||||||
|
`proseWrap: always`) pinning the project prettier settings, and
|
||||||
|
dropped the now-redundant inline `--tab-width 4` from `script/fmt` so
|
||||||
|
the config file is the single source of truth (#197).
|
||||||
- 2026-09-22: Fixed the flaky `t.TempDir` cleanup race in
|
- 2026-09-22: Fixed the flaky `t.TempDir` cleanup race in
|
||||||
`internal/service/webhook` by tracking the async deployment goroutine
|
`internal/service/webhook` by tracking the async deployment goroutine
|
||||||
in a `sync.WaitGroup` and exposing `WaitForDeployments`; tests now
|
in a `sync.WaitGroup` and exposing `WaitForDeployments`; tests now
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@ main() {
|
|||||||
cd "$ROOT"
|
cd "$ROOT"
|
||||||
gofmt -s -w .
|
gofmt -s -w .
|
||||||
goimports -w .
|
goimports -w .
|
||||||
npx prettier --write --tab-width 4 static/js/*.js
|
npx prettier --write static/js/*.js
|
||||||
}
|
}
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
|
|||||||
Reference in New Issue
Block a user