Caleb Spare
Caleb Spare
Is `go test -run xxxxx std cmd` a reasonable workaround for at least some of those use cases?
-run=nope and -run nope are equivalent. @mattklein123 no tests are being run (probably). Use -v to confirm. Please use the mailing list if you have further questions about go test.
Using exp/rand makes it cheaper to create per-goroutine sources, but sometimes it is not convenient to structure the code this way. I still think the best solution here is to...
I think that having a concise anonymous function syntax is more compelling in other languages that rely more on callback-based APIs. In Go, I'm not sure the new syntax would...
@xaurx could you clarify exactly what "Cold CI build time" means? Is that the time it takes merely to run `go build` on your project on a fresh worker?
I don't know about/use "stylecheck". I'm referring to ST???? checks in staticcheck.
> As for actually adding the check: I'll have to play around with it. There are certainly valid capitalized local variable names. For example, `T` is a common occurrence in...
In 2023 I think this check ought to enforce that function parameters and local vars use lowercase names and type parameters start with uppercase.
Sure, feel free to send a PR.
I intentionally left this out when implementing the "How to ns" rules because there are some [hard-to-resolve questions](https://github.com/cespare/goclj/pull/85#issuecomment-777754824) about how, exactly, it should work. To repeat what I wrote over...