1
0

index.mjs 329 B

123456789101112131415161718
  1. export default {
  2. endOfLine: 'auto',
  3. overrides: [
  4. {
  5. files: ['*.json5'],
  6. options: {
  7. quoteProps: 'preserve',
  8. singleQuote: false,
  9. },
  10. },
  11. ],
  12. plugins: ['prettier-plugin-tailwindcss'],
  13. printWidth: 80,
  14. proseWrap: 'never',
  15. semi: true,
  16. singleQuote: true,
  17. trailingComma: 'all',
  18. };