From f4ad6b4bef8608b2b3b89e31eeae82958261e99d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 11 Jun 2025 04:07:14 +0100 Subject: [PATCH] feat(language/go): use gofumpt in gopls formatting --- settings.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/settings.json b/settings.json index ac6fe4d..9cecc49 100644 --- a/settings.json +++ b/settings.json @@ -379,6 +379,7 @@ ], "go.useLanguageServer": true, "gopls": { + "formatting.gofumpt": true, "ui.diagnostic.analyses": { "shadow": true }, @@ -808,5 +809,11 @@ }, "workbench.action.focusActiveEditorGroup" ] + }, + "go.disableConcurrentTests": true, + "go.editorContextMenuCommands": { + "testFile": true, + "testPackage": true, + "fillStruct": true } }