Rob Figueiredo
Rob Figueiredo
Maybe it could be part of the toolchain configuration? ``` go_register_toolchains( go_version = "1.17.6", repository_timeout = 30, )
This is the code that resolves an import path to a remote module: https://github.com/bazelbuild/bazel-gazelle/blob/master/repo/remote.go#L354-L368 Testing locally without any Bazel repos defined, only a go.mod specifying an earlier version, I can...
I can't think of any reason that this wouldn't work, other than being some significant implementation work.
From https://github.com/bazelbuild/bazel-gazelle/blob/master/repository.rst#go_repository > patches > A list of patches to apply to the repository after gazelle runs. I think the documentation is clear and correct. If you're interested in putting...
So you're saying that additional definitions are not required to be collected under a "definitions" keyword, but the example from the link: ``` { "type": "array", "items": { "$ref": "#/definitions/positiveInteger"...
The mismatch in the second example between $ref and the location of the definition was unintentional. I meant it to be this: ``` { "type": "array", "items": { "$ref": "#/positiveInteger"...
The spec seems to agree with me with some SHOULDs https://json-schema.org/latest/json-schema-core.html#rfc.section.8.3.1 ## 8.3.1. Loading a referenced schema The use of URIs to identify remote schemas does not necessarily mean anything...
Here's a draft, but I ran into some issue getting the tests working. It seems that the references in the test case are not actually attempted to be resolved, for...
LG, just 1 comment. It would be nice if it was more flexible in general -- the previous messages were optimized for showing the error message inline next to the...
If your action looks like this: ``` go func (c App) Index(customerId int) revel.Result ``` and it's invoked with: ``` /App/Index?customerId=abc ``` then it may be a good idea to...