Jason Mavandi
Jason Mavandi
I want this for having multiple go packages with their own `go.mod` files within the same repo. Go allows versioning the subpackages by tagging like `subfolder/v0.0.1`. I would like to...
Change https://github.com/google/styleguide/blob/gh-pages/go/decisions.md?plain=1#L2981 ```golang func IsNotNil(t *testing.T, name string, val interface{}) { ``` to ```golang func IsNotNil(t *testing.T, name string, val any) { ``` Change these two https://github.com/google/styleguide/blob/gh-pages/go/best-practices.md?plain=1#L1258 https://github.com/google/styleguide/blob/gh-pages/go/best-practices.md?plain=1#L1275 ```golang func...