Ruona Onobrakpeya
Ruona Onobrakpeya
This resolves #3619 and has some minor refactor in regards to reusable constants. As mentioned there, the `@sqlc-vet-disable` query annotation now accepts a list of rules to skip: ```sql /*...
### What do you want to change? Currently, the only way to [disable the vetting of rules](https://docs.sqlc.dev/en/stable/howto/vet.html#opting-out-of-lint-rules) for a query is with the `@sqlc-vet-disable` flag. The problem with this is...
I'm evaluating tview against [bubbletea](https://github.com/charmbracelet/bubbletea) for a basic CLI tool. While tview ticks most of my boxes, an essential functionality I need is launching the program inline in the terminal....
Hey, there. Great project. I recently started using envdoc and wanted to make some docs with Markdown tables, but realised that wasn't a built-in format. So I implemented custom template...
**Tested Version:** 1.8.0 Nested structs (both named and anonymous) are not converted to children when using caarlos0 as a target. For example, with this config: ```go package main //go:generate go...
**Tested Version:** 1.8.0 This seems to be the cleanenv version of #63. ```go package main //go:generate go run ../../ -output doc.txt -target cleanenv -format plaintext type Config struct { Location...
### What version of GCI are you using? v0.13.6 (via golangci-lint) ### Details Currently, single-imports seem to be ignored. ```go package main import "time" ``` formats as: ```go package main...
In both the [OpenAPI specification](https://spec.openapis.org/oas/v3.1.0#fixed-fields-7) and [Huma's comments](https://github.com/danielgtaylor/huma/blob/689a87da011dd155d23b8324968f9f786fef5796/openapi.go#L702), the `OperationID` is described to be unique: > Unique string used to identify the operation. The id MUST be unique among all...
I was working on validating an image payload and noticed there was no wrapper for code 413 (Request entity too large), so I added one for that and all other...