From 9b54dc0b28992cfdd161ce5f5365d7b21c5d1eb9 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Mon, 30 Jun 2025 15:38:14 +0200 Subject: [PATCH] Update VS Code settings to use golangci-lint v2 We configure it to call the same binary that the new lint script also uses (see beginning of the branch). --- .vscode/settings.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 219c87aea..f1a17a3c9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,4 +2,8 @@ "gopls": { "formatting.gofumpt": true, }, + "go.alternateTools": { + "golangci-lint-v2": "${workspaceFolder}/.bin/golangci-lint", + }, + "go.lintTool": "golangci-lint-v2", }