Use go module as dependency tool instead of glide
[src/xds/xds-server.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         "webapp/dist": true,
23         "webapp/node_modules": true,
24         "**/*~": true
25     },
26     // Specify paths/files to ignore. (Supports Globs)
27     "cSpell.ignorePaths": [
28         "**/node_modules/**",
29         "**/vscode-extension/**",
30         "**/.git/**",
31         "**/vendor/**",
32         ".vscode",
33         "typings"
34     ],
35     // Words to add to dictionary for a workspace.
36     "cSpell.words": [
37         "apiv",
38         "gonic",
39         "devel",
40         "csrffound",
41         "Syncthing",
42         "STID",
43         "ISTCONFIG",
44         "socketio",
45         "ldflags",
46         "SThg",
47         "Intf",
48         "dismissible",
49         "rpath",
50         "WSID",
51         "sess",
52         "IXDS",
53         "xdsconfig",
54         "xdsserver",
55         "mfolder",
56         "inotify",
57         "Inot",
58         "pname",
59         "pkill",
60         "sdkid",
61         "CLOUDSYNC",
62         "xdsagent",
63         "gdbserver",
64         "golib",
65         "eows",
66         "mfolders",
67         "IFOLDER",
68         "flds",
69         "dflt",
70         "stconfig",
71         "reflectme",
72         "franciscocpg",
73         "crosssdk",
74         "urfave",
75         "EXEPATH",
76         "conv",
77         "Sillyf",
78         "xsapiv",
79         "EVTSDK",
80         "zillode",
81         "gerrit",
82         "ITARGET",
83         "tgts",
84         "ITERMINAL",
85         "unregister",
86         "Cifs"
87     ]
88 }