.prettierrc.js 160 B

123456789
  1. module.exports = {
  2. tabWidth: 2,
  3. printWidth: 120,
  4. semi: true,
  5. singleQuote: true,
  6. trailingComma: 'none',
  7. endOfLine: 'auto',
  8. arrowParens: 'avoid'
  9. };