-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathsettings.json
48 lines (48 loc) · 1.69 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// If one would like to add/remove/modify user preferences without modifying the content of the
// workspace settings file, then one would need to modify the `settings.json` under here:
// - Windows: %APPDATA%\Code\User\settings.json
// - Linux: $HOME/.config/Code/User/settings.json
// - Mac: $HOME/Library/Application Support/Code/User/settings.json
{
"tslint.enable": true,
"tslint.configFile": "configs/strict.tslint.json",
"editor.formatOnSave": true,
"search.exclude": {
"**/node_modules": true,
"**/lib": true,
"**/coverage": true
},
"lcov.path": [
"packages/core/coverage/lcov.info",
"packages/cpp/coverage/lcov.info",
"packages/editor/coverage/lcov.info",
"packages/filesystem/coverage/lcov.info",
"packages/extension-manager/coverage/lcov.info",
"packages/go/coverage/lcov.info",
"packages/java/coverage/lcov.info",
"packages/languages/coverage/lcov.info",
"packages/monaco/coverage/lcov.info",
"packages/navigator/coverage/lcov.info",
"packages/keymaps/coverage/lcov.info",
"packages/preferences/coverage/lcov.info",
"packages/process/coverage/lcov.info",
"packages/python/coverage/lcov.info",
"packages/terminal/coverage/lcov.info",
"packages/workspace/coverage/lcov.info",
"packages/task/coverage/lcov.info"
],
"lcov.watch": [
{
"pattern": "**/*.spec.ts",
"command": "yarn test:theia"
}
],
"editor.insertSpaces": true,
"[typescript]": {
"editor.tabSize": 4
},
"[json]": {
"editor.tabSize": 2
},
"typescript.tsdk": "node_modules/typescript/lib"
}