prettier.config.js 350 B

1234567891011121314151617
  1. /** @type {import('prettier').Config} */
  2. const config = {
  3. semi: true,
  4. singleQuote: true,
  5. tabWidth: 2,
  6. trailingComma: 'es5',
  7. printWidth: 80,
  8. useTabs: false,
  9. endOfLine: 'lf',
  10. bracketSpacing: true,
  11. arrowParens: 'avoid',
  12. proseWrap: 'preserve',
  13. htmlWhitespaceSensitivity: 'css',
  14. quoteProps: 'as-needed',
  15. };
  16. export default config;