.prettierrc.js 208 B

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