From d7eb34c7d47fca7cd763a26ec6c1854ea53f227f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Monta=C3=B1es=20Ojados?= Date: Sat, 17 Jan 2026 01:49:11 +0100 Subject: [PATCH] feat: Add VS Code Go development settings for tool environment variables and gopls configuration. --- .vscode/settings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..329043c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "go.toolsEnvVars": { + "CGO_ENABLED": "1", + "PATH": "D:\\esto_al_path\\msys64\\mingw64\\bin;${env:PATH}", + "PKG_CONFIG_PATH": "D:\\esto_al_path\\msys64\\mingw64\\lib\\pkgconfig" + }, + "gopls": { + "formatting.gofumpt": true, + "ui.diagnostic.diagnosticsDelay": "300ms", + "build.directoryFilters": [ + "-vendor" + ] + }, + "go.lintOnSave": "package" +} \ No newline at end of file