Add LowCollector & rename Supervisor to Monitoring
[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     "aglafb",
60     "apiv",
61     "cmdi",
62     "conv",
63     "csrffound",
64     "darkviolet",
65     "devel",
66     "dismissible",
67     "dwnl",
68     "evts",
69     "franciscocpg",
70     "gdbserver",
71     "gerrit",
72     "golib",
73     "gonic",
74     "graphx",
75     "inotify",
76     "iosk",
77     "ldflags",
78     "leftbar",
79     "nbsp",
80     "nospace",
81     "pageview",
82     "prebuild",
83     "priv",
84     "prjs",
85     "reflectme",
86     "rpath",
87     "sdkid",
88     "sebd",
89     "sess",
90     "socketio",
91     "stconfig",
92     "subpath",
93     "tabindex",
94     "tabset",
95     "tgts",
96     "topnav",
97     "topo",
98     "unmarshall",
99     "unregister",
100     "urfave",
101     "xaapiv",
102     "xdsagent",
103     "xdsapi",
104     "xdsconfig",
105     "xdspvr",
106     "xdsserver",
107     "xsapiv"
108   ],
109   // codelyzer
110   "tslint.rulesDirectory": "./webapp/node_modules/codelyzer",
111   "typescript.tsdk": "webapp/node_modules/typescript/lib",
112   "tslint.configFile": "webapp/tslint.json"
113 }