.prettierrc.json 238 B

123456789101112131415
  1. {
  2. "bracketSpacing": true,
  3. "singleQuote": false,
  4. "arrowParens": "avoid",
  5. "trailingComma": "none",
  6. "printWidth": 120,
  7. "overrides": [
  8. {
  9. "files": "*.html",
  10. "options": {
  11. "parser": "html"
  12. }
  13. }
  14. ]
  15. }