prettier.config.js 208 B

12345678910111213
  1. module.exports = {
  2. trailingComma: 'none',
  3. singleQuote: true,
  4. overrides: [
  5. {
  6. files: ['*.md', '*.mdx'],
  7. options: {
  8. printWidth: 80,
  9. proseWrap: 'always'
  10. }
  11. }
  12. ]
  13. };