Commit 48f5aa9
committed
fix: clear remaining staticcheck + go mod tidy findings
Static Analysis findings (all real, all fixed in place):
- filter/warmup.go: rename receiver pc→p to match the other 33 methods
on PipelineCoordinator (ST1016)
- simd/simd.go:207: bytes.Index(x, y) >= 0 → bytes.Contains(x, y) (S1003)
- logging/logger_test.go:31: context.WithValue with string key → define
a local ctxKey string type (SA1029 — prevents cross-package key
collisions; the whole point of that lint)
go mod tidy: go.mod + go.sum had drifted. Lint 'Check go mod tidy' diff-
checks after tidying, which was failing on stale indirect entries.
Coverage, Import Check, Benchmark passed in the previous run; remaining
failures all from the Static Analysis + go-mod-tidy steps.1 parent 4ff635c commit 48f5aa9
5 files changed
Lines changed: 7 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
31 | | - | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
204 | 204 | | |
205 | 205 | | |
206 | 206 | | |
207 | | - | |
| 207 | + | |
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
| |||
0 commit comments