Files
iot_web/.vscode/settings.json

11 lines
490 B
JSON
Raw Permalink Normal View History

2026-03-23 13:51:00 +08:00
{
"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" // 显示文件
}