.prettierrc 610 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "printWidth": 80,
  3. "tabWidth": 2,
  4. "useTabs": false,
  5. "semi": true,
  6. "singleQuote": true,
  7. "trailingComma": "es5",
  8. "bracketSpacing": true,
  9. "bracketSameLine": false,
  10. "arrowParens": "always",
  11. "htmlWhitespaceSensitivity": "ignore",
  12. "vueIndentScriptAndStyle": false,
  13. "endOfLine": "auto",
  14. "singleAttributePerLine": false,
  15. "overrides": [
  16. {
  17. "files": "*.vue",
  18. "options": {
  19. "printWidth": 100,
  20. "tabWidth": 2
  21. }
  22. },
  23. {
  24. "files": ["*.ts", "*.js", "*.json"],
  25. "options": {
  26. "tabWidth": 2
  27. }
  28. }
  29. ]
  30. }