Christopher Dignam
Christopher Dignam
Jest has a great feature for matching specific types for fields: https://jestjs.io/docs/snapshot-testing#property-matchers It would be great if this library also support this.
My `.env` file is at the root of my project, but when running tests, the current working directory is within test modules. This would match the behavior of https://github.com/dotenv-rs/dotenv/tree/3c1a77bc95821777e5ceb996c5e0b082f2a3ea38#usage and...
Gorm uses non-standard error format to support it's chainable API. It would be nice if there was a way to configure wrapcheck to match a `*.\.Error` regex ```go tx :=...
The configuration paths have changed with Sublime Text 4 so importing settings no longer works. These paths need to be updated to include support for `Sublime Text 4`: https://github.com/microsoft/vscode-sublime-keybindings/blob/0b52e3f6f3ec2dcdbdeb8b3c2c7208d8e6fc3a38/src/sublimeFolderFinder.ts#L9
Input SQL ```sql create table app.users ( id bigint generated by default as identity primary key, "name" text not null, created_ts timestamptz not null default now(), age smallint not null...
I think Squawk shouldn't complain here because there won't be any rows in our table so the lock will be short. ``` stdin:1:0: warning: adding-foreign-key-constraint 1 | CREATE TABLE IF...
It would be nice if segmentio/events created sentry breadcrumbs for each log event. Looking at this Sentry issue, https://github.com/getsentry/sentry-go/issues/43, it seems like the implementation would be something like this: https://github.com/getsentry/sentry-go/issues/43#issuecomment-687436204
## Summary The current net/http handler uses the [URL request path](https://github.com/getsentry/sentry-go/blob/33f7b6930327848cea5fdb2bdc65b5992632aef9/http/sentryhttp.go#L90) to define the transaction name of a request. A gorilla/mux handler could use mux's [`Route.GetPathTemplateAdd`](https://pkg.go.dev/github.com/gorilla/mux#Route.GetPathTemplate) method to define the...
This code breaks on ``` ssh://[email protected]/acme/app.git ```