-
Notifications
You must be signed in to change notification settings - Fork 21
/
workspace.code-workspace
92 lines (92 loc) · 2.18 KB
/
workspace.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"folders": [
{
"path": "packages/report-schema",
"name": "report-schema",
},
{
"path": "packages/metrics",
"name": "metrics",
},
{
"path": "packages/metrics-scala",
"name": "metrics-scala",
},
{
"path": "packages/elements",
"name": "elements",
},
{
"path": "packages/real-time",
"name": "real-time",
},
{
"path": ".",
"name": "parent",
},
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bierner.lit-html",
"bradlc.vscode-tailwindcss",
"ms-playwright.playwright",
],
},
"settings": {
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dist": true,
"**/dist-tsc": true,
"**/*.tsbuildinfo": true,
"**/reports/mutation": true,
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
"typescript.tsdk": "./node_modules/typescript/lib",
"task.autoDetect": "off",
"cSpell.words": ["autoloader", "bootswatch", "clazz", "clike", "prismjs", "templating", "Theming"],
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.watcherExclude": {
"**/target": true,
},
"cSpell.language": "en",
"[scala]": {
"editor.defaultFormatter": "scalameta.metals",
},
"liveServer.settings.multiRootWorkspaceName": "real-time",
"files.associations": {
"*.css": "tailwindcss",
},
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Attach",
"port": 9229,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "node",
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": ["<node_internals>/**"],
"program": "${file}",
},
],
},
}