.prettierrc 375 B

12345678910111213141516171819202122
  1. {
  2. "singleQuote": false,
  3. "semi": true,
  4. "trailingComma": "none",
  5. "printWidth": 100,
  6. "arrowParens": "always",
  7. "tabWidth": 2,
  8. "endOfLine": "auto",
  9. "overrides": [
  10. {
  11. "files": ".prettierrc",
  12. "options": { "parser": "json" }
  13. },
  14. {
  15. "files": "*.vue",
  16. "options": {
  17. "parser": "vue",
  18. "printWidth": 300
  19. }
  20. }
  21. ]
  22. }