settings.json 582 B

1234567891011121314151617181920
  1. {
  2. // make sure the settings below is not present in either user and
  3. // workspace settings so adding ids to messages on save works
  4. // "eslint.codeActionsOnSave.rules": [],
  5. "editor.formatOnSave": true,
  6. "editor.defaultFormatter": "esbenp.prettier-vscode",
  7. "typescript.tsdk": "node_modules/typescript/lib",
  8. "eslint.run": "onSave",
  9. "editor.codeActionsOnSave": {
  10. "source.fixAll": "always"
  11. },
  12. "tailwindCSS.classAttributes": ["className", "clsx"],
  13. "css.validate": true,
  14. "editor.quickSuggestions": {
  15. "strings": true
  16. },
  17. "files.associations": {
  18. "*.css": "tailwindcss"
  19. }
  20. }