.prettierrc.js 201 B

12345678910
  1. /** @type {import('prettier').Options} */
  2. module.exports = {
  3. semi: true,
  4. tabWidth: 2,
  5. trailingComma: 'es5',
  6. bracketSpacing: true,
  7. endOfLine: 'auto',
  8. printWidth: 100,
  9. singleQuote: true,
  10. }