vscode配置文件

{

"files.autoSave": "off",

"files.exclude": {

"**/node_modules": true

},

"vetur.format.defaultFormatter.html": "prettyhtml",

"vetur.format.defaultFormatterOptions": {

"prettyhtml": {

"printWidth": 200,

}

},

"window.zoomLevel": 0,

"eslint.autoFixOnSave": true,

"prettier.eslintIntegration": true,

"editor.formatOnSave": true,

"eslint.validate": [

"javascript",

"javascriptreact",

{

"language": "html",

"autoFix": true

},

{

"language": "vue",

"autoFix": true

}

],

"git.autofetch": true,

"workbench.iconTheme": "vscode-icons",

"files.associations": {

"*.cjson": "jsonc",

"*.wxss": "css",

"*.wxs": "javascript"

},

"emmet.includeLanguages": {

"wxml": "html"

},

"minapp-vscode.disableAutoConfig": true

}

你可能感兴趣的:(vscode配置文件)