index.mjs 430 B

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