prettier.config.js 270 B

123456789101112131415
  1. /**
  2. * 配置可参考:https://segmentfault.com/a/1190000022705000
  3. */
  4. module.exports = {
  5. tabs: false,
  6. tabWidth: 2,
  7. semi: false,
  8. printWidth: 120,
  9. singleQuote: true,
  10. trailingCommas: 'all',
  11. jsxBrackets: true,
  12. semicolons: false,
  13. insertPragma: false,
  14. }