1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-08 22:36:49 +02:00

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).
This commit is contained in:
Stefan Haller
2025-06-30 15:38:14 +02:00
parent c4de94cff0
commit 9b54dc0b28

View File

@ -2,4 +2,8 @@
"gopls": { "gopls": {
"formatting.gofumpt": true, "formatting.gofumpt": true,
}, },
"go.alternateTools": {
"golangci-lint-v2": "${workspaceFolder}/.bin/golangci-lint",
},
"go.lintTool": "golangci-lint-v2",
} }