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
| {
| "prettier.enable": false,
| "editor.formatOnSave": true,
| "editor.codeActionsOnSave": {
| "source.fixAll.eslint": "explicit"
| },
| "eslint.format.enable": true,
| "[python]": {
| "editor.formatOnType": true
| },
| "[html]": {
| "editor.defaultFormatter": "vscode.html-language-features"
| },
| "[typescriptreact]": {
| "editor.defaultFormatter": "vscode.typescript-language-features"
| },
| "[javascriptreact]": {
| "editor.defaultFormatter": "vscode.typescript-language-features"
| },
| "[jsonc]": {
| "editor.defaultFormatter": "vscode.json-language-features"
| },
| "typescript.tsdk": "node_modules/typescript/lib",
| "typescript.enablePromptUseWorkspaceTsdk": true,
| "npm.packageManager": "pnpm"
| }
|
|