settings.json 590 B

12345678910111213141516171819202122
  1. {
  2. "editor.codeActionsOnSave": {
  3. "source.fixAll": "explicit",
  4. "source.organizeImports": "explicit",
  5. "source.fixAll.eslint": "explicit",
  6. "source.fixAll.prettier": "explicit"
  7. },
  8. "editor.formatOnSave": true,
  9. "editor.defaultFormatter": "esbenp.prettier-vscode",
  10. "css.customData": [".vscode/tailwind.json"],
  11. "cSpell.words": [
  12. "confirmnewpassword",
  13. "newpassword",
  14. "partialize",
  15. "svgr",
  16. "tseslint"
  17. ],
  18. "typescript.tsdk": "node_modules/typescript/lib",
  19. "[typescript]": {
  20. "editor.defaultFormatter": "vscode.typescript-language-features"
  21. }
  22. }