.prettierrc 309 B

1234567891011121314151617181920
  1. {
  2. "singleQuote": true,
  3. "trailingComma": "all",
  4. "printWidth": 100,
  5. "proseWrap": "never",
  6. "overrides": [
  7. {
  8. "files": ".prettierrc",
  9. "options": {
  10. "parser": "json"
  11. }
  12. },
  13. {
  14. "files": "document.ejs",
  15. "options": {
  16. "parser": "html"
  17. }
  18. }
  19. ]
  20. }