settings.json 514 B

123456789101112131415161718192021222324
  1. {
  2. "typescript.tsdk": "./node_modules/typescript/lib",
  3. "eslint.validate": [
  4. "javascript",
  5. "typescript",
  6. "javascriptreact"
  7. ],
  8. "volar.tsPlugin": true,
  9. "volar.tsPluginStatus": false,
  10. "editor.tabSize": 2,
  11. "eslint.format.enable": true,
  12. "files.eol": "\n",
  13. "path-intellisense.mappings": {
  14. "@/": "${workspaceRoot}/src"
  15. },
  16. "editor.codeActionsOnSave": {
  17. "source.fixAll.eslint": true,
  18. },
  19. "[vue]": {
  20. "editor.codeActionsOnSave": {
  21. "source.fixAll.eslint": false
  22. }
  23. },
  24. }