Use go module as dependency tool instead of glide
[src/xds/xds-gdb.git] / .vscode / settings.json
1 // Place your settings in this file to overwrite default and user settings.
2 {
3     // Specify GOPATH here to override the one that is set as environment variable. The inferred GOPATH from workspace root overrides this, if go.inferGopath is set to true.
4     "go.gopath": "${workspaceRoot}/../../../../../..",
5     "go.toolsEnvVars": {
6         "GO111MODULE": "on"
7     },
8     // The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
9     "editor.tabSize": 4,
10     // Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
11     "editor.insertSpaces": true,
12     // When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
13     "editor.detectIndentation": true,
14     // Configure glob patterns for excluding files and folders.
15     "files.exclude": {
16         "**/.tmp": true,
17         ".git": true,
18         "vendor/": true,
19         "debug": true,
20         "bin": true,
21         "tools": true
22     },
23     // Words to add to dictionary for a workspace.
24     "cSpell.words": [
25         "apiv",
26         "iosk",
27         "zhouhui",
28         "ldflags",
29         "socketio",
30         "xdsconfig",
31         "golib",
32         "sebd",
33         "ccmd",
34         "aargs",
35         "eenv",
36         "gdbserver",
37         "NOFIX",
38         "XDSAGENT",
39         "xaapiv",
40         "joho",
41         "sdkid",
42         "godotenv",
43         "sigs",
44         "igdb",
45         "TCGETS",
46         "TCSETS",
47         "tcgetattr",
48         "tcsetattr"
49     ]
50 }