.prettierrc.cjs 943 B

123456789101112131415161718192021
  1. module.exports = {
  2. printWidth: 130, // 超过最大值换行
  3. tabWidth: 2, // 缩进字节数
  4. useTabs: false, // 缩进使用tab,不使用空格
  5. semi: true, // 句尾添加分号
  6. singleQuote: true, // 使用单引号代替双引号
  7. proseWrap: "preserve", // 默认值。因为使用了一些折行敏感型的渲染器(如GitHub comment)而按照markdown文本样式进行折行
  8. arrowParens: "avoid", // (x) => {} 箭头函数参数只有一个时是否要有小括号。avoid:省略括号
  9. bracketSpacing: true, // 在对象,数组括号与文字之间加空格 "{ foo: bar }"
  10. endOfLine: "auto", // 结尾是 \n \r \n\r auto
  11. jsxSingleQuote: false, // 在jsx中使用单引号代替双引号
  12. trailingComma: "none", // 在对象或数组最后一个元素后面是否加逗号(在ES5中加尾逗号)
  13. overrides: [
  14. {
  15. files: "*.html",
  16. options: {
  17. parser: "html",
  18. },
  19. },
  20. ],
  21. };