.prettierrc.js 184 B

12345678910
  1. module.exports = {
  2. singleQuote: true,
  3. arrowParens: 'always',
  4. useTabs: false,
  5. tabWidth: 2,
  6. semi: false,
  7. trailingComma: 'es5',
  8. quoteProps: 'preserve',
  9. printWidth: 100,
  10. }