Skip to content

Commit 920346c

Browse files
committed
misc: add vscode default settings
Signed-off-by: Otto Bittner <[email protected]>
1 parent e51f582 commit 920346c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.vscode/settings.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
// Use gofumpt as formatter.
3+
"gopls": {
4+
"formatting.gofumpt": true,
5+
"build.buildFlags": ["-tags", "e2e"]
6+
},
7+
// Use golangci-lint as linter. Make sure you've installed it.
8+
"go.lintTool": "golangci-lint",
9+
"go.lintFlags": [
10+
"--fast"
11+
]
12+
}

0 commit comments

Comments
 (0)