forked from getsentry/XcodeBuildMCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
42 lines (42 loc) · 1.16 KB
/
settings.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"eslint.useFlatConfig": true,
"eslint.validate": [
"javascript",
"typescript"
],
"eslint.format.enable": true,
"eslint.nodePath": "${workspaceFolder}/node_modules",
"eslint.workingDirectories": [
{
"directory": "${workspaceFolder}",
"changeProcessCWD": true
}
],
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsserver.maxTsServerMemory": 4096,
"javascript.validate.enable": false,
"typescript.validate.enable": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.shellIntegration.decorationsEnabled": "never",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"vitest.shellType": "child_process",
"vitest.nodeExecutable": "/usr/bin/env",
"vitest.nodeExecArgs": [
"node"
]
}