prettier.config.js 627 B

12345678910111213141516171819202122
  1. /**
  2. * 修改配置后重启编辑器
  3. * 配置项文档:https://prettier.io/docs/en/configuration.html
  4. * @type {import("prettier").Config}
  5. */
  6. export default {
  7. /** 每一行的宽度 */
  8. printWidth: 120,
  9. /** 在对象中的括号之间是否用空格来间隔 */
  10. bracketSpacing: true,
  11. /** 箭头函数的参数无论有几个,都要括号包裹 */
  12. arrowParens: "always",
  13. /** 换行符的使用 */
  14. endOfLine: "auto",
  15. /** 是否采用单引号 */
  16. singleQuote: false,
  17. /** 对象或者数组的最后一个元素后面不要加逗号 */
  18. trailingComma: "none",
  19. /** 是否加分号 */
  20. semi: false
  21. }