Gary Miller
Gary Miller
I'm not experience in Javascript or TypeScript. The readme assumes a lot of background knowledge. It also appears to be out of date (eg version 0.2.0 is no longer valid)....
Please create a go.mod tagged v0.1.x release. Simple as ``` go mod init github.com/envoyproxy/protoc-gen-validate rm Gopkg* git add -u git commit -m "go.mod" git tag -a -m "go.mod" v0.1.1 git...
We find it useful to maintain part of the backlog inside cards as checklists. The items are then turned into cards and moved through the lists. Would it be useful...
go.mod
added go.mod and changed github.com/urfave/cli import
This allow clients of the opts library to iterator through the subcommands structure. Useful for generating documentation for all subcommands.
Allows for the following ``` go var ( rflg = &types.Root{} cliBldr = opts.New(rflg). Name("wx"). EmbedGlobalFlagSet(). Complete() ) func main() { cli := cliBldr.Parse() err := cli.Run() if err !=...
radlc
``` radlc help ADL code generation cli tool Usage: radlc [OPTIONS] Commands: gen generate source based on Workspace & Packages files (adl.work.json & adl.pkg.json) verify verify ADL ast generate the...
Created a tree-sitter grammar for [ADL](https://github.com/adl-lang/adl) to get syntax highlighting (and other goodness) in Helix.
@qianlnk thanks for retag, I'm finding it really useful. It currently panics when using `oneof`s. Here a fix, but it would be really nice if we could put tags on...
This "Official Go SDK for Docker" causes an error when using `go mod tidy` See PR #18 . ``` $ go mod tidy github.com/a/b/c imports docker.io/go-docker tested by docker.io/go-docker.test imports...