.prettierrc.js 200 B

1234567891011
  1. // .prettierrc.js
  2. module.exports = {
  3. semi: true,
  4. trailingComma: 'es5',
  5. singleQuote: true,
  6. printWidth: 80,
  7. tabWidth: 2,
  8. endOfLine: 'lf',
  9. bracketSpacing: true,
  10. arrowParens: 'always',
  11. };