.prettierrc.js 415 B

12345678910111213141516171819202122
  1. module.exports = {
  2. printWidth: 120,
  3. singleQuote: true,
  4. tabWidth: 4,
  5. arrowParens: 'avoid',
  6. trailingComma: 'none',
  7. overrides: [
  8. {
  9. files: '*.html',
  10. options: {
  11. parser: 'html'
  12. }
  13. },
  14. {
  15. files: '*.vue',
  16. options: {
  17. parser: 'vue'
  18. }
  19. }
  20. ],
  21. endOfLine: 'crlf'
  22. };