.prettierrc.json 336 B

123456789101112131415161718
  1. {
  2. "arrowParens": "avoid",
  3. "printWidth": 79,
  4. "tabWidth": 4,
  5. "trailingComma": "all",
  6. "proseWrap": "always",
  7. "htmlWhitespaceSensitivity": "css",
  8. "endOfLine": "lf",
  9. "overrides": [
  10. {
  11. "files": "*.html",
  12. "options": {
  13. "tabWidth": 2
  14. }
  15. }
  16. ]
  17. }