We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3383d73 commit 265e2c9Copy full SHA for 265e2c9
.vscode/tasks.json
@@ -0,0 +1,25 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "Run Go Tests",
6
+ "type": "shell",
7
+ "command": "go test ./...",
8
+ "group": "test",
9
+ "problemMatcher": ["$go"],
10
+ "presentation": {
11
+ "reveal": "always"
12
+ }
13
+ },
14
15
+ "label": "Go Mod Tidy, Lint & Fmt",
16
17
+ "command": "go mod tidy && golangci-lint run && golangci-lint fmt ./...",
18
+ "group": "build",
19
20
21
22
23
24
+ ]
25
+}
0 commit comments