image.png
{
"editor.fontSize": 20,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Visual Studio Light",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_line_length": 280,
"end_with_newline": false,
"wrap_attributes": "auto",
"wrap_attributes_mode": "auto",
"wrapped_attributes_per_line": "multiple",
"wrapped_attributes_indent": "auto",
"wrapped_attributes_end": "auto"
},
"prettyhtml": {
"printWidth": 280,
"singleQuote": false,
"wrapAttributes": false,
"semi": true, // 有无分号
"sortAttributes": true // 单引号
}
},
"editor.wordWrapColumn": 280,
"auto-close-tag.activationOnLanguage": [
"xml",
"php",
"blade",
"ejs",
"jinja",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"plaintext",
"markdown",
"vue",
"liquid",
"erb",
"lang-cfml",
"cfml",
"HTML (EEx)",
"HTML (Eex)",
"plist"
],
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"auto-rename-tag.activationOnLanguage": [
"*"
],
"files.exclude": {
"**/.vscode": true,
"**/node_modules": true,
"**/.history": true,
"**/public": true
},
"editor.minimap.enabled": false
}
网友评论