From dee961f2cb24772508009fa64c66f8d2d9d1142c Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 8 Nov 2025 22:13:18 +0000 Subject: [PATCH] chore(settings): update Go format tool to default, enable auto-update for tools, and add remote platform configurations --- settings.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/settings.json b/settings.json index 4e9b34b..1604662 100644 --- a/settings.json +++ b/settings.json @@ -546,7 +546,7 @@ "testPackage": true, "fillStruct": true }, - "go.formatTool": "gofumpt", + "go.formatTool": "default", "go.inlayHints.constantValues": true, "go.lintOnSave": "workspace", "go.lintTool": "golangci-lint-v2", @@ -556,12 +556,13 @@ "-count=1" ], "go.testTimeout": "90s", - "go.toolsManagement.autoUpdate": false, + "go.toolsManagement.autoUpdate": true, "go.useLanguageServer": true, "gopls": { "formatting.gofumpt": true, "ui.diagnostic.analyses": { - "shadow": true + "shadow": true, + "appendclippe": true }, "ui.diagnostic.staticcheck": true },