.prettierrc 204 B

12345678910111213
  1. {
  2. "parser": "typescript",
  3. "singleQuote": true,
  4. "trailingComma": "es5",
  5. "printWidth": 120,
  6. "overrides": [
  7. {
  8. "files": [".*", "*.json"],
  9. "options": { "parser": "json" }
  10. }
  11. ]
  12. }