.prettierrc 384 B

12345678910111213141516171819
  1. {
  2. "printWidth": 150,
  3. "semi": false,
  4. "tabWidth": 4,
  5. "singleQuote": true,
  6. "trailingComma": "all",
  7. "arrowParens": "always",
  8. "proseWrap": "preserve",
  9. "htmlWhitespaceSensitivity": "css",
  10. "endOfLine": "lf",
  11. "overrides": [
  12. {
  13. "files": "*.json",
  14. "options": {
  15. "tabWidth": 2
  16. }
  17. }
  18. ]
  19. }