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 56961b3 commit 209a327Copy full SHA for 209a327
.gitignore
@@ -10,3 +10,4 @@
10
11
# Output of the go coverage tool, specifically when used with LiteIDE
12
*.out
13
+vendor/
.vscode/settings.json
@@ -0,0 +1,18 @@
1
+{
2
+ "files.exclude": {
3
+ "**/.git": true,
4
+ "**/.DS_Store": true,
5
+ ".gitignore": true,
6
+ "vendor/": true,
7
+ ".vscode": true,
8
+ "build*": true,
9
+ "LICENSE": true,
+ "appveyor.yml": true,
+ "Dockerfile": true
+ },
+
14
+ "go.formatTool": "gofmt",
15
+ "go.formatFlags": [
16
+ "-s"
17
+ ]
18
+}
0 commit comments