.prettierrc.json 363 B

1234567891011121314151617181920
  1. {
  2. "printWidth": 100,
  3. "tabWidth": 2,
  4. "useTabs": false,
  5. "semi": false,
  6. "singleQuote": true,
  7. "trailingComma": "es5",
  8. "bracketSpacing": true,
  9. "arrowParens": "always",
  10. "endOfLine": "auto",
  11. "vueIndentScriptAndStyle": true,
  12. "overrides": [
  13. {
  14. "files": "*.vue",
  15. "options": {
  16. "vueIndentScriptAndStyle": true
  17. }
  18. }
  19. ]
  20. }