You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
792 B

/**
使prettierbeautify
*/
{
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.format.enable": false,
"eslint.options": {
"configFile": "./.eslintrc.js"
},
"vetur.format.options.tabSize": 2,
"vetur.format.options.useTabs": false,
// ----1使prettie----
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.js": "prettier",
"vetur.format.defaultFormatterOptions": {
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": false,
//>JSX
"jsxBracketSameLine": false
}
}
}