.prettierrc 343 B

12345678910111213141516171819
  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": ["*.ts", "*.mts"],
  14. "options": {
  15. "parser": "typescript"
  16. }
  17. }
  18. ]
  19. }