Rationalize VSCode settings for all xds repo
[src/xds/xds-cli.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",
27                 "iosk",
28                 "zhouhui",
29                 "ldflags",
30                 "socketio",
31                 "xdsconfig",
32                 "sdkid",
33                 "godotenv",
34                 "crosssdk",
35                 "prjs",
36                 "xaapiv",
37                 "urfave",
38                 "sebd",
39                 "golib",
40                 "joho",
41                 "XDSAGENT",
42                 "reflectme",
43                 "franciscocpg",
44                 "gerrit",
45                 "EVTSDK",
46                 "tgts",
47                 "sigs",
48                 "rdfs",
49                 "goselect",
50                 "creack",
51                 "Sillyf"
52         ]
53 }