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
| { "editor.tabSize": 2, "editor.wordWrap": "wordWrapColumn", "editor.wordWrapColumn": 400, "editor.formatOnSave": true, "editor.renderControlCharacters": true, "files.autoSave": "onWindowChange", "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "breadcrumbs.enabled": true, "prettier.semi": false, "prettier.singleQuote": true, "prettier.printWidth": 400, "prettier.proseWrap": "preserve", "prettier.arrowParens": "avoid", "prettier.trailingComma": "none", "vetur.format.defaultFormatter.js": "prettier", "vetur.format.defaultFormatter.html": "prettyhtml", "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "aligned-multiple", "wrap_line_length": 400, "end_with_newline": false }, "prettyhtml": { "printWidth": 400, "singleQuote": false, "wrapAttributes": false, "sortAttributes": false }, "prettier": { "singleQuote": true, "semi": false, "printWidth": 400, "proseWrap": "preserve", "arrowParens": "avoid", "trailingComma": "none" } }, "minapp-vscode.disableAutoConfig": true, "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript" }, "emmet.includeLanguages": { "wxml": "html" }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[vue]": { "editor.defaultFormatter": "octref.vetur" }, "[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" } }
|