.prettierrc.js 174 B

12345678910
  1. module.exports = {
  2. arrowParens: 'avoid',
  3. bracketSameLine: true,
  4. bracketSpacing: false,
  5. singleQuote: true,
  6. trailingComma: 'all',
  7. tabWidth: 4,
  8. useTabs: false,
  9. };