settings.json 769 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "editor.codeActionsOnSave": {
  3. "source.fixAll.eslint": "explicit",
  4. "source.organizeImports": "never"
  5. },
  6. "editor.formatOnSave": false,
  7. "eslint.validate": [
  8. "html",
  9. "css",
  10. "scss",
  11. "json",
  12. "jsonc",
  13. "javascript",
  14. "javascriptreact",
  15. "typescript",
  16. "typescriptreact",
  17. "vue"
  18. ],
  19. "i18n-ally.displayLanguage": "zh-cn",
  20. "i18n-ally.enabledParsers": ["ts"],
  21. "i18n-ally.enabledFrameworks": ["vue"],
  22. "i18n-ally.editor.preferEditor": true,
  23. "i18n-ally.keystyle": "nested",
  24. "i18n-ally.localesPaths": ["src/locales/langs"],
  25. "i18n-ally.parsers.typescript.compilerOptions": {
  26. "moduleResolution": "node"
  27. },
  28. "prettier.enable": false,
  29. "typescript.tsdk": "node_modules/typescript/lib",
  30. "unocss.root": ["./"]
  31. }