.prettierrc.js 187 B

1234567891011
  1. /** @type {import("prettier").Config} */
  2. const config = {
  3. printWidth: 80,
  4. trailingComma: 'all',
  5. endOfLine: 'auto',
  6. singleQuote: true,
  7. tabWidth: 2,
  8. };
  9. module.exports = config;