VSCode+Vue开发环境配置
2018-06-10 本文已影响0人
南方四季
1,安装Eslint,veTur,Prettier-Code formatter ,Javascript Standard Style 扩展程序;
2,在用户设置中配置如下配置:
{
"editor.fontSize": 16,
"editor.formatOnSave": false, // 为了避免data () ,data后面的空格save时被删除
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],
"eslint.autoFixOnSave": true, // 保存时自动格式化
"prettier.eslintIntegration": true, // prettier 按照eslint进行格式化
"javascript.format.insertSpaceBeforeFunctionParenthesis": true
}
3,有效记得点赞哦