.prettierrc 336 B

123456789101112131415161718192021
  1. {
  2. "singleQuote": true,
  3. "semi": false,
  4. "trailingComma": "all",
  5. "printWidth": 120,
  6. "tabWidth": 2,
  7. "bracketSpacing": true,
  8. "arrowParens": "avoid",
  9. "proseWrap": "preserve",
  10. "overrides": [
  11. {
  12. "files": [
  13. "*.ts",
  14. "*.mts"
  15. ],
  16. "options": {
  17. "parser": "typescript"
  18. }
  19. }
  20. ]
  21. }