.prettierrc.js 363 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. singleQuote: true,
  3. trailingComma: 'all',
  4. printWidth: 100,
  5. proseWrap: 'never',
  6. endOfLine: 'lf',
  7. tabWidth: 4,
  8. useTabs: false,
  9. overrides: [
  10. {
  11. files: '.prettierrc',
  12. options: {
  13. parser: 'json',
  14. },
  15. },
  16. {
  17. files: 'document.ejs',
  18. options: {
  19. parser: 'html',
  20. },
  21. },
  22. ],
  23. };