13 lines
532 B
JSON
13 lines
532 B
JSON
{
|
|
"editor.formatOnSave": true, //保存自动格式化
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode", // 设置默认格式工具为prettier
|
|
"eslint.enable": true, // 开启eslint检查
|
|
"eslint.probe": ["javascript", "javascriptreact", "vue", "html"],
|
|
"vue-i18n.i18nPaths": "src\\lang",
|
|
"i18n-ally.localesPaths": ["src/i18n", "src/lang"],
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"i18n-ally.keystyle": "nested" // 打开对vue的lint,并自动fix
|
|
}
|