settings.json代码格式化配置
{
"workbench.preferredLightColorTheme": "Atom One Light",
"editor.fontWeight": "normal",
"workbench.colorCustomizations": {
"[Atom One Light]": {
"editor.background": "#060e06",
"sideBar.background": "#b8e4be",
"activityBar.background": "#9cce9c",
"terminal.foreground": "#141416",
"terminal.background": "#a0ecd9",
"editor.selectionHighlightBorder": "#94767c00",
"editor.selectionHighlightBackground": "#f3bf708c",
"editorIndentGuide.activeBackground": "#9ba4af",
"editorBracketMatch.background": "#ff8a05a9",
"editorBracketMatch.border": "#ff0000",
"tab.activeBackground": "#c0d9f070",
"titleBar.activeBackground": "#839eb870"
},
"editorLineNumber.foreground": "#f19012"
},
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Monokai Dimmed",
"editor.formatOnSave": true,
"editor.minimap.enabled": true,
"editor.fontSize": 14,
"editor.lineHeight": 22,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"javascript.format.enable": true,
"breadcrumbs.enabled": true,
"prettier.printWidth": 500,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
"prettier.bracketSpacing": true,
"prettier.trailingComma": "none",
"prettier.eslintIntegration": true,
"prettier.jsxBracketSameLine": false,
"prettier.jsxSingleQuote": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_line_length": 200,
"wrap_attributes": "auto",
"end_with_newline": true
},
"prettier": {
"printWidth": 200,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"[html]": {
"editor.defaultFormatter": "octref.vetur"
},
"[javascript]": {
"editor.defaultFormatter": "octref.vetur"
}
}