.prettierrc.js 284 B

12345678910111213141516
  1. module.exports = {
  2. printWidth: 80,
  3. trailingComma: "all",
  4. singleQuote: false,
  5. overrides: [
  6. {
  7. files: "*.md",
  8. options: {
  9. printWidth: 60,
  10. // Don't reformat code examples in README
  11. embeddedLanguageFormatting: "off",
  12. },
  13. },
  14. ],
  15. };