.prettierrc.js 172 B

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