.prettierrc.js 194 B

1234567891011
  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. endOfLine: "auto"
  10. };