.prettierrc.js 223 B

12345678910111213
  1. module.exports = {
  2. editorconfig: true,
  3. printWidth: 120,
  4. useTabs: false,
  5. trailingComma: 'es5',
  6. bracketSpacing: true,
  7. arrowParens: 'always',
  8. endOfLine: 'lf',
  9. tabWidth: 2,
  10. semi: true,
  11. singleQuote: true,
  12. };