forked from nv-morpheus/morpheus-visualizations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
morpheus-visualizations.code-workspace
65 lines (65 loc) · 1.73 KB
/
morpheus-visualizations.code-workspace
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"folders": [
{
"name": "morpheus-visualizations",
"path": "./"
},
{
"name": "DFP",
"path": "./DFP"
},
{
"name": "GraphVis",
"path": "./GraphVis"
}
],
"settings": {
"files.exclude": {
"node_modules/": true,
".next/": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/build/**": true,
"**/.next/**": true,
"**/.cache/**": true,
"**/.cmake-js/**": true,
"**/node_modules/**": true
},
// Configure the xaver.clang-format plugin
"clang-format.fallbackStyle": "Google",
"clang-format.executable": "clang-format-12",
"clang-format.language.javascript.enable": true,
"clang-format.language.typescript.enable": true,
"[json]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "xaver.clang-format"
},
"[typescript]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "xaver.clang-format"
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"git.ignoreLimitWarning": true
}
}