.prettierrc 433 B

1234567891011121314151617181920212223
  1. {
  2. "plugins": [
  3. "./prettier-plugin-uts.js"
  4. ],
  5. "overrides": [
  6. {
  7. "files": "*.uvue",
  8. "options": {
  9. "parser": "vue"
  10. }
  11. },
  12. {
  13. "files": "*.uts",
  14. "options": {
  15. "parser": "typescript"
  16. }
  17. }
  18. ],
  19. "printWidth": 220,
  20. "tabWidth": 4,
  21. "semi": true,
  22. "vueIndentScriptAndStyle": true
  23. }