Improved silly logging.
[src/xds/xds-agent.git] / .vscode / settings.json
1 // Place your settings in this file to overwrite default and user settings.
2 {
3   // Controls the rendering size of tabs in characters.
4   // If set to auto, the value will be guessed based on the opened file.
5   "editor.tabSize": 2,
6   // Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
7   "editor.insertSpaces": true,
8
9   // .jsbeautifyrc not at root directory but under webapp/
10   "beautify.config": "webapp/.jsbeautifyrc",
11
12   // Configure glob patterns for excluding files and folders.
13   "files.exclude": {
14     ".tmp": true,
15     ".git": true,
16     "glide.lock": true,
17     "vendor": true,
18     "debug": true,
19     "bin": true,
20     "tools": true,
21     "webapp*/dist": true,
22     "webapp*/node_modules": true
23   },
24   // Specify paths/files to ignore. (Supports Globs)
25   "cSpell.ignorePaths": [
26     "**/node_modules/**",
27     "**/vscode-extension/**",
28     "**/.git/**",
29     "**/vendor/**",
30     "**/webapp/dist/**",
31     ".vscode",
32     "typings"
33   ],
34   // Words to add to dictionary for a workspace.
35   "cSpell.words": [
36     "apiv", "gonic", "devel", "csrffound", "Syncthing", "STID", "ISTCONFIG",
37     "socketio", "ldflags", "SThg", "stconfig", "Intf", "dismissible", "rpath",
38     "WSID", "sess", "IXDS", "golib", "xdsapi", "xdsconfig", "xdsserver",
39     "xdsagent", "nbsp", "Inot", "inotify", "cmdi", "sdkid", "Flds", "prjs",
40     "iosk", "CIFS", "IPROJECT", "unregister", "conv", "PATHMAP", "nospace",
41     "graphx", "Truthy", "darkviolet", "dwnl", "topnav", "leftbar", "urfave",
42     "unmarshall", "sebd", "priv", "evts", "gdbserver", "tabset", "pageview",
43     "subpath", "prebuild", "reflectme", "franciscocpg", "xsapiv", "xaapiv",
44     "Sillyf"
45   ],
46   // codelyzer
47   "tslint.rulesDirectory": "./webapp/node_modules/codelyzer",
48   "typescript.tsdk": "webapp/node_modules/typescript/lib",
49   "tslint.configFile": "webapp/tslint.json"
50 }