.prettierrc 367 B

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