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