Do not look Do not look

{
"Workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": -2,
"editor.fontSize": 18 is,
"editor.tabSize": 2, modified to code indentation // # 2 spaces
"editor. formatOnSave ": true, // # automatically each time you save time format
" eslint.autoFixOnSave ": false, // # code each time you save time to repair by eslint format
" javascript.format.insertSpaceBeforeFunctionParenthesis ": to true,
" [HTML] ": {
" editor.defaultFormatter ":" vscode.html-Language-Features "
},
" vetur.format.defaultFormatterOptions ": {
" prettier ": {
// format without semicolon
" semi ": false ,
// formatted as a single quote
"singleQuote": to true,
"printWidth": 180,
"wrapAttributes": false,
"sortAttributes": true,
"useTabs": true,
"proseWrap": "preserve",
"eslintIntegration": true, // #让prettier使用eslint的代码格式进行校验
},
"js-beautify-html": {
"wrap_line_length": 180,
"wrap_attributes": "auto",
"end_with_newline": false
}
},
"open-in-browser.default": "Coogle Chrome",
"explorer.confirmDelete": false,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"html.format.wrapLineLength": 180,
"workbench.sideBar.location": "left",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "One Monokai",
"vsicons.dontShowNewVersionMessage": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"explorer.confirmDragAndDrop": false,
"editor.minimap.enabled": true,
"breadcrumbs.enabled": false,
}

Guess you like

Origin www.cnblogs.com/will-up2018/p/11839302.html