-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp.code-workspace
More file actions
49 lines (49 loc) · 1.48 KB
/
mcp.code-workspace
File metadata and controls
49 lines (49 loc) · 1.48 KB
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
{
"folders": [
{
"name": "MCP",
"path": "."
}
],
"extensions": {
"recommendations": [
"oxc.oxc-vscode",
"mikestead.dotenv",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"orta.vscode-jest",
"naumovs.node-modules-resolve",
"esbenp.prettier-vscode",
"gruntfuggly.todo-tree",
"visualstudioexptteam.vscodeintellicode"
]
},
"files.watcherExclude": {
"**/.git/**": true,
"**/var/**": true,
"**/volumes/**": true,
"**/node_modules/*/**": true
},
"settings": {
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.formatOnSaveMode": "file",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"javascript.format.enable": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"typescript.format.enable": true,
"typescript.tsdk": "node_modules/typescript/lib",
"files.insertFinalNewline": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript", "typescript"],
"jest.jestCommandLine": "node --unhandled-rejections=none jest -c ./jest.config.js --forceExit",
"cSpell.words": [
],
"js/ts.implicitProjectConfig.experimentalDecorators": true
}
}