Rationalize VSCode settings for all xds repo
[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
6         // The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
7         "editor.tabSize": 4,
8         // Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
9         "editor.insertSpaces": true,
10
11         // When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
12     "editor.detectIndentation": true,
13
14     // Configure glob patterns for excluding files and folders.
15     "files.exclude": {
16         "**/.tmp": true,
17         ".git": true,
18         "glide.lock": true,
19         "vendor/": true,
20         "debug": true,
21         "bin": true,
22         "tools": true
23     },
24     // Words to add to dictionary for a workspace.
25     "cSpell.words": [
26         "apiv", "iosk", "zhouhui", "ldflags", "socketio", "xdsconfig", "golib",
27         "sebd", "ccmd", "aargs", "eenv", "gdbserver", "NOFIX", "XDSAGENT",
28         "xaapiv", "joho", "sdkid", "godotenv", "sigs", "igdb", "TCGETS",
29         "TCSETS", "tcgetattr", "tcsetattr"
30     ]
31 }