Alexander Staubo
Alexander Staubo
Adds config option `AlwaysIncludeTrailingComma`, which forces the writing of commas in arrays/slices/maps. Useful in tests to avoid false positives when diffing. This is a prerequisite to resolving [this Testify issue](https://github.com/stretchr/testify/issues/288)....
If you log a message containing linebreaks, ain will only prefix the first line with the "preamble". This might be correct, but it poses a problem with most syslog servers...
For example, `unicorn` is not signed: ``` $ gem install unicorn -P HighSecurity gem install unicorn -P HighSecurity ERROR: While executing gem ... (Gem::Security::Exception) unsigned gems are not allowed by...
We use this convention: ``` import {a, b, c} from './x'; ``` Your package rewrites this as: ``` import { a, b, c } from './x'; ``` ...which won't work...
The Ubuntu image is 6.5GB (!) compressed. I couldn't even pull this image on my laptop today, since I "only" allocate 45GB to Docker Desktop: ``` $ docker pull nektos/act-environments-ubuntu:18.04...
This is not accepted: ```json { "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://example.com/myschema", "type": "object", "properties": { "foo": { "type": "object" } } } ``` Fails with: ``` schema type has no properties:...
This appears to only affect reflect mode. Source mode works correctly. It may be that this bug exists because type aliases are not available through reflection. If that is the...
## Client PubSub client 1.39 and pstest. ## Environment Go 1.22. ## Code and Dependencies I've created a repro [here](https://github.com/atombender/pubsub-bug-repro). Run with: ```shell $ go test -v . -count=10 ```...
I have a recurring problem with `SIGINT` being ignored in my shells, which I've been able to narrow down to zsh-histdb. Everything works as expected, except ctrl-c suddenly stops working...
Having `.mode box` in `~/.sqliterc` breaks histdb: ``` /Users/alex/.zsh/zsh-histdb/histdb-migrate:8: bad math expression: illegal character: ^" Parse error near line 10: near "1": syntax error ──────────────┐ │ 1+max(session) │ ├── ```...