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
|
{ "editor.fontSize": 14, "editor.fontFamily": "'JetBrains Mono', 'Fira Code', Menlo, monospace", "editor.fontLigatures": true, "editor.lineHeight": 24, "editor.cursorBlinking": "smooth", "editor.cursorSmoothCaretAnimation": "on", "editor.smoothScrolling": true, "editor.minimap.enabled": false, "editor.renderWhitespace": "selection", "editor.indentSize": "tabSize",
"files.autoSave": "onFocusChange", "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.defaultFormatter": "esbenp.prettier-vscode",
"[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.tabSize": 2, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" } }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.tabSize": 2 }, "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.tabSize": 4, "editor.formatOnType": true }, "[markdown]": { "editor.wordWrap": "on", "editor.quickSuggestions": { "comments": "off", "strings": "off", "other": "off" }, "editor.fontSize": 15 }, "[plaintext]": { "editor.wordWrap": "on", "editor.fontSize": 15 },
"python.languageServer": "Pylance", "python.analysis.typeCheckingMode": "basic", "python.analysis.autoImportCompletions": true, "python.terminal.activateEnvironment": true,
"emmet.includeLanguages": { "vue-html": "html", "vue": "html" },
"terminal.integrated.fontFamily": "'JetBrains Mono', monospace", "terminal.integrated.fontSize": 13, "terminal.integrated.cursorBlinking": true,
"files.exclude": { "**/.git": true, "**/.DS_Store": true, "**/__pycache__": true, "**/*.pyc": true }, "search.exclude": { "**/node_modules": true, "**/dist": true, "**/.venv": true },
"workbench.startupEditor": "newUntitledFile", "workbench.colorTheme": "Cursor Light", "explorer.confirmDelete": false, "git.enableSmartCommit": true, "git.confirmSync": false,
"claudeCode.preferredLocation": "panel", "claudeCode.selectedModel": "opus" }
|