.prettierrc.js 393 B

12345678910111213141516171819202122
  1. /** @type {import("prettier").Config} */
  2. module.exports = {
  3. proseWrap: 'always',
  4. singleQuote: true,
  5. trailingComma: 'all',
  6. semi: false,
  7. experimentalTernaries: true,
  8. overrides: [
  9. {
  10. files: 'packages/@uppy/angular/**',
  11. options: {
  12. semi: true,
  13. },
  14. },
  15. {
  16. files: ['tsconfig.json'],
  17. options: {
  18. parser: 'jsonc',
  19. },
  20. },
  21. ],
  22. }