075120d8cce834dc8f5fcf1c539375c3ab2f8f54
[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
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   // .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     "glide.lock": true,
21     "vendor": true,
22     "debug": true,
23     "bin": true,
24     "tools": true,
25     "webapp*/dist": true,
26     "webapp*/node_modules": true
27   },
28   // Specify paths/files to ignore. (Supports Globs)
29   "cSpell.ignorePaths": [
30     "**/node_modules/**",
31     "**/vscode-extension/**",
32     "**/.git/**",
33     "**/vendor/**",
34     "**/webapp/dist/**",
35     ".vscode",
36     "typings"
37   ],
38   // Words to add to dictionary for a workspace.
39   "cSpell.words": [
40     "CIFS",
41     "Checkboxes",
42     "EVTSDK",
43     "EXEPATH",
44     "Flds",
45     "Grafana",
46     "IPROJECT",
47     "ISTCONFIG",
48     "IXDS",
49     "Inot",
50     "Intf",
51     "PATHMAP",
52     "STID",
53     "SThg",
54     "Sillyf",
55     "Syncthing",
56     "Truthy",
57     "WSID",
58     "XDSSUPERV",
59     "abortinstall",
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 }