tamayika
tamayika
Is there any way to use custom go vet tool with gopls enabled in >= 0.21? Or is there any way to embed custom analysis to gopls? Here is my...
Thanks for the support. `go.lintTool` is already used by other lint tool(revive) in my configuration. So if `go.lintTool` supports multiple linters and go vet command with custom vet tool, it...
Thanks for the release. I confirmed it works now with my configuration.
If I delete vendor directory, it works. This is also happen in gopls because it used goimports internally. It show below error. ``` [Info - 4:10:57 PM] 2024/02/16 16:10:57 background...
> But they are too many and will make rueidis.XXX auto-completion be messy. How about adding sub package like `cmds` to export all commands? I think it does not make...
I think several options should exists to use otel metrics. * `spanner.EnableOpenTelemetryMetrics()` activates all client metrics. `ClientConfig.OpenTelemetryMeterProvider` is optional.(i.e. use global meter provider if nil) * When `ClientConfig.OpenTelemetryMeterProvider` is set...
Yes, unsaved content is not saved to file, so linter can not read it from file.
Yes, it is possible to make `filename` placeholder optional in `format` setting.
@mgzenitech I have supported it in `0.4.1`. Also, I added `extraArgs` to support `change` and `save` event in one configuration. Please see [eslint example](https://github.com/tamayika/vscode-any-lint/blob/main/examples/eslint.jsonc)
`${file}` matches to 0 or more characters, so empty string can be matched. I think output format must be the same both `--stdin` and existing file. `:0 ruleId: some message`...