.prettierrc.js 339 B

12345678910111213141516171819
  1. module.exports = {
  2. printWidth: 120,
  3. singleQuote: true,
  4. tabWidth: 4,
  5. overrides: [
  6. {
  7. files: '*.html',
  8. options: {
  9. parser: 'html'
  10. }
  11. },
  12. {
  13. files: '*.vue',
  14. options: {
  15. parser: 'vue'
  16. }
  17. }
  18. ]
  19. };