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 90 91
|
{ "editor.fontSize": 14, "bracket-pair-colorizer-2.showBracketsInGutter": true, "workbench.iconTheme": "vscode-great-icons", "sync.gist": "e9262ee54aa0988ee98c24e6be1dada1", "workbench.colorTheme": "One Monokai", "editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", "editor.fontLigatures": true,
"editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "editor.tabSize": 2, "prettier.semi": true, "prettier.singleQuote": true, "prettier.arrowParens": "avoid", "prettier.htmlWhitespaceSensitivity": "ignore",
"prettier.jsxBracketSameLine": true, "prettier.bracketSpacing": true, "prettier.trailingComma": "none", "javascript.preferences.quoteStyle": "single", "typescript.preferences.quoteStyle": "single", "javascript.format.insertSpaceBeforeFunctionParenthesis": false, "eslint.validate": ["javascript", "vue", "html"], "eslint.options": { "extensions": [".js", ".vue", ".ts", ".tsx"] }, "vetur.format.defaultFormatterOptions": { "prettier": { "semi": true, "singleQuote": true, "trailingComma": "none" }, "js-beautify-html": { "wrap_attributes": "force-aligned", "wrap_line_length": 200, "wrap_width_line": false, "semi": false, "singleQuote": true }, "prettyhtml": { "printWidth": 200, "singleQuote": false, "wrapAttributes": false, "sortAttributes": true } }, "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatter.js": "prettier", "[vue]": { "editor.defaultFormatter": "octref.vetur" }, "path-intellisense.mappings": { "@": "${workspaceRoot}/src" }, "liveServer.settings.donotShowInfoMsg": true, "editor.quickSuggestions": { "strings": true } }
|