.prettierrc.js 202 B

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