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
| { "editor.fontFamily": "'Sarasa Mono SC', 'Sarasa Term SC', monospace", "editor.fontSize": 14, "editor.fontWeight": "normal", "editor.lineHeight": 22, "editor.letterSpacing": 0,
"editor.minimap.enabled": false, "editor.cursorBlinking": "solid", "editor.smoothScrolling": false, "editor.stickyScroll.enabled": false, "editor.formatOnPaste": false,
"editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.bracketPairColorization.enabled": true, "editor.linkedEditing": true, "editor.inlineSuggest.enabled": true,
"files.autoSave": "afterDelay", "files.autoSaveDelay": 1000, "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.exclude": { "**/.DS_Store": true, "**/node_modules": true }, "files.watcherExclude": { "**/.git/objects/**": true, "**/node_modules/**": true },
"workbench.startupEditor": "none", "workbench.editor.enablePreview": false, "workbench.colorTheme": "GitHub Light", "workbench.iconTheme": "material-icon-theme",
"terminal.integrated.fontFamily": "'Sarasa Mono SC', 'Sarasa Term SC', monospace", "terminal.integrated.fontSize": 13, "terminal.integrated.fontWeight": "normal", "terminal.integrated.lineHeight": 1.2,
"explorer.confirmDelete": false, "explorer.confirmDragAndDrop": false,
"git.autofetch": true, "git.confirmSync": false, "git.enableSmartCommit": true,
"search.exclude": { "**/node_modules": true, "**/dist": true, "**/.git": true }, "search.useIgnoreFiles": true,
"telemetry.telemetryLevel": "off", "editor.accessibilitySupport": "off",
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" },
"AI.toolcall.confirmMode": "autoRun" }
|