Felix Becker
Felix Becker
build-server.ps1 runs `Remove-Item $dir -Recurse`, but because the directories are not empty and `-Force` is not used, this fails. https://github.com/OmniSharp/omnisharp-node-client/blob/fcb57e1f5c9d4f39559499861fd5bc031964b787/build-server.ps1#L12 ``` Remove-Item : You do not have sufficient access rights...
It would be great if this could be piped into e.g. `gql2ts`
For example, what error is being thrown if the format is not supported? Would be nice to catch this and send a 415.
One thing I found myself always prepending to all my GitHub action PowerShell script is setting `$ProgressPreference` and `$InformationPreference`. - `$ProgressPreference` to `'Silent'`, because on the GitHub action log PowerShell...
This extension is an important built-in extension, it needs test coverage so we don't regress on its functionality.
With the old search field, often I would go (or scope) to a repo, then type the name of a symbol. I'd then get symbol suggestions, select one, and jump...
Lodash v3 triggers "critical" security warnings when installing `talon` with npm. I removed the lodash dependency since all usages of it can easily be replaced with APIs that are still...
Node supports the flag `--experimental-test-coverage`, which emits coverage to test reporters as the `test:coverage` event: https://nodejs.org/api/test.html#collecting-code-coverage It would be awesome if non-covered lines in the PR could be annotated by...
When you use the `JSON_OBJECT()` function from the SQL standard (implemented in PostgreSQL 16), the formatter removes/does not insert a space between the `:` delimiting the key and value, which...
`ESC` `]` aka `OSC` (operation system control) sequences are used in terminals to control things like the terminal window, or insert hyperlinks. From wikipedia: > Starts a control string for...