settings.json 414 B

1234567891011121314151617181920212223
  1. {
  2. "prettier.enable": false,
  3. "editor.formatOnSave": false,
  4. // Auto fix
  5. "editor.codeActionsOnSave": {
  6. "source.fixAll.eslint": "explicit",
  7. "source.organizeImports": "never"
  8. },
  9. // Enable eslint for all supported languages
  10. "eslint.validate": [
  11. "javascript",
  12. "javascriptreact",
  13. "typescript",
  14. "typescriptreact",
  15. "vue",
  16. "html",
  17. "markdown",
  18. "json",
  19. "jsonc"
  20. ]
  21. }