.prettierrc.cjs 602 B

1234567891011121314
  1. module.exports = {
  2. printWidth: 120, // 换行字符串阈值
  3. tabWidth: 2, // 设置工具每一个水平缩进的空格数
  4. useTabs: false,
  5. semi: false, // 句末是否加分号
  6. vueIndentScriptAndStyle: true,
  7. singleQuote: true, // 用单引号
  8. trailingComma: 'none', // 最后一个对象元素符加逗号
  9. bracketSpacing: true,
  10. jsxBracketSameLine: true, // jsx > 是否另取一行
  11. arrowParens: 'always', // 不需要写文件开头的 @prettier
  12. insertPragma: false, // 不需要自动在文件开头加入 @prettier
  13. endOfLine: 'lf' // 换行符使用
  14. }