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
| { "editor.fontSize": 18, "workbench.colorTheme": "Winter is Coming (Dark Blue)", "workbench.iconTheme": "vscode-icons", "go.formatTool": "goimports", "editor.defaultFormatter": "esbenp.prettier-vscode", "[javascript]": { "editor.defaultFormatter": "rvest.vs-code-prettier-eslint" }, "[vue]": { "editor.defaultFormatter": "octref.vetur" }, "[go]": { "editor.insertSpaces": false, "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": "explicit" }, "editor.defaultFormatter": "golang.go", "editor.suggest.snippetsPreventQuickSuggestions": false }, "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true }, "editor.insertSpaces": false, "workbench.editor.enablePreview": false, "search.followSymlinks": false, "editor.minimap.enabled": false, "files.autoSave": "afterDelay", "editor.lineNumbers": "on", "editor.quickSuggestions": { "other": true, "comments": true, "strings": true }, "editor.tabSize": 4, "editor.formatOnSave": true, "prettier.eslintIntegration": true, "prettier.semi": true, "prettier.singleQuote": false, "javascript.format.insertSpaceBeforeFunctionParenthesis": true, "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatter.js": "vscode-typescript", "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "force-aligned" }, "prettier": { "semi": false, "singleQuote": true }, "vscode-typescript": { "semi": false, "singleQuote": true } }, "eslint.validate": [ "vue", "typescript", "typescriptreact", "html" ], "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "editor.fontLigatures": true, "terminal.integrated.tabs.enabled": true, "terminal.integrated.env.osx": { "PYTHONPATH": "$PYTHONPATH:${workspaceRoot}" }, "code-runner.runInTerminal": true, "code-runner.cwd": "${workspaceRoot}", "rest-client.environmentVariables": { "$shared": {} } }
|