Emily Marigold Klassen

Results 159 comments of Emily Marigold Klassen

In editors which use [typescript-language-server](https://github.com/typescript-language-server/typescript-language-server), this can be disabled with the `diagnostics.ignoredCodes` option. For example, i use `helix` and in my `~/.config/helix/languages.toml`, i have ```toml [language-server.typescript-language-server] config.diagnostics.ignoredCodes = [ 80001,...

The `BetterUxWrapper` has also been described as `ExclusifyUnion` in [this StackOverflow answer](https://stackoverflow.com/questions/46370222/why-does-a-b-allow-a-combination-of-both-and-how-can-i-prevent-it), and I called it `UnionExpand` when i [independently figured it out](https://gist.github.com/forivall/ddd9255b7bb47ce0a7a9b90747d9afdb) (before finding that StackOverflow answer)

`handleWorkspaceSymbolRequest` is extremely slow. With some manually injected logging lines, using vscode's quick pick menu (ctrl/cmd+p) to search for a file results in the following: ``` [Info - 12:47:04 AM]...

To reproduce, I would try downloading a large graphql schema, such as github's graphql api, put it in your repository, ensure that it's part of your projects in your graphql.config.json,...

This will need [my additional changes (joutvhu/prettier-plugin-sort-imports#2)](https://github.com/joutvhu/prettier-plugin-sort-imports/pull/2) before merging, as adding tests revealed some critical issues.

This pr is now obsolete with https://github.com/trivago/prettier-plugin-sort-imports/pull/339 merged now, so i think this can be safely closed.

A workaround i can use on macos is to run `procs` without the setuid bit, eg. from my own compilation - then it only reads my own procsses.

Yeah I saw the deprecation notices on some of the refactor tools, but I didn't have the time to actually go into looking at your implementation yet. That's great to...

Also the regex for identifiers was incorrect. Identifiers should not be able to include hyphens.