.prettierrc.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. module.exports = {
  2. // 一行最多多少个字符
  3. printWidth: 150,
  4. // 指定每个缩进级别的空格数
  5. tabWidth: 2,
  6. // 使用制表符而不是空格缩进行
  7. useTabs: true,
  8. // 在语句末尾打印分号
  9. semi: true,
  10. // 使用单引号而不是双引号
  11. singleQuote: true,
  12. // 更改引用对象属性的时间 可选值"<as-needed|consistent|preserve>"
  13. quoteProps: 'as-needed',
  14. // 在JSX中使用单引号而不是双引号
  15. jsxSingleQuote: false,
  16. // 多行时尽可能打印尾随逗号。(例如,单行数组永远不会出现逗号结尾。) 可选值"<none|es5|all>",默认none
  17. trailingComma: 'es5',
  18. // 在对象文字中的括号之间打印空格
  19. bracketSpacing: true,
  20. // jsx 标签的反尖括号需要换行
  21. jsxBracketSameLine: false,
  22. // 在单独的箭头函数参数周围包括括号 always:(x) => x \ avoid:x => x
  23. arrowParens: 'always',
  24. // 这两个选项可用于格式化以给定字符偏移量(分别包括和不包括)开始和结束的代码
  25. rangeStart: 0,
  26. rangeEnd: Infinity,
  27. // 指定要使用的解析器,不需要写文件开头的 @prettier
  28. requirePragma: false,
  29. // 不需要自动在文件开头插入 @prettier
  30. insertPragma: false,
  31. // 使用默认的折行标准 always\never\preserve
  32. proseWrap: 'preserve',
  33. // 指定HTML文件的全局空格敏感度 css\strict\ignore
  34. htmlWhitespaceSensitivity: 'css',
  35. // Vue文件脚本和样式标签缩进
  36. vueIndentScriptAndStyle: false,
  37. // 换行符使用 lf 结尾是 可选值"<auto|lf|crlf|cr>"
  38. endOfLine: 'lf',
  39. };