Use go module as dependency tool instead of glide
[src/xds/xds-agent.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   // .jsbeautifyrc not at root directory but under webapp/
15   "beautify.config": "webapp/.jsbeautifyrc",
16   // Configure glob patterns for excluding files and folders.
17   "files.exclude": {
18     ".tmp": true,
19     ".git": true,
20     "vendor": true,
21     "debug": true,
22     "bin": true,
23     "tools": true,
24     "webapp*/dist": true,
25     "**/node_modules": true,
26   },
27   // Specify paths/files to ignore. (Supports Globs)
28   "cSpell.ignorePaths": [
29     "**/node_modules/**",
30     "**/vscode-extension/**",
31     "**/.git/**",
32     "**/vendor/**",
33     "**/webapp/dist/**",
34     ".vscode",
35     "typings"
36   ],
37   // Words to add to dictionary for a workspace.
38   "cSpell.words": [
39     "CIFS",
40     "Checkboxes",
41     "EVTSDK",
42     "EXEPATH",
43     "Flds",
44     "Grafana",
45     "IPROJECT",
46     "ISTCONFIG",
47     "IXDS",
48     "Inot",
49     "Intf",
50     "PATHMAP",
51     "STID",
52     "SThg",
53     "Sillyf",
54     "Syncthing",
55     "Truthy",
56     "WSID",
57     "XDSSUPERV",
58     "abortinstall",
59     "apiv",
60     "cmdi",
61     "conv",
62     "csrffound",
63     "darkviolet",
64     "devel",
65     "dismissible",
66     "dwnl",
67     "evts",
68     "franciscocpg",
69     "gdbserver",
70     "gerrit",
71     "golib",
72     "gonic",
73     "graphx",
74     "inotify",
75     "iosk",
76     "ldflags",
77     "leftbar",
78     "nbsp",
79     "nospace",
80     "pageview",
81     "prebuild",
82     "priv",
83     "prjs",
84     "reflectme",
85     "rpath",
86     "sdkid",
87     "sebd",
88     "sess",
89     "socketio",
90     "stconfig",
91     "subpath",
92     "tabindex",
93     "tabset",
94     "tgts",
95     "topnav",
96     "topo",
97     "unmarshall",
98     "unregister",
99     "urfave",
100     "xaapiv",
101     "xdsagent",
102     "xdsapi",
103     "xdsconfig",
104     "xdspvr",
105     "xdsserver",
106     "xsapiv"
107   ],
108   // codelyzer
109   "tslint.rulesDirectory": "./webapp/node_modules/codelyzer",
110   "typescript.tsdk": "webapp/node_modules/typescript/lib",
111   "tslint.configFile": "webapp/tslint.json"
112 }