.prettierrc.js 567 B

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