14 lines
592 B
JSON
14 lines
592 B
JSON
{
|
|
"editor.formatOnSave": true, //保存自动格式化
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode", // 设置默认格式工具为prettier
|
|
"eslint.enable": true, // 开启eslint检查
|
|
"eslint.probe": ["javascript", "javascriptreact", "vue", "html"],
|
|
"i18n-ally.localesPaths": ["src/lang"], // 防止找到不路径
|
|
"i18n-ally.keystyle": "flat",
|
|
"i18n-ally.sourceLanguage": "en-US", // 源文件
|
|
"i18n-ally.displayLanguage": "zh-CN",
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
} // 显示文件
|
|
}
|