.prettierrc.js 829 B

12345678910111213141516171819202122
  1. /*
  2. * @Description: prettierrc配置文件
  3. * @Date: 2022-04-06 16:19:54
  4. * @Author: chenjiaming
  5. * @LastEditors: chenjiaming
  6. * @LastEditTime: 2022-04-06 18:37:31
  7. */
  8. module.exports = {
  9. printWidth: 180, // 换行字符串阈值
  10. tabWidth: 2, // 设置工具每一个水平缩进的空格数
  11. useTabs: false,
  12. semi: false, // 句末是否加分号
  13. vueIndentScriptAndStyle: true,
  14. singleQuote: true, // 用单引号
  15. trailingComma: 'none', // 最后一个对象元素加逗号
  16. bracketSpacing: true, // 对象,数组加空格
  17. jsxBracketSameLine: true, // jsx > 是否另起一行
  18. arrowParens: 'always', // (x) => {} 是否要有小括号
  19. requirePragma: false, // 不需要写文件开头的 @prettier
  20. insertPragma: false, // 不需要自动在文件开头插入 @prettier
  21. endOfLine: 'auto' // 换行格式
  22. }