prettier.config.js 253 B

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